@dcrackel/hematournamentui 1.0.282 → 1.0.285
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/HemaTournamentUI-lib.es.js +53 -28
- package/dist/HemaTournamentUI-lib.umd.js +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/mocks/personGetAllMock.js +2443 -180
- package/src/mocks/personsMock.js +357 -942
- package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.stories.js +2 -0
- package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.vue +29 -16
- package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.vue +18 -0
- package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.vue +1 -1
- package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.vue +12 -8
- package/src/stories/Organisms/Containers/PeopleColumn/PeopleColumn.stories.js +20 -0
- package/src/stories/Organisms/Containers/PeopleColumn/PeopleColumn.vue +77 -0
- package/src/stories/Organisms/ScoreBoardParts/ScoreBar/ScoreBar.vue +1 -1
- package/src/stories/Templates/PersonManagement/PersonManagement.stories.js +48 -0
- package/src/stories/Templates/PersonManagement/PersonManagement.vue +230 -0
- package/src/stories/Templates/TournamentManagement/AddTournament/PageOne/AddTournamentPageOne.vue +1 -0
package/src/mocks/personsMock.js
CHANGED
|
@@ -1,23 +1,67 @@
|
|
|
1
|
-
const personsMock =
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
const personsMock =
|
|
2
|
+
[
|
|
3
|
+
{
|
|
4
|
+
"PersonId": 1,
|
|
5
|
+
"DisplayName": "Dwain Crackel",
|
|
6
|
+
"Pronouns": "He/Him",
|
|
7
|
+
"FirstName": "Dwain",
|
|
8
|
+
"LastName": "Crackel",
|
|
9
|
+
"Birthday": "1980-07-16",
|
|
10
|
+
"ClubId": 10,
|
|
11
|
+
"HemaRatingsId": 8962,
|
|
12
|
+
"ShowData": true,
|
|
13
|
+
"ShareData": true,
|
|
14
|
+
"AccessLevel": "Admin",
|
|
15
|
+
"PersonEmails": [
|
|
16
|
+
{
|
|
17
|
+
"EmailId": 2,
|
|
18
|
+
"EmailAddress": "dcrackel@gmail.com",
|
|
19
|
+
"PersonId": 1,
|
|
20
|
+
"IsPrimary": true
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"Club": {
|
|
24
|
+
"ClubId": 10,
|
|
25
|
+
"Name": "Columbus United Fencing Club",
|
|
26
|
+
"ShortName": "CUFC",
|
|
27
|
+
"Description": null,
|
|
28
|
+
"AddressId": 1,
|
|
29
|
+
"Color1": "rose",
|
|
30
|
+
"Color2": "navy"
|
|
31
|
+
},
|
|
32
|
+
"HEMARatings": [
|
|
33
|
+
{
|
|
34
|
+
"Id": 1748,
|
|
35
|
+
"HemaRatingId": 8962,
|
|
36
|
+
"Nationality": "United States",
|
|
37
|
+
"Name": "Dwain Crackel",
|
|
38
|
+
"Club": "Royal Arts Fencing Academy",
|
|
39
|
+
"Rank": 772,
|
|
40
|
+
"Rating": 1403.8,
|
|
41
|
+
"Confidence": "High confidence (65.95788)",
|
|
42
|
+
"WeaponId": 1,
|
|
43
|
+
"Updated": "2024-07-24T20:29:55.000Z"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"M2Ratings": [
|
|
47
|
+
{
|
|
48
|
+
"id": 4,
|
|
49
|
+
"PersonId": 1,
|
|
50
|
+
"EventId": 1,
|
|
51
|
+
"WeaponId": 2,
|
|
52
|
+
"Rating": "C",
|
|
53
|
+
"DateEarned": "2024-05-30"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": 1,
|
|
57
|
+
"PersonId": 1,
|
|
58
|
+
"EventId": 1,
|
|
59
|
+
"WeaponId": 1,
|
|
60
|
+
"Rating": "E",
|
|
61
|
+
"DateEarned": "2024-05-30"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"ProfileImage": {
|
|
21
65
|
"ImageId": 7,
|
|
22
66
|
"URL": "https://randomuser.me/api/portraits/men/22.jpg",
|
|
23
67
|
"AltText": null,
|
|
@@ -25,197 +69,135 @@ const personsMock = [
|
|
|
25
69
|
"EntityId": 1,
|
|
26
70
|
"EntityType": "Person"
|
|
27
71
|
}
|
|
28
|
-
],
|
|
29
|
-
"Club": {
|
|
30
|
-
"ClubId": 4,
|
|
31
|
-
"Name": "Guardians of the Guard",
|
|
32
|
-
"ShortName": "GotG",
|
|
33
|
-
"Description": "Guardians of the Guard",
|
|
34
|
-
"AddressId": 1,
|
|
35
|
-
"Color1": "purple",
|
|
36
|
-
"Color2": "orange"
|
|
37
72
|
},
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"Updated": "2024-05-30T13:40:04.000Z"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"Id": 1,
|
|
49
|
-
"PersonId": 1,
|
|
50
|
-
"Rank": 1700,
|
|
51
|
-
"Rating": 1200.2,
|
|
52
|
-
"WeaponId": 1,
|
|
53
|
-
"Updated": "2024-05-30T17:39:47.000Z"
|
|
54
|
-
}
|
|
55
|
-
],
|
|
56
|
-
"M2Ratings": [
|
|
57
|
-
{
|
|
58
|
-
"id": 4,
|
|
59
|
-
"PersonId": 1,
|
|
60
|
-
"EventId": 1,
|
|
61
|
-
"WeaponId": 2,
|
|
62
|
-
"Rating": "C",
|
|
63
|
-
"DateEarned": "2024-05-30"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"id": 1,
|
|
67
|
-
"PersonId": 1,
|
|
68
|
-
"EventId": 1,
|
|
69
|
-
"WeaponId": 1,
|
|
70
|
-
"Rating": "E",
|
|
71
|
-
"DateEarned": "2024-05-30"
|
|
72
|
-
}
|
|
73
|
-
],
|
|
74
|
-
"ProfileImage": {
|
|
75
|
-
"ImageId": 7,
|
|
76
|
-
"URL": "https://randomuser.me/api/portraits/men/22.jpg",
|
|
77
|
-
"AltText": null,
|
|
78
|
-
"Type": "Portrait",
|
|
79
|
-
"EntityId": 1,
|
|
80
|
-
"EntityType": "Person"
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"PersonId": 2,
|
|
85
|
-
"DisplayName": "Kyle Edwards",
|
|
86
|
-
"Pronouns": "They/Them",
|
|
87
|
-
"FirstName": "Kyle",
|
|
88
|
-
"LastName": "Edwards",
|
|
89
|
-
"Birthday": null,
|
|
90
|
-
"ClubId": 6,
|
|
91
|
-
"ShowData": true,
|
|
92
|
-
"PersonEmails": [
|
|
93
|
-
{
|
|
94
|
-
"EmailId": 4,
|
|
95
|
-
"EmailAddress": "tblouey@hotmail.com",
|
|
96
|
-
"PersonId": 2,
|
|
97
|
-
"IsPrimary": false
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
"EmailId": 3,
|
|
101
|
-
"EmailAddress": "tlou@gmail.com",
|
|
102
|
-
"PersonId": 2,
|
|
103
|
-
"IsPrimary": true
|
|
104
|
-
}
|
|
105
|
-
],
|
|
106
|
-
"Images": [],
|
|
107
|
-
"Club": {
|
|
73
|
+
{
|
|
74
|
+
"PersonId": 2,
|
|
75
|
+
"DisplayName": "Kyle Edwards",
|
|
76
|
+
"Pronouns": "They/Them",
|
|
77
|
+
"FirstName": "Kyle",
|
|
78
|
+
"LastName": "Edwards",
|
|
79
|
+
"Birthday": null,
|
|
108
80
|
"ClubId": 6,
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
81
|
+
"HemaRatingsId": null,
|
|
82
|
+
"ShowData": true,
|
|
83
|
+
"ShareData": true,
|
|
84
|
+
"AccessLevel": "User",
|
|
85
|
+
"PersonEmails": [
|
|
86
|
+
{
|
|
87
|
+
"EmailId": 3,
|
|
88
|
+
"EmailAddress": "tlou@gmail.com",
|
|
89
|
+
"PersonId": 2,
|
|
90
|
+
"IsPrimary": true
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"EmailId": 4,
|
|
94
|
+
"EmailAddress": "tblouey@hotmail.com",
|
|
95
|
+
"PersonId": 2,
|
|
96
|
+
"IsPrimary": false
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"Club": {
|
|
100
|
+
"ClubId": 6,
|
|
101
|
+
"Name": "SwordPlay Society",
|
|
102
|
+
"ShortName": "SS",
|
|
103
|
+
"Description": "SwordPlay Society",
|
|
104
|
+
"AddressId": 1,
|
|
105
|
+
"Color1": "red",
|
|
106
|
+
"Color2": "blue"
|
|
132
107
|
},
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"PersonId": 3,
|
|
156
|
-
"DisplayName": "Dave Larabee",
|
|
157
|
-
"Pronouns": null,
|
|
158
|
-
"FirstName": "Dave",
|
|
159
|
-
"LastName": "Larabee",
|
|
160
|
-
"Birthday": null,
|
|
161
|
-
"ClubId": 3,
|
|
162
|
-
"ShowData": true,
|
|
163
|
-
"PersonEmails": [
|
|
164
|
-
{
|
|
165
|
-
"EmailId": 6,
|
|
166
|
-
"EmailAddress": "cwagner@rivera-villanueva.info",
|
|
167
|
-
"PersonId": 3,
|
|
168
|
-
"IsPrimary": true
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"EmailId": 5,
|
|
172
|
-
"EmailAddress": "davesmith@gmail.com",
|
|
173
|
-
"PersonId": 3,
|
|
174
|
-
"IsPrimary": true
|
|
175
|
-
}
|
|
176
|
-
],
|
|
177
|
-
"Images": [],
|
|
178
|
-
"Club": {
|
|
108
|
+
"HEMARatings": [],
|
|
109
|
+
"M2Ratings": [
|
|
110
|
+
{
|
|
111
|
+
"id": 2,
|
|
112
|
+
"PersonId": 2,
|
|
113
|
+
"EventId": 1,
|
|
114
|
+
"WeaponId": 1,
|
|
115
|
+
"Rating": "D",
|
|
116
|
+
"DateEarned": "2024-05-22"
|
|
117
|
+
}
|
|
118
|
+
],
|
|
119
|
+
"ProfileImage": null
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"PersonId": 3,
|
|
123
|
+
"DisplayName": "Dave Larabee",
|
|
124
|
+
"Pronouns": null,
|
|
125
|
+
"FirstName": "Dave",
|
|
126
|
+
"LastName": "Larabee",
|
|
127
|
+
"Birthday": null,
|
|
179
128
|
"ClubId": 3,
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
|
|
129
|
+
"HemaRatingsId": null,
|
|
130
|
+
"ShowData": true,
|
|
131
|
+
"ShareData": true,
|
|
132
|
+
"AccessLevel": "User",
|
|
133
|
+
"PersonEmails": [
|
|
134
|
+
{
|
|
135
|
+
"EmailId": 5,
|
|
136
|
+
"EmailAddress": "ddrsmith015@gmail.com",
|
|
137
|
+
"PersonId": 3,
|
|
138
|
+
"IsPrimary": true
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"EmailId": 6,
|
|
142
|
+
"EmailAddress": "cwagner@rivera-villanueva.info",
|
|
143
|
+
"PersonId": 3,
|
|
144
|
+
"IsPrimary": true
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"Club": {
|
|
148
|
+
"ClubId": 3,
|
|
149
|
+
"Name": "Sword & Blade of Callie",
|
|
150
|
+
"ShortName": "SBoC",
|
|
151
|
+
"Description": "adsasdf",
|
|
152
|
+
"AddressId": 1,
|
|
153
|
+
"Color1": "red",
|
|
154
|
+
"Color2": "gold"
|
|
155
|
+
},
|
|
156
|
+
"HEMARatings": [],
|
|
157
|
+
"M2Ratings": [
|
|
158
|
+
{
|
|
159
|
+
"id": 3,
|
|
160
|
+
"PersonId": 3,
|
|
161
|
+
"EventId": 1,
|
|
162
|
+
"WeaponId": 1,
|
|
163
|
+
"Rating": "C",
|
|
164
|
+
"DateEarned": "2024-05-30"
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"ProfileImage": null
|
|
186
168
|
},
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
{
|
|
169
|
+
{
|
|
170
|
+
"PersonId": 4,
|
|
171
|
+
"DisplayName": "Kim Bullock",
|
|
172
|
+
"Pronouns": "He/Him",
|
|
173
|
+
"FirstName": "Kim",
|
|
174
|
+
"LastName": "Bullock",
|
|
175
|
+
"Birthday": "1963-07-09",
|
|
176
|
+
"ClubId": 1,
|
|
177
|
+
"HemaRatingsId": null,
|
|
178
|
+
"ShowData": true,
|
|
179
|
+
"ShareData": true,
|
|
180
|
+
"AccessLevel": "User",
|
|
181
|
+
"PersonEmails": [
|
|
182
|
+
{
|
|
183
|
+
"EmailId": 7,
|
|
184
|
+
"EmailAddress": "samuelharrison@velazquez.net",
|
|
185
|
+
"PersonId": 4,
|
|
186
|
+
"IsPrimary": true
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"Club": {
|
|
190
|
+
"ClubId": 1,
|
|
191
|
+
"Name": "Acme Fencing Club",
|
|
192
|
+
"ShortName": "ACME",
|
|
193
|
+
"Description": "Acme Fencing Club",
|
|
194
|
+
"AddressId": 1,
|
|
195
|
+
"Color1": "rose",
|
|
196
|
+
"Color2": "navy"
|
|
197
|
+
},
|
|
198
|
+
"HEMARatings": [],
|
|
199
|
+
"M2Ratings": [],
|
|
200
|
+
"ProfileImage": {
|
|
219
201
|
"ImageId": 8,
|
|
220
202
|
"URL": "https://randomuser.me/api/portraits/women/45.jpg",
|
|
221
203
|
"AltText": null,
|
|
@@ -223,55 +205,39 @@ const personsMock = [
|
|
|
223
205
|
"EntityId": 4,
|
|
224
206
|
"EntityType": "Person"
|
|
225
207
|
}
|
|
226
|
-
],
|
|
227
|
-
"Club": {
|
|
228
|
-
"ClubId": 1,
|
|
229
|
-
"Name": "Acme Fencing Club",
|
|
230
|
-
"ShortName": "ACME",
|
|
231
|
-
"Description": "Acme Fencing Club",
|
|
232
|
-
"AddressId": 1,
|
|
233
|
-
"Color1": "rose",
|
|
234
|
-
"Color2": "navy"
|
|
235
208
|
},
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
"
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
"EmailAddress": "knicholson@hotmail.com",
|
|
269
|
-
"PersonId": 5,
|
|
270
|
-
"IsPrimary": true
|
|
271
|
-
}
|
|
272
|
-
],
|
|
273
|
-
"Images": [
|
|
274
|
-
{
|
|
209
|
+
{
|
|
210
|
+
"PersonId": 5,
|
|
211
|
+
"DisplayName": "Darlene Acevedo",
|
|
212
|
+
"Pronouns": "He/Him",
|
|
213
|
+
"FirstName": "Darlene",
|
|
214
|
+
"LastName": "Acevedo",
|
|
215
|
+
"Birthday": "1992-08-11",
|
|
216
|
+
"ClubId": 9,
|
|
217
|
+
"HemaRatingsId": null,
|
|
218
|
+
"ShowData": true,
|
|
219
|
+
"ShareData": true,
|
|
220
|
+
"AccessLevel": "User",
|
|
221
|
+
"PersonEmails": [
|
|
222
|
+
{
|
|
223
|
+
"EmailId": 8,
|
|
224
|
+
"EmailAddress": "knicholson@hotmail.com",
|
|
225
|
+
"PersonId": 5,
|
|
226
|
+
"IsPrimary": true
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"Club": {
|
|
230
|
+
"ClubId": 9,
|
|
231
|
+
"Name": "Cats Cutlass Club of Canton",
|
|
232
|
+
"ShortName": "CCCoC",
|
|
233
|
+
"Description": null,
|
|
234
|
+
"AddressId": 1,
|
|
235
|
+
"Color1": "red",
|
|
236
|
+
"Color2": "blue"
|
|
237
|
+
},
|
|
238
|
+
"HEMARatings": [],
|
|
239
|
+
"M2Ratings": [],
|
|
240
|
+
"ProfileImage": {
|
|
275
241
|
"ImageId": 22,
|
|
276
242
|
"URL": "https://randomuser.me/api/portraits/women/30.jpg",
|
|
277
243
|
"AltText": null,
|
|
@@ -279,101 +245,98 @@ const personsMock = [
|
|
|
279
245
|
"EntityId": 5,
|
|
280
246
|
"EntityType": "Person"
|
|
281
247
|
}
|
|
282
|
-
],
|
|
283
|
-
"Club": {
|
|
284
|
-
"ClubId": 9,
|
|
285
|
-
"Name": "Cats Cutlass Club of Canton",
|
|
286
|
-
"ShortName": "CCCoC",
|
|
287
|
-
"Description": null,
|
|
288
|
-
"AddressId": null,
|
|
289
|
-
"Color1": "red",
|
|
290
|
-
"Color2": "blue"
|
|
291
248
|
},
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
"
|
|
299
|
-
"EntityId": 5,
|
|
300
|
-
"EntityType": "Person"
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
"PersonId": 6,
|
|
305
|
-
"DisplayName": "Courtney Medina",
|
|
306
|
-
"Pronouns": "They/Them",
|
|
307
|
-
"FirstName": "Courtney",
|
|
308
|
-
"LastName": "Medina",
|
|
309
|
-
"Birthday": "1983-09-25",
|
|
310
|
-
"ClubId": 3,
|
|
311
|
-
"ShowData": true,
|
|
312
|
-
"PersonEmails": [
|
|
313
|
-
{
|
|
314
|
-
"EmailId": 9,
|
|
315
|
-
"EmailAddress": "jacquelinehill@davis.biz",
|
|
316
|
-
"PersonId": 6,
|
|
317
|
-
"IsPrimary": true
|
|
318
|
-
}
|
|
319
|
-
],
|
|
320
|
-
"Images": [],
|
|
321
|
-
"Club": {
|
|
249
|
+
{
|
|
250
|
+
"PersonId": 6,
|
|
251
|
+
"DisplayName": "Courtney Medina",
|
|
252
|
+
"Pronouns": "They/Them",
|
|
253
|
+
"FirstName": "Courtney",
|
|
254
|
+
"LastName": "Medina",
|
|
255
|
+
"Birthday": "1983-09-25",
|
|
322
256
|
"ClubId": 3,
|
|
323
|
-
"
|
|
324
|
-
"
|
|
325
|
-
"
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
-
|
|
257
|
+
"HemaRatingsId": null,
|
|
258
|
+
"ShowData": true,
|
|
259
|
+
"ShareData": true,
|
|
260
|
+
"AccessLevel": "User",
|
|
261
|
+
"PersonEmails": [
|
|
262
|
+
{
|
|
263
|
+
"EmailId": 9,
|
|
264
|
+
"EmailAddress": "jacquelinehill@davis.biz",
|
|
265
|
+
"PersonId": 6,
|
|
266
|
+
"IsPrimary": true
|
|
267
|
+
}
|
|
268
|
+
],
|
|
269
|
+
"Club": {
|
|
270
|
+
"ClubId": 3,
|
|
271
|
+
"Name": "Sword & Blade of Callie",
|
|
272
|
+
"ShortName": "SBoC",
|
|
273
|
+
"Description": "adsasdf",
|
|
274
|
+
"AddressId": 1,
|
|
275
|
+
"Color1": "red",
|
|
276
|
+
"Color2": "gold"
|
|
277
|
+
},
|
|
278
|
+
"HEMARatings": [],
|
|
279
|
+
"M2Ratings": [],
|
|
280
|
+
"ProfileImage": null
|
|
329
281
|
},
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
"Pronouns": "He/Him",
|
|
338
|
-
"FirstName": "Emily",
|
|
339
|
-
"LastName": "Carlson",
|
|
340
|
-
"Birthday": "1997-06-13",
|
|
341
|
-
"ClubId": 4,
|
|
342
|
-
"ShowData": true,
|
|
343
|
-
"PersonEmails": [
|
|
344
|
-
{
|
|
345
|
-
"EmailId": 10,
|
|
346
|
-
"EmailAddress": "wgonzalez@yahoo.com",
|
|
347
|
-
"PersonId": 7,
|
|
348
|
-
"IsPrimary": true
|
|
349
|
-
}
|
|
350
|
-
],
|
|
351
|
-
"Images": [],
|
|
352
|
-
"Club": {
|
|
282
|
+
{
|
|
283
|
+
"PersonId": 7,
|
|
284
|
+
"DisplayName": "Emily Carlson",
|
|
285
|
+
"Pronouns": "He/Him",
|
|
286
|
+
"FirstName": "Emily",
|
|
287
|
+
"LastName": "Carlson",
|
|
288
|
+
"Birthday": "1997-06-13",
|
|
353
289
|
"ClubId": 4,
|
|
354
|
-
"
|
|
355
|
-
"
|
|
356
|
-
"
|
|
357
|
-
"
|
|
358
|
-
"
|
|
359
|
-
|
|
290
|
+
"HemaRatingsId": null,
|
|
291
|
+
"ShowData": true,
|
|
292
|
+
"ShareData": true,
|
|
293
|
+
"AccessLevel": "User",
|
|
294
|
+
"PersonEmails": [
|
|
295
|
+
{
|
|
296
|
+
"EmailId": 10,
|
|
297
|
+
"EmailAddress": "wgonzalez@yahoo.com",
|
|
298
|
+
"PersonId": 7,
|
|
299
|
+
"IsPrimary": true
|
|
300
|
+
}
|
|
301
|
+
],
|
|
302
|
+
"Club": {
|
|
303
|
+
"ClubId": 4,
|
|
304
|
+
"Name": "Guardians of the Guard",
|
|
305
|
+
"ShortName": "GotG",
|
|
306
|
+
"Description": "Guardians of the Guard",
|
|
307
|
+
"AddressId": 1,
|
|
308
|
+
"Color1": "purple",
|
|
309
|
+
"Color2": "orange"
|
|
310
|
+
},
|
|
311
|
+
"HEMARatings": [],
|
|
312
|
+
"M2Ratings": [],
|
|
313
|
+
"ProfileImage": null
|
|
360
314
|
},
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
315
|
+
{
|
|
316
|
+
"PersonId": 8,
|
|
317
|
+
"DisplayName": "Jamie Bittle",
|
|
318
|
+
"Pronouns": "He/Him",
|
|
319
|
+
"FirstName": "Julie",
|
|
320
|
+
"LastName": "Riddle",
|
|
321
|
+
"Birthday": "1984-07-18",
|
|
322
|
+
"ClubId": 2,
|
|
323
|
+
"HemaRatingsId": null,
|
|
324
|
+
"ShowData": true,
|
|
325
|
+
"ShareData": true,
|
|
326
|
+
"AccessLevel": "User",
|
|
327
|
+
"PersonEmails": [],
|
|
328
|
+
"Club": {
|
|
329
|
+
"ClubId": 2,
|
|
330
|
+
"Name": "Historical Fencing Of Anywhere",
|
|
331
|
+
"ShortName": "HFoA",
|
|
332
|
+
"Description": "is",
|
|
333
|
+
"AddressId": 1,
|
|
334
|
+
"Color1": "red",
|
|
335
|
+
"Color2": "blue"
|
|
336
|
+
},
|
|
337
|
+
"HEMARatings": [],
|
|
338
|
+
"M2Ratings": [],
|
|
339
|
+
"ProfileImage": {
|
|
377
340
|
"ImageId": 23,
|
|
378
341
|
"URL": "https://randomuser.me/api/portraits/women/41.jpg",
|
|
379
342
|
"AltText": null,
|
|
@@ -381,63 +344,58 @@ const personsMock = [
|
|
|
381
344
|
"EntityId": 8,
|
|
382
345
|
"EntityType": "Person"
|
|
383
346
|
}
|
|
384
|
-
],
|
|
385
|
-
"Club": {
|
|
386
|
-
"ClubId": 2,
|
|
387
|
-
"Name": "Historical Fencing Of Anywhere",
|
|
388
|
-
"ShortName": "HFoA",
|
|
389
|
-
"Description": "is",
|
|
390
|
-
"AddressId": 1,
|
|
391
|
-
"Color1": "red",
|
|
392
|
-
"Color2": "blue"
|
|
393
347
|
},
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
"
|
|
400
|
-
"
|
|
401
|
-
"EntityId": 8,
|
|
402
|
-
"EntityType": "Person"
|
|
403
|
-
}
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"PersonId": 9,
|
|
407
|
-
"DisplayName": "Sean McCoy",
|
|
408
|
-
"Pronouns": "He/Him",
|
|
409
|
-
"FirstName": "Sean",
|
|
410
|
-
"LastName": "McCoy",
|
|
411
|
-
"Birthday": "1989-10-14",
|
|
412
|
-
"ClubId": 7,
|
|
413
|
-
"ShowData": true,
|
|
414
|
-
"PersonEmails": [],
|
|
415
|
-
"Images": [],
|
|
416
|
-
"Club": {
|
|
348
|
+
{
|
|
349
|
+
"PersonId": 9,
|
|
350
|
+
"DisplayName": "Sean McCoy",
|
|
351
|
+
"Pronouns": "He/Him",
|
|
352
|
+
"FirstName": "Sean",
|
|
353
|
+
"LastName": "McCoy",
|
|
354
|
+
"Birthday": "1989-10-14",
|
|
417
355
|
"ClubId": 7,
|
|
418
|
-
"
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
"
|
|
356
|
+
"HemaRatingsId": null,
|
|
357
|
+
"ShowData": true,
|
|
358
|
+
"ShareData": true,
|
|
359
|
+
"AccessLevel": "User",
|
|
360
|
+
"PersonEmails": [],
|
|
361
|
+
"Club": {
|
|
362
|
+
"ClubId": 7,
|
|
363
|
+
"Name": "Hilt & Heart",
|
|
364
|
+
"ShortName": "H&H",
|
|
365
|
+
"Description": "Hilt & Heart",
|
|
366
|
+
"AddressId": 1,
|
|
367
|
+
"Color1": "red",
|
|
368
|
+
"Color2": "blue"
|
|
369
|
+
},
|
|
370
|
+
"HEMARatings": [],
|
|
371
|
+
"M2Ratings": [],
|
|
372
|
+
"ProfileImage": null
|
|
424
373
|
},
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
374
|
+
{
|
|
375
|
+
"PersonId": 10,
|
|
376
|
+
"DisplayName": "Melissa Jones",
|
|
377
|
+
"Pronouns": "She/Her",
|
|
378
|
+
"FirstName": "Melissa",
|
|
379
|
+
"LastName": "Jones",
|
|
380
|
+
"Birthday": "1993-10-14",
|
|
381
|
+
"ClubId": 4,
|
|
382
|
+
"HemaRatingsId": null,
|
|
383
|
+
"ShowData": true,
|
|
384
|
+
"ShareData": true,
|
|
385
|
+
"AccessLevel": "User",
|
|
386
|
+
"PersonEmails": [],
|
|
387
|
+
"Club": {
|
|
388
|
+
"ClubId": 4,
|
|
389
|
+
"Name": "Guardians of the Guard",
|
|
390
|
+
"ShortName": "GotG",
|
|
391
|
+
"Description": "Guardians of the Guard",
|
|
392
|
+
"AddressId": 1,
|
|
393
|
+
"Color1": "purple",
|
|
394
|
+
"Color2": "orange"
|
|
395
|
+
},
|
|
396
|
+
"HEMARatings": [],
|
|
397
|
+
"M2Ratings": [],
|
|
398
|
+
"ProfileImage": {
|
|
441
399
|
"ImageId": 21,
|
|
442
400
|
"URL": "https://randomuser.me/api/portraits/women/9.jpg",
|
|
443
401
|
"AltText": null,
|
|
@@ -445,551 +403,8 @@ const personsMock = [
|
|
|
445
403
|
"EntityId": 10,
|
|
446
404
|
"EntityType": "Person"
|
|
447
405
|
}
|
|
448
|
-
],
|
|
449
|
-
"Club": {
|
|
450
|
-
"ClubId": 4,
|
|
451
|
-
"Name": "Guardians of the Guard",
|
|
452
|
-
"ShortName": "GotG",
|
|
453
|
-
"Description": "Guardians of the Guard",
|
|
454
|
-
"AddressId": 1,
|
|
455
|
-
"Color1": "purple",
|
|
456
|
-
"Color2": "orange"
|
|
457
|
-
},
|
|
458
|
-
"HEMARatings": [
|
|
459
|
-
{
|
|
460
|
-
"Id": 9,
|
|
461
|
-
"PersonId": 10,
|
|
462
|
-
"Rank": 1432,
|
|
463
|
-
"Rating": 1423.4,
|
|
464
|
-
"WeaponId": 1,
|
|
465
|
-
"Updated": "2024-06-01T04:05:44.000Z"
|
|
466
|
-
}
|
|
467
|
-
],
|
|
468
|
-
"M2Ratings": [],
|
|
469
|
-
"ProfileImage": {
|
|
470
|
-
"ImageId": 21,
|
|
471
|
-
"URL": "https://randomuser.me/api/portraits/women/9.jpg",
|
|
472
|
-
"AltText": null,
|
|
473
|
-
"Type": "Portrait",
|
|
474
|
-
"EntityId": 10,
|
|
475
|
-
"EntityType": "Person"
|
|
476
|
-
}
|
|
477
|
-
},
|
|
478
|
-
{
|
|
479
|
-
"PersonId": 11,
|
|
480
|
-
"DisplayName": "Sylvia Lee",
|
|
481
|
-
"Pronouns": "She/Her",
|
|
482
|
-
"FirstName": "Sylvia",
|
|
483
|
-
"LastName": "Lee",
|
|
484
|
-
"Birthday": "1963-12-28",
|
|
485
|
-
"ClubId": 3,
|
|
486
|
-
"ShowData": true,
|
|
487
|
-
"PersonEmails": [],
|
|
488
|
-
"Images": [],
|
|
489
|
-
"Club": {
|
|
490
|
-
"ClubId": 3,
|
|
491
|
-
"Name": "Sword & Blade of Callie",
|
|
492
|
-
"ShortName": "SBoC",
|
|
493
|
-
"Description": "adsasdf",
|
|
494
|
-
"AddressId": 1,
|
|
495
|
-
"Color1": "red",
|
|
496
|
-
"Color2": "gold"
|
|
497
|
-
},
|
|
498
|
-
"HEMARatings": [],
|
|
499
|
-
"M2Ratings": [],
|
|
500
|
-
"ProfileImage": null
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"PersonId": 12,
|
|
504
|
-
"DisplayName": "Lindsey Mitchell",
|
|
505
|
-
"Pronouns": "They/Them",
|
|
506
|
-
"FirstName": "Lindsey",
|
|
507
|
-
"LastName": "Mitchell",
|
|
508
|
-
"Birthday": "1977-06-17",
|
|
509
|
-
"ClubId": 6,
|
|
510
|
-
"ShowData": true,
|
|
511
|
-
"PersonEmails": [],
|
|
512
|
-
"Images": [],
|
|
513
|
-
"Club": {
|
|
514
|
-
"ClubId": 6,
|
|
515
|
-
"Name": "SwordPlay Society",
|
|
516
|
-
"ShortName": "SS",
|
|
517
|
-
"Description": "SwordPlay Society",
|
|
518
|
-
"AddressId": 1,
|
|
519
|
-
"Color1": "red",
|
|
520
|
-
"Color2": "blue"
|
|
521
|
-
},
|
|
522
|
-
"HEMARatings": [],
|
|
523
|
-
"M2Ratings": [],
|
|
524
|
-
"ProfileImage": null
|
|
525
|
-
},
|
|
526
|
-
{
|
|
527
|
-
"PersonId": 13,
|
|
528
|
-
"DisplayName": "Jarrett Anderson",
|
|
529
|
-
"Pronouns": "He/Him",
|
|
530
|
-
"FirstName": "Jarrett",
|
|
531
|
-
"LastName": "Anderson",
|
|
532
|
-
"Birthday": "1970-09-15",
|
|
533
|
-
"ClubId": 1,
|
|
534
|
-
"ShowData": true,
|
|
535
|
-
"PersonEmails": [],
|
|
536
|
-
"Images": [],
|
|
537
|
-
"Club": {
|
|
538
|
-
"ClubId": 1,
|
|
539
|
-
"Name": "Acme Fencing Club",
|
|
540
|
-
"ShortName": "ACME",
|
|
541
|
-
"Description": "Acme Fencing Club",
|
|
542
|
-
"AddressId": 1,
|
|
543
|
-
"Color1": "rose",
|
|
544
|
-
"Color2": "navy"
|
|
545
|
-
},
|
|
546
|
-
"HEMARatings": [],
|
|
547
|
-
"M2Ratings": [],
|
|
548
|
-
"ProfileImage": null
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
"PersonId": 14,
|
|
552
|
-
"DisplayName": "Jordan Allen",
|
|
553
|
-
"Pronouns": "They/Them",
|
|
554
|
-
"FirstName": "Jordan",
|
|
555
|
-
"LastName": "Allen",
|
|
556
|
-
"Birthday": "1995-08-12",
|
|
557
|
-
"ClubId": 5,
|
|
558
|
-
"ShowData": true,
|
|
559
|
-
"PersonEmails": [],
|
|
560
|
-
"Images": [],
|
|
561
|
-
"Club": {
|
|
562
|
-
"ClubId": 5,
|
|
563
|
-
"Name": "Fechtastic Fighters",
|
|
564
|
-
"ShortName": "FF",
|
|
565
|
-
"Description": "Fechtastic Fighters",
|
|
566
|
-
"AddressId": 1,
|
|
567
|
-
"Color1": "green",
|
|
568
|
-
"Color2": "silver"
|
|
569
|
-
},
|
|
570
|
-
"HEMARatings": [
|
|
571
|
-
{
|
|
572
|
-
"Id": 8,
|
|
573
|
-
"PersonId": 14,
|
|
574
|
-
"Rank": 1134,
|
|
575
|
-
"Rating": 1187.2,
|
|
576
|
-
"WeaponId": 1,
|
|
577
|
-
"Updated": "2024-06-01T04:05:26.000Z"
|
|
578
|
-
}
|
|
579
|
-
],
|
|
580
|
-
"M2Ratings": [],
|
|
581
|
-
"ProfileImage": null
|
|
582
|
-
},
|
|
583
|
-
{
|
|
584
|
-
"PersonId": 15,
|
|
585
|
-
"DisplayName": "David Peters",
|
|
586
|
-
"Pronouns": "They/Them",
|
|
587
|
-
"FirstName": "David",
|
|
588
|
-
"LastName": "Peters",
|
|
589
|
-
"Birthday": "2005-03-06",
|
|
590
|
-
"ClubId": 9,
|
|
591
|
-
"ShowData": true,
|
|
592
|
-
"PersonEmails": [],
|
|
593
|
-
"Images": [],
|
|
594
|
-
"Club": {
|
|
595
|
-
"ClubId": 9,
|
|
596
|
-
"Name": "Cats Cutlass Club of Canton",
|
|
597
|
-
"ShortName": "CCCoC",
|
|
598
|
-
"Description": null,
|
|
599
|
-
"AddressId": null,
|
|
600
|
-
"Color1": "red",
|
|
601
|
-
"Color2": "blue"
|
|
602
|
-
},
|
|
603
|
-
"HEMARatings": [
|
|
604
|
-
{
|
|
605
|
-
"Id": 10,
|
|
606
|
-
"PersonId": 15,
|
|
607
|
-
"Rank": 1500,
|
|
608
|
-
"Rating": 1540,
|
|
609
|
-
"WeaponId": 1,
|
|
610
|
-
"Updated": "2024-06-01T04:10:04.000Z"
|
|
611
|
-
}
|
|
612
|
-
],
|
|
613
|
-
"M2Ratings": [],
|
|
614
|
-
"ProfileImage": null
|
|
615
|
-
},
|
|
616
|
-
{
|
|
617
|
-
"PersonId": 16,
|
|
618
|
-
"DisplayName": "Christian Jacob Peralta",
|
|
619
|
-
"Pronouns": "He/Him",
|
|
620
|
-
"FirstName": "Christian",
|
|
621
|
-
"LastName": "Jacob Peralta",
|
|
622
|
-
"Birthday": "1987-08-31",
|
|
623
|
-
"ClubId": 1,
|
|
624
|
-
"ShowData": true,
|
|
625
|
-
"PersonEmails": [],
|
|
626
|
-
"Images": [],
|
|
627
|
-
"Club": {
|
|
628
|
-
"ClubId": 1,
|
|
629
|
-
"Name": "Acme Fencing Club",
|
|
630
|
-
"ShortName": "ACME",
|
|
631
|
-
"Description": "Acme Fencing Club",
|
|
632
|
-
"AddressId": 1,
|
|
633
|
-
"Color1": "rose",
|
|
634
|
-
"Color2": "navy"
|
|
635
|
-
},
|
|
636
|
-
"HEMARatings": [
|
|
637
|
-
{
|
|
638
|
-
"Id": 11,
|
|
639
|
-
"PersonId": 16,
|
|
640
|
-
"Rank": 1540,
|
|
641
|
-
"Rating": 1345,
|
|
642
|
-
"WeaponId": 1,
|
|
643
|
-
"Updated": "2024-06-01T04:10:23.000Z"
|
|
644
|
-
}
|
|
645
|
-
],
|
|
646
|
-
"M2Ratings": [],
|
|
647
|
-
"ProfileImage": null
|
|
648
|
-
},
|
|
649
|
-
{
|
|
650
|
-
"PersonId": 17,
|
|
651
|
-
"DisplayName": "Brendan Morris",
|
|
652
|
-
"Pronouns": "Him",
|
|
653
|
-
"FirstName": "Brendan",
|
|
654
|
-
"LastName": "Morris",
|
|
655
|
-
"Birthday": "1994-12-11",
|
|
656
|
-
"ClubId": 7,
|
|
657
|
-
"ShowData": true,
|
|
658
|
-
"PersonEmails": [],
|
|
659
|
-
"Images": [],
|
|
660
|
-
"Club": {
|
|
661
|
-
"ClubId": 7,
|
|
662
|
-
"Name": "Hilt & Heart",
|
|
663
|
-
"ShortName": "H&H",
|
|
664
|
-
"Description": "Hilt & Heart",
|
|
665
|
-
"AddressId": 1,
|
|
666
|
-
"Color1": "red",
|
|
667
|
-
"Color2": "blue"
|
|
668
|
-
},
|
|
669
|
-
"HEMARatings": [
|
|
670
|
-
{
|
|
671
|
-
"Id": 12,
|
|
672
|
-
"PersonId": 17,
|
|
673
|
-
"Rank": 1500,
|
|
674
|
-
"Rating": 1534,
|
|
675
|
-
"WeaponId": 1,
|
|
676
|
-
"Updated": "2024-06-01T04:10:42.000Z"
|
|
677
|
-
}
|
|
678
|
-
],
|
|
679
|
-
"M2Ratings": [],
|
|
680
|
-
"ProfileImage": null
|
|
681
|
-
},
|
|
682
|
-
{
|
|
683
|
-
"PersonId": 18,
|
|
684
|
-
"DisplayName": "Sean Hanson",
|
|
685
|
-
"Pronouns": "He/Him",
|
|
686
|
-
"FirstName": "Sean",
|
|
687
|
-
"LastName": "Hanson",
|
|
688
|
-
"Birthday": "1978-03-04",
|
|
689
|
-
"ClubId": 3,
|
|
690
|
-
"ShowData": true,
|
|
691
|
-
"PersonEmails": [],
|
|
692
|
-
"Images": [],
|
|
693
|
-
"Club": {
|
|
694
|
-
"ClubId": 3,
|
|
695
|
-
"Name": "Sword & Blade of Callie",
|
|
696
|
-
"ShortName": "SBoC",
|
|
697
|
-
"Description": "adsasdf",
|
|
698
|
-
"AddressId": 1,
|
|
699
|
-
"Color1": "red",
|
|
700
|
-
"Color2": "gold"
|
|
701
|
-
},
|
|
702
|
-
"HEMARatings": [
|
|
703
|
-
{
|
|
704
|
-
"Id": 13,
|
|
705
|
-
"PersonId": 18,
|
|
706
|
-
"Rank": 1500,
|
|
707
|
-
"Rating": 1503,
|
|
708
|
-
"WeaponId": 1,
|
|
709
|
-
"Updated": "2024-06-01T04:10:57.000Z"
|
|
710
|
-
}
|
|
711
|
-
],
|
|
712
|
-
"M2Ratings": [],
|
|
713
|
-
"ProfileImage": null
|
|
714
|
-
},
|
|
715
|
-
{
|
|
716
|
-
"PersonId": 19,
|
|
717
|
-
"DisplayName": "David Frederick",
|
|
718
|
-
"Pronouns": "He/Him",
|
|
719
|
-
"FirstName": "David",
|
|
720
|
-
"LastName": "Frederick",
|
|
721
|
-
"Birthday": "1993-11-21",
|
|
722
|
-
"ClubId": 5,
|
|
723
|
-
"ShowData": true,
|
|
724
|
-
"PersonEmails": [],
|
|
725
|
-
"Images": [],
|
|
726
|
-
"Club": {
|
|
727
|
-
"ClubId": 5,
|
|
728
|
-
"Name": "Fechtastic Fighters",
|
|
729
|
-
"ShortName": "FF",
|
|
730
|
-
"Description": "Fechtastic Fighters",
|
|
731
|
-
"AddressId": 1,
|
|
732
|
-
"Color1": "green",
|
|
733
|
-
"Color2": "silver"
|
|
734
|
-
},
|
|
735
|
-
"HEMARatings": [
|
|
736
|
-
{
|
|
737
|
-
"Id": 14,
|
|
738
|
-
"PersonId": 19,
|
|
739
|
-
"Rank": 1500,
|
|
740
|
-
"Rating": 1341.1,
|
|
741
|
-
"WeaponId": 1,
|
|
742
|
-
"Updated": "2024-06-01T04:11:23.000Z"
|
|
743
|
-
}
|
|
744
|
-
],
|
|
745
|
-
"M2Ratings": [],
|
|
746
|
-
"ProfileImage": null
|
|
747
|
-
},
|
|
748
|
-
{
|
|
749
|
-
"PersonId": 22,
|
|
750
|
-
"DisplayName": "Bob Smith",
|
|
751
|
-
"Pronouns": "He/Him",
|
|
752
|
-
"FirstName": "Bob",
|
|
753
|
-
"LastName": "Smith",
|
|
754
|
-
"Birthday": "2024-06-06",
|
|
755
|
-
"ClubId": 6,
|
|
756
|
-
"ShowData": true,
|
|
757
|
-
"PersonEmails": [
|
|
758
|
-
{
|
|
759
|
-
"EmailId": 12,
|
|
760
|
-
"EmailAddress": "bob@aol.com",
|
|
761
|
-
"PersonId": 22,
|
|
762
|
-
"IsPrimary": true
|
|
763
|
-
}
|
|
764
|
-
],
|
|
765
|
-
"Images": [
|
|
766
|
-
{
|
|
767
|
-
"ImageId": 12,
|
|
768
|
-
"URL": "https://randomuser.me/api/portraits/men/81.jpg",
|
|
769
|
-
"AltText": null,
|
|
770
|
-
"Type": "Portrait",
|
|
771
|
-
"EntityId": 22,
|
|
772
|
-
"EntityType": "Person"
|
|
773
|
-
}
|
|
774
|
-
],
|
|
775
|
-
"Club": {
|
|
776
|
-
"ClubId": 6,
|
|
777
|
-
"Name": "SwordPlay Society",
|
|
778
|
-
"ShortName": "SS",
|
|
779
|
-
"Description": "SwordPlay Society",
|
|
780
|
-
"AddressId": 1,
|
|
781
|
-
"Color1": "red",
|
|
782
|
-
"Color2": "blue"
|
|
783
|
-
},
|
|
784
|
-
"HEMARatings": [],
|
|
785
|
-
"M2Ratings": [],
|
|
786
|
-
"ProfileImage": {
|
|
787
|
-
"ImageId": 12,
|
|
788
|
-
"URL": "https://randomuser.me/api/portraits/men/81.jpg",
|
|
789
|
-
"AltText": null,
|
|
790
|
-
"Type": "Portrait",
|
|
791
|
-
"EntityId": 22,
|
|
792
|
-
"EntityType": "Person"
|
|
793
406
|
}
|
|
794
|
-
|
|
795
|
-
{
|
|
796
|
-
"PersonId": 23,
|
|
797
|
-
"DisplayName": "Lucas Garcia",
|
|
798
|
-
"Pronouns": "He/Him",
|
|
799
|
-
"FirstName": "Lucas",
|
|
800
|
-
"LastName": "Garcia",
|
|
801
|
-
"Birthday": "2024-06-06",
|
|
802
|
-
"ClubId": 1,
|
|
803
|
-
"ShowData": true,
|
|
804
|
-
"PersonEmails": [],
|
|
805
|
-
"Images": [
|
|
806
|
-
{
|
|
807
|
-
"ImageId": 11,
|
|
808
|
-
"URL": "https://randomuser.me/api/portraits/men/77.jpg",
|
|
809
|
-
"AltText": null,
|
|
810
|
-
"Type": "Portrait",
|
|
811
|
-
"EntityId": 23,
|
|
812
|
-
"EntityType": "Person"
|
|
813
|
-
}
|
|
814
|
-
],
|
|
815
|
-
"Club": {
|
|
816
|
-
"ClubId": 1,
|
|
817
|
-
"Name": "Acme Fencing Club",
|
|
818
|
-
"ShortName": "ACME",
|
|
819
|
-
"Description": "Acme Fencing Club",
|
|
820
|
-
"AddressId": 1,
|
|
821
|
-
"Color1": "rose",
|
|
822
|
-
"Color2": "navy"
|
|
823
|
-
},
|
|
824
|
-
"HEMARatings": [],
|
|
825
|
-
"M2Ratings": [],
|
|
826
|
-
"ProfileImage": {
|
|
827
|
-
"ImageId": 11,
|
|
828
|
-
"URL": "https://randomuser.me/api/portraits/men/77.jpg",
|
|
829
|
-
"AltText": null,
|
|
830
|
-
"Type": "Portrait",
|
|
831
|
-
"EntityId": 23,
|
|
832
|
-
"EntityType": "Person"
|
|
833
|
-
}
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
"PersonId": 24,
|
|
837
|
-
"DisplayName": "Mia Rodriguez",
|
|
838
|
-
"Pronouns": "She/Her",
|
|
839
|
-
"FirstName": "Mia",
|
|
840
|
-
"LastName": "Rodriguez",
|
|
841
|
-
"Birthday": "2024-06-06",
|
|
842
|
-
"ClubId": 2,
|
|
843
|
-
"ShowData": true,
|
|
844
|
-
"PersonEmails": [],
|
|
845
|
-
"Images": [
|
|
846
|
-
{
|
|
847
|
-
"ImageId": 10,
|
|
848
|
-
"URL": "https://randomuser.me/api/portraits/women/89.jpg",
|
|
849
|
-
"AltText": null,
|
|
850
|
-
"Type": "Portrait",
|
|
851
|
-
"EntityId": 24,
|
|
852
|
-
"EntityType": "Person"
|
|
853
|
-
}
|
|
854
|
-
],
|
|
855
|
-
"Club": {
|
|
856
|
-
"ClubId": 2,
|
|
857
|
-
"Name": "Historical Fencing Of Anywhere",
|
|
858
|
-
"ShortName": "HFoA",
|
|
859
|
-
"Description": "is",
|
|
860
|
-
"AddressId": 1,
|
|
861
|
-
"Color1": "red",
|
|
862
|
-
"Color2": "blue"
|
|
863
|
-
},
|
|
864
|
-
"HEMARatings": [],
|
|
865
|
-
"M2Ratings": [],
|
|
866
|
-
"ProfileImage": {
|
|
867
|
-
"ImageId": 10,
|
|
868
|
-
"URL": "https://randomuser.me/api/portraits/women/89.jpg",
|
|
869
|
-
"AltText": null,
|
|
870
|
-
"Type": "Portrait",
|
|
871
|
-
"EntityId": 24,
|
|
872
|
-
"EntityType": "Person"
|
|
873
|
-
}
|
|
874
|
-
},
|
|
875
|
-
{
|
|
876
|
-
"PersonId": 25,
|
|
877
|
-
"DisplayName": "Isabella Hernandez",
|
|
878
|
-
"Pronouns": "She/Her",
|
|
879
|
-
"FirstName": "Isabella ",
|
|
880
|
-
"LastName": "Hernandez",
|
|
881
|
-
"Birthday": "2024-06-06",
|
|
882
|
-
"ClubId": 4,
|
|
883
|
-
"ShowData": true,
|
|
884
|
-
"PersonEmails": [],
|
|
885
|
-
"Images": [],
|
|
886
|
-
"Club": {
|
|
887
|
-
"ClubId": 4,
|
|
888
|
-
"Name": "Guardians of the Guard",
|
|
889
|
-
"ShortName": "GotG",
|
|
890
|
-
"Description": "Guardians of the Guard",
|
|
891
|
-
"AddressId": 1,
|
|
892
|
-
"Color1": "purple",
|
|
893
|
-
"Color2": "orange"
|
|
894
|
-
},
|
|
895
|
-
"HEMARatings": [],
|
|
896
|
-
"M2Ratings": [],
|
|
897
|
-
"ProfileImage": null
|
|
898
|
-
},
|
|
899
|
-
{
|
|
900
|
-
"PersonId": 29,
|
|
901
|
-
"DisplayName": "Smith Smithy",
|
|
902
|
-
"Pronouns": "He/Him",
|
|
903
|
-
"FirstName": "Smith",
|
|
904
|
-
"LastName": "Smithy",
|
|
905
|
-
"Birthday": null,
|
|
906
|
-
"ClubId": 6,
|
|
907
|
-
"ShowData": true,
|
|
908
|
-
"PersonEmails": [
|
|
909
|
-
{
|
|
910
|
-
"EmailId": 16,
|
|
911
|
-
"EmailAddress": "smithy@aol.com",
|
|
912
|
-
"PersonId": 29,
|
|
913
|
-
"IsPrimary": true
|
|
914
|
-
}
|
|
915
|
-
],
|
|
916
|
-
"Images": [],
|
|
917
|
-
"Club": {
|
|
918
|
-
"ClubId": 6,
|
|
919
|
-
"Name": "SwordPlay Society",
|
|
920
|
-
"ShortName": "SS",
|
|
921
|
-
"Description": "SwordPlay Society",
|
|
922
|
-
"AddressId": 1,
|
|
923
|
-
"Color1": "red",
|
|
924
|
-
"Color2": "blue"
|
|
925
|
-
},
|
|
926
|
-
"HEMARatings": [],
|
|
927
|
-
"M2Ratings": [],
|
|
928
|
-
"ProfileImage": null
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"PersonId": 30,
|
|
932
|
-
"DisplayName": "William Jabronie",
|
|
933
|
-
"Pronouns": "He/Him",
|
|
934
|
-
"FirstName": "William",
|
|
935
|
-
"LastName": "Jabronie",
|
|
936
|
-
"Birthday": null,
|
|
937
|
-
"ClubId": 8,
|
|
938
|
-
"ShowData": true,
|
|
939
|
-
"PersonEmails": [
|
|
940
|
-
{
|
|
941
|
-
"EmailId": 17,
|
|
942
|
-
"EmailAddress": "wj@aol.com",
|
|
943
|
-
"PersonId": 30,
|
|
944
|
-
"IsPrimary": true
|
|
945
|
-
}
|
|
946
|
-
],
|
|
947
|
-
"Images": [],
|
|
948
|
-
"Club": {
|
|
949
|
-
"ClubId": 8,
|
|
950
|
-
"Name": "Anytime Historical Fencing ",
|
|
951
|
-
"ShortName": "AHF",
|
|
952
|
-
"Description": null,
|
|
953
|
-
"AddressId": 1,
|
|
954
|
-
"Color1": "red",
|
|
955
|
-
"Color2": "blue"
|
|
956
|
-
},
|
|
957
|
-
"HEMARatings": [],
|
|
958
|
-
"M2Ratings": [],
|
|
959
|
-
"ProfileImage": null
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
"PersonId": 31,
|
|
963
|
-
"DisplayName": "Jim Jungle",
|
|
964
|
-
"Pronouns": "He/Him",
|
|
965
|
-
"FirstName": "Jim",
|
|
966
|
-
"LastName": "Jungle",
|
|
967
|
-
"Birthday": null,
|
|
968
|
-
"ClubId": 4,
|
|
969
|
-
"ShowData": true,
|
|
970
|
-
"PersonEmails": [
|
|
971
|
-
{
|
|
972
|
-
"EmailId": 18,
|
|
973
|
-
"EmailAddress": "jim@aol.com",
|
|
974
|
-
"PersonId": 31,
|
|
975
|
-
"IsPrimary": true
|
|
976
|
-
}
|
|
977
|
-
],
|
|
978
|
-
"Images": [],
|
|
979
|
-
"Club": {
|
|
980
|
-
"ClubId": 4,
|
|
981
|
-
"Name": "Guardians of the Guard",
|
|
982
|
-
"ShortName": "GotG",
|
|
983
|
-
"Description": "Guardians of the Guard",
|
|
984
|
-
"AddressId": 1,
|
|
985
|
-
"Color1": "purple",
|
|
986
|
-
"Color2": "orange"
|
|
987
|
-
},
|
|
988
|
-
"HEMARatings": [],
|
|
989
|
-
"M2Ratings": [],
|
|
990
|
-
"ProfileImage": null
|
|
991
|
-
}
|
|
992
|
-
];
|
|
407
|
+
]
|
|
993
408
|
|
|
994
409
|
|
|
995
410
|
export default personsMock;
|