@dcrackel/hematournamentui 1.0.98 → 1.0.99

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.
Files changed (54) hide show
  1. package/dist/{HemaTouranmentUI-lib.es.js → HemaTournamentUI-lib.es.js} +1578 -1474
  2. package/dist/{HemaTouranmentUI-lib.umd.js → HemaTournamentUI-lib.umd.js} +4 -4
  3. package/package.json +3 -1
  4. package/src/assets/portrait1.png +0 -0
  5. package/src/config/boutScreenConfigurations.js +54 -0
  6. package/src/mocks/eventRules.js +31 -0
  7. package/src/mocks/getPoolsWithBouts.js +405 -0
  8. package/src/mocks/getPoolsWithBoutsByPoolId.js +921 -0
  9. package/src/mocks/getPoolsWithBoutsClubColors.js +6 -0
  10. package/src/mocks/getPoolsWithBoutsComplete.js +926 -0
  11. package/src/stories/Atoms/Icon/BaseIcon.vue +8 -4
  12. package/src/stories/Atoms/Text/BaseText.vue +8 -2
  13. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.stories.js +60 -0
  14. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.vue +94 -0
  15. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.stories.js +113 -0
  16. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.vue +110 -0
  17. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.stories.js +39 -0
  18. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.vue +112 -0
  19. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.test.js +0 -2
  20. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.vue +6 -8
  21. package/src/stories/Molecules/Modals/BaseModal/BaseModal.vue +0 -5
  22. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.stories.js +52 -0
  23. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.vue +64 -0
  24. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.stories.js +56 -0
  25. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.vue +57 -0
  26. package/src/stories/Organisms/Cards/BoutCard/BoutCard.stories.js +81 -0
  27. package/src/stories/Organisms/Cards/BoutCard/BoutCard.vue +212 -0
  28. package/src/stories/Organisms/Cards/Director/DirectorCard.stories.js +34 -0
  29. package/src/stories/Organisms/Cards/Director/DirectorCard.vue +100 -0
  30. package/src/stories/Organisms/Cards/EditBout/EditBout.stories.js +53 -0
  31. package/src/stories/Organisms/Cards/EditBout/EditBout.vue +150 -0
  32. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.stories.js +202 -0
  33. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.vue +59 -0
  34. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.vue +30 -20
  35. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.vue +0 -2
  36. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.vue +0 -5
  37. package/src/stories/Organisms/Containers/Pool/Pool.vue +25 -5
  38. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.stories.js +30 -0
  39. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.vue +204 -0
  40. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.stories.js +42 -1
  41. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.vue +15 -4
  42. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.stories.js +52 -0
  43. package/src/stories/Organisms/Headers/{StaffSummary/StaffSummary.vue → ToggleHeader/ToggleHeader.vue} +20 -11
  44. package/src/stories/Templates/EventManagement/ListEvents/ListEvents.vue +0 -3
  45. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.stories.js +32 -0
  46. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.vue +206 -0
  47. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.stories.js +1 -1
  48. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.vue +1 -1
  49. package/src/stories/Templates/EventManagement/StaffList/StaffList.vue +3 -3
  50. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.vue +0 -5
  51. package/src/stories/Templates/TournamentManagement/EditTournament/EditPageOne/EditTournamentPageOne.vue +0 -3
  52. package/tailwind.config.js +46 -3
  53. package/vite.config.js +9 -8
  54. package/src/stories/Organisms/Headers/StaffSummary/StaffSummary.stories.js +0 -35
@@ -0,0 +1,926 @@
1
+ import getPoolsWithBouts from "./getPoolsWithBouts.js";
2
+
3
+ const getPoolsWithBoutsComplete =
4
+ {
5
+ "message": "Pools retrieved",
6
+ "pools": [
7
+ {
8
+ "PoolId": 137,
9
+ "Name": "Pool 1",
10
+ "RingName": "Ring 1",
11
+ "Flight": 1,
12
+ "PoolType": "pool",
13
+ "EventId": 5,
14
+ "Status": "planning",
15
+ "Updated": "2024-06-17T03:40:05.000Z",
16
+ "Bouts": [
17
+ {
18
+ "BoutId": 1823,
19
+ "PoolId": 137,
20
+ "EventId": 5,
21
+ "Person1Id": 10,
22
+ "Person2Id": 1,
23
+ "Status": "Scheduled",
24
+ "Score1": 0,
25
+ "Score2": 0,
26
+ "Started": null,
27
+ "Ended": null,
28
+ "TimerStatus": "stopped",
29
+ "TimeLeft": 0,
30
+ "RoundLabel": null,
31
+ "DEBoutId": null,
32
+ "DENextBoutId": null,
33
+ "RefereeId": null,
34
+ "createdAt": "2024-06-15T06:45:39.000Z",
35
+ "updatedAt": "2024-06-15T06:45:39.000Z",
36
+ "Person1": {
37
+ "PersonId": 10,
38
+ "DisplayName": "Melissa Jones",
39
+ "ClubId": 4,
40
+ "Images": [],
41
+ "Club": {
42
+ "Name": "Guardians of the Guard",
43
+ "Color1": "purple",
44
+ "Color2": "orange"
45
+ }
46
+ },
47
+ "Person2": {
48
+ "PersonId": 1,
49
+ "DisplayName": "Dave Smith",
50
+ "ClubId": 4,
51
+ "Images": [
52
+ {
53
+ "ImageId": 7,
54
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg"
55
+ }
56
+ ],
57
+ "Club": {
58
+ "Name": "Guardians of the Guard"
59
+ }
60
+ }
61
+ },
62
+ {
63
+ "BoutId": 1824,
64
+ "PoolId": 137,
65
+ "EventId": 5,
66
+ "Person1Id": 14,
67
+ "Person2Id": 6,
68
+ "Status": "Scheduled",
69
+ "Score1": 0,
70
+ "Score2": 0,
71
+ "Started": null,
72
+ "Ended": null,
73
+ "TimerStatus": "stopped",
74
+ "TimeLeft": 0,
75
+ "RoundLabel": null,
76
+ "DEBoutId": null,
77
+ "DENextBoutId": null,
78
+ "RefereeId": null,
79
+ "createdAt": "2024-06-15T06:45:39.000Z",
80
+ "updatedAt": "2024-06-15T06:45:39.000Z",
81
+ "Person1": {
82
+ "PersonId": 14,
83
+ "DisplayName": "Jordan Allen",
84
+ "ClubId": 5,
85
+ "Images": [],
86
+ "Club": {
87
+ "Name": "Fechtastic Fighters",
88
+ "Color1": "green",
89
+ "Color2": "silver"
90
+ }
91
+ },
92
+ "Person2": {
93
+ "PersonId": 6,
94
+ "DisplayName": "Courtney Medina",
95
+ "ClubId": 3,
96
+ "Images": [],
97
+ "Club": {
98
+ "Name": "Sword & Blade of Callie"
99
+ }
100
+ }
101
+ },
102
+ {
103
+ "BoutId": 1825,
104
+ "PoolId": 137,
105
+ "EventId": 5,
106
+ "Person1Id": 7,
107
+ "Person2Id": 10,
108
+ "Status": "Scheduled",
109
+ "Score1": 0,
110
+ "Score2": 0,
111
+ "Started": null,
112
+ "Ended": null,
113
+ "TimerStatus": "stopped",
114
+ "TimeLeft": 0,
115
+ "RoundLabel": null,
116
+ "DEBoutId": null,
117
+ "DENextBoutId": null,
118
+ "RefereeId": null,
119
+ "createdAt": "2024-06-15T06:45:39.000Z",
120
+ "updatedAt": "2024-06-15T06:45:39.000Z",
121
+ "Person1": {
122
+ "PersonId": 7,
123
+ "DisplayName": "Emily Carlson",
124
+ "ClubId": 4,
125
+ "Images": [],
126
+ "Club": {
127
+ "Name": "Guardians of the Guard",
128
+ "Color1": "purple",
129
+ "Color2": "orange"
130
+ }
131
+ },
132
+ "Person2": {
133
+ "PersonId": 10,
134
+ "DisplayName": "Melissa Jones",
135
+ "ClubId": 4,
136
+ "Images": [],
137
+ "Club": {
138
+ "Name": "Guardians of the Guard"
139
+ }
140
+ }
141
+ },
142
+ {
143
+ "BoutId": 1826,
144
+ "PoolId": 137,
145
+ "EventId": 5,
146
+ "Person1Id": 1,
147
+ "Person2Id": 14,
148
+ "Status": "Scheduled",
149
+ "Score1": 0,
150
+ "Score2": 0,
151
+ "Started": null,
152
+ "Ended": null,
153
+ "TimerStatus": "stopped",
154
+ "TimeLeft": 0,
155
+ "RoundLabel": null,
156
+ "DEBoutId": null,
157
+ "DENextBoutId": null,
158
+ "RefereeId": null,
159
+ "createdAt": "2024-06-15T06:45:39.000Z",
160
+ "updatedAt": "2024-06-15T06:45:39.000Z",
161
+ "Person1": {
162
+ "PersonId": 1,
163
+ "DisplayName": "Dave Smith",
164
+ "ClubId": 4,
165
+ "Images": [
166
+ {
167
+ "ImageId": 7,
168
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg"
169
+ }
170
+ ],
171
+ "Club": {
172
+ "Name": "Guardians of the Guard",
173
+ "Color1": "purple",
174
+ "Color2": "orange"
175
+ }
176
+ },
177
+ "Person2": {
178
+ "PersonId": 14,
179
+ "DisplayName": "Jordan Allen",
180
+ "ClubId": 5,
181
+ "Images": [],
182
+ "Club": {
183
+ "Name": "Fechtastic Fighters"
184
+ }
185
+ }
186
+ },
187
+ {
188
+ "BoutId": 1827,
189
+ "PoolId": 137,
190
+ "EventId": 5,
191
+ "Person1Id": 7,
192
+ "Person2Id": 6,
193
+ "Status": "Scheduled",
194
+ "Score1": 0,
195
+ "Score2": 0,
196
+ "Started": null,
197
+ "Ended": null,
198
+ "TimerStatus": "stopped",
199
+ "TimeLeft": 0,
200
+ "RoundLabel": null,
201
+ "DEBoutId": null,
202
+ "DENextBoutId": null,
203
+ "RefereeId": null,
204
+ "createdAt": "2024-06-15T06:45:39.000Z",
205
+ "updatedAt": "2024-06-15T06:45:39.000Z",
206
+ "Person1": {
207
+ "PersonId": 7,
208
+ "DisplayName": "Emily Carlson",
209
+ "ClubId": 4,
210
+ "Images": [],
211
+ "Club": {
212
+ "Name": "Guardians of the Guard",
213
+ "Color1": "purple",
214
+ "Color2": "orange"
215
+ }
216
+ },
217
+ "Person2": {
218
+ "PersonId": 6,
219
+ "DisplayName": "Courtney Medina",
220
+ "ClubId": 3,
221
+ "Images": [],
222
+ "Club": {
223
+ "Name": "Sword & Blade of Callie"
224
+ }
225
+ }
226
+ },
227
+ {
228
+ "BoutId": 1828,
229
+ "PoolId": 137,
230
+ "EventId": 5,
231
+ "Person1Id": 10,
232
+ "Person2Id": 14,
233
+ "Status": "Scheduled",
234
+ "Score1": 0,
235
+ "Score2": 0,
236
+ "Started": null,
237
+ "Ended": null,
238
+ "TimerStatus": "stopped",
239
+ "TimeLeft": 0,
240
+ "RoundLabel": null,
241
+ "DEBoutId": null,
242
+ "DENextBoutId": null,
243
+ "RefereeId": null,
244
+ "createdAt": "2024-06-15T06:45:39.000Z",
245
+ "updatedAt": "2024-06-15T06:45:39.000Z",
246
+ "Person1": {
247
+ "PersonId": 10,
248
+ "DisplayName": "Melissa Jones",
249
+ "ClubId": 4,
250
+ "Images": [],
251
+ "Club": {
252
+ "Name": "Guardians of the Guard",
253
+ "Color1": "purple",
254
+ "Color2": "orange"
255
+ }
256
+ },
257
+ "Person2": {
258
+ "PersonId": 14,
259
+ "DisplayName": "Jordan Allen",
260
+ "ClubId": 5,
261
+ "Images": [],
262
+ "Club": {
263
+ "Name": "Fechtastic Fighters"
264
+ }
265
+ }
266
+ },
267
+ {
268
+ "BoutId": 1829,
269
+ "PoolId": 137,
270
+ "EventId": 5,
271
+ "Person1Id": 1,
272
+ "Person2Id": 7,
273
+ "Status": "Scheduled",
274
+ "Score1": 0,
275
+ "Score2": 0,
276
+ "Started": null,
277
+ "Ended": null,
278
+ "TimerStatus": "stopped",
279
+ "TimeLeft": 0,
280
+ "RoundLabel": null,
281
+ "DEBoutId": null,
282
+ "DENextBoutId": null,
283
+ "RefereeId": null,
284
+ "createdAt": "2024-06-15T06:45:39.000Z",
285
+ "updatedAt": "2024-06-15T06:45:39.000Z",
286
+ "Person1": {
287
+ "PersonId": 1,
288
+ "DisplayName": "Dave Smith",
289
+ "ClubId": 4,
290
+ "Images": [
291
+ {
292
+ "ImageId": 7,
293
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg"
294
+ }
295
+ ],
296
+ "Club": {
297
+ "Name": "Guardians of the Guard",
298
+ "Color1": "purple",
299
+ "Color2": "orange"
300
+ }
301
+ },
302
+ "Person2": {
303
+ "PersonId": 7,
304
+ "DisplayName": "Emily Carlson",
305
+ "ClubId": 4,
306
+ "Images": [],
307
+ "Club": {
308
+ "Name": "Guardians of the Guard"
309
+ }
310
+ }
311
+ },
312
+ {
313
+ "BoutId": 1830,
314
+ "PoolId": 137,
315
+ "EventId": 5,
316
+ "Person1Id": 6,
317
+ "Person2Id": 10,
318
+ "Status": "Scheduled",
319
+ "Score1": 0,
320
+ "Score2": 0,
321
+ "Started": null,
322
+ "Ended": null,
323
+ "TimerStatus": "stopped",
324
+ "TimeLeft": 0,
325
+ "RoundLabel": null,
326
+ "DEBoutId": null,
327
+ "DENextBoutId": null,
328
+ "RefereeId": null,
329
+ "createdAt": "2024-06-15T06:45:39.000Z",
330
+ "updatedAt": "2024-06-15T06:45:39.000Z",
331
+ "Person1": {
332
+ "PersonId": 6,
333
+ "DisplayName": "Courtney Medina",
334
+ "ClubId": 3,
335
+ "Images": [],
336
+ "Club": {
337
+ "Name": "Sword & Blade of Callie",
338
+ "Color1": "red",
339
+ "Color2": "gold"
340
+ }
341
+ },
342
+ "Person2": {
343
+ "PersonId": 10,
344
+ "DisplayName": "Melissa Jones",
345
+ "ClubId": 4,
346
+ "Images": [],
347
+ "Club": {
348
+ "Name": "Guardians of the Guard"
349
+ }
350
+ }
351
+ },
352
+ {
353
+ "BoutId": 1831,
354
+ "PoolId": 137,
355
+ "EventId": 5,
356
+ "Person1Id": 14,
357
+ "Person2Id": 7,
358
+ "Status": "Scheduled",
359
+ "Score1": 0,
360
+ "Score2": 0,
361
+ "Started": null,
362
+ "Ended": null,
363
+ "TimerStatus": "stopped",
364
+ "TimeLeft": 0,
365
+ "RoundLabel": null,
366
+ "DEBoutId": null,
367
+ "DENextBoutId": null,
368
+ "RefereeId": null,
369
+ "createdAt": "2024-06-15T06:45:39.000Z",
370
+ "updatedAt": "2024-06-15T06:45:39.000Z",
371
+ "Person1": {
372
+ "PersonId": 14,
373
+ "DisplayName": "Jordan Allen",
374
+ "ClubId": 5,
375
+ "Images": [],
376
+ "Club": {
377
+ "Name": "Fechtastic Fighters",
378
+ "Color1": "green",
379
+ "Color2": "silver"
380
+ }
381
+ },
382
+ "Person2": {
383
+ "PersonId": 7,
384
+ "DisplayName": "Emily Carlson",
385
+ "ClubId": 4,
386
+ "Images": [],
387
+ "Club": {
388
+ "Name": "Guardians of the Guard"
389
+ }
390
+ }
391
+ },
392
+ {
393
+ "BoutId": 1832,
394
+ "PoolId": 137,
395
+ "EventId": 5,
396
+ "Person1Id": 6,
397
+ "Person2Id": 1,
398
+ "Status": "Scheduled",
399
+ "Score1": 0,
400
+ "Score2": 0,
401
+ "Started": null,
402
+ "Ended": null,
403
+ "TimerStatus": "stopped",
404
+ "TimeLeft": 0,
405
+ "RoundLabel": null,
406
+ "DEBoutId": null,
407
+ "DENextBoutId": null,
408
+ "RefereeId": null,
409
+ "createdAt": "2024-06-15T06:45:39.000Z",
410
+ "updatedAt": "2024-06-15T06:45:39.000Z",
411
+ "Person1": {
412
+ "PersonId": 6,
413
+ "DisplayName": "Courtney Medina",
414
+ "ClubId": 3,
415
+ "Images": [],
416
+ "Club": {
417
+ "Name": "Sword & Blade of Callie",
418
+ "Color1": "red",
419
+ "Color2": "gold"
420
+ }
421
+ },
422
+ "Person2": {
423
+ "PersonId": 1,
424
+ "DisplayName": "Dave Smith",
425
+ "ClubId": 4,
426
+ "Images": [
427
+ {
428
+ "ImageId": 7,
429
+ "URL": "https://randomuser.me/api/portraits/men/22.jpg"
430
+ }
431
+ ],
432
+ "Club": {
433
+ "Name": "Guardians of the Guard"
434
+ }
435
+ }
436
+ }
437
+ ]
438
+ },
439
+ {
440
+ "PoolId": 138,
441
+ "Name": "Pool 2",
442
+ "RingName": "Ring 2",
443
+ "Flight": 1,
444
+ "PoolType": "pool",
445
+ "EventId": 5,
446
+ "Status": "preparation",
447
+ "Updated": "2024-06-17T03:40:05.000Z",
448
+ "Bouts": [
449
+ {
450
+ "BoutId": 1833,
451
+ "PoolId": 138,
452
+ "EventId": 5,
453
+ "Person1Id": 4,
454
+ "Person2Id": 2,
455
+ "Status": "Scheduled",
456
+ "Score1": 0,
457
+ "Score2": 0,
458
+ "Started": null,
459
+ "Ended": null,
460
+ "TimerStatus": "stopped",
461
+ "TimeLeft": 0,
462
+ "RoundLabel": null,
463
+ "DEBoutId": null,
464
+ "DENextBoutId": null,
465
+ "RefereeId": null,
466
+ "createdAt": "2024-06-15T06:45:39.000Z",
467
+ "updatedAt": "2024-06-15T06:45:39.000Z",
468
+ "Person1": {
469
+ "PersonId": 4,
470
+ "DisplayName": "Kim Bullock",
471
+ "ClubId": 1,
472
+ "Images": [
473
+ {
474
+ "ImageId": 8,
475
+ "URL": "https://randomuser.me/api/portraits/women/9.jpg"
476
+ }
477
+ ],
478
+ "Club": {
479
+ "Name": "Acme Fencing Club",
480
+ "Color1": "rose",
481
+ "Color2": "navy"
482
+ }
483
+ },
484
+ "Person2": {
485
+ "PersonId": 2,
486
+ "DisplayName": "Kyle Edwards",
487
+ "ClubId": 6,
488
+ "Images": [],
489
+ "Club": {
490
+ "Name": "SwordPlay Society"
491
+ }
492
+ }
493
+ },
494
+ {
495
+ "BoutId": 1834,
496
+ "PoolId": 138,
497
+ "EventId": 5,
498
+ "Person1Id": 22,
499
+ "Person2Id": 5,
500
+ "Status": "Scheduled",
501
+ "Score1": 0,
502
+ "Score2": 0,
503
+ "Started": null,
504
+ "Ended": null,
505
+ "TimerStatus": "stopped",
506
+ "TimeLeft": 0,
507
+ "RoundLabel": null,
508
+ "DEBoutId": null,
509
+ "DENextBoutId": null,
510
+ "RefereeId": null,
511
+ "createdAt": "2024-06-15T06:45:39.000Z",
512
+ "updatedAt": "2024-06-15T06:45:39.000Z",
513
+ "Person1": {
514
+ "PersonId": 22,
515
+ "DisplayName": "Bob Smith",
516
+ "ClubId": 6,
517
+ "Images": [
518
+ {
519
+ "ImageId": 12,
520
+ "URL": "https://randomuser.me/api/portraits/men/81.jpg"
521
+ }
522
+ ],
523
+ "Club": {
524
+ "Name": "SwordPlay Society",
525
+ "Color1": "red",
526
+ "Color2": "blue"
527
+ }
528
+ },
529
+ "Person2": {
530
+ "PersonId": 5,
531
+ "DisplayName": "Darlene Acevedo",
532
+ "ClubId": 9,
533
+ "Images": [],
534
+ "Club": {
535
+ "Name": "Cats Cutlass Club of Canton"
536
+ }
537
+ }
538
+ },
539
+ {
540
+ "BoutId": 1835,
541
+ "PoolId": 138,
542
+ "EventId": 5,
543
+ "Person1Id": 8,
544
+ "Person2Id": 4,
545
+ "Status": "Scheduled",
546
+ "Score1": 0,
547
+ "Score2": 0,
548
+ "Started": null,
549
+ "Ended": null,
550
+ "TimerStatus": "stopped",
551
+ "TimeLeft": 0,
552
+ "RoundLabel": null,
553
+ "DEBoutId": null,
554
+ "DENextBoutId": null,
555
+ "RefereeId": null,
556
+ "createdAt": "2024-06-15T06:45:39.000Z",
557
+ "updatedAt": "2024-06-15T06:45:39.000Z",
558
+ "Person1": {
559
+ "PersonId": 8,
560
+ "DisplayName": "Julie Riddle",
561
+ "ClubId": 2,
562
+ "Images": [],
563
+ "Club": {
564
+ "Name": "Historical Fencing Of Anywhere",
565
+ "Color1": "red",
566
+ "Color2": "blue"
567
+ }
568
+ },
569
+ "Person2": {
570
+ "PersonId": 4,
571
+ "DisplayName": "Kim Bullock",
572
+ "ClubId": 1,
573
+ "Images": [
574
+ {
575
+ "ImageId": 8,
576
+ "URL": "https://randomuser.me/api/portraits/women/9.jpg"
577
+ }
578
+ ],
579
+ "Club": {
580
+ "Name": "Acme Fencing Club"
581
+ }
582
+ }
583
+ },
584
+ {
585
+ "BoutId": 1836,
586
+ "PoolId": 138,
587
+ "EventId": 5,
588
+ "Person1Id": 2,
589
+ "Person2Id": 22,
590
+ "Status": "Scheduled",
591
+ "Score1": 0,
592
+ "Score2": 0,
593
+ "Started": null,
594
+ "Ended": null,
595
+ "TimerStatus": "stopped",
596
+ "TimeLeft": 0,
597
+ "RoundLabel": null,
598
+ "DEBoutId": null,
599
+ "DENextBoutId": null,
600
+ "RefereeId": null,
601
+ "createdAt": "2024-06-15T06:45:39.000Z",
602
+ "updatedAt": "2024-06-15T06:45:39.000Z",
603
+ "Person1": {
604
+ "PersonId": 2,
605
+ "DisplayName": "Kyle Edwards",
606
+ "ClubId": 6,
607
+ "Images": [],
608
+ "Club": {
609
+ "Name": "SwordPlay Society",
610
+ "Color1": "red",
611
+ "Color2": "blue"
612
+ }
613
+ },
614
+ "Person2": {
615
+ "PersonId": 22,
616
+ "DisplayName": "Bob Smith",
617
+ "ClubId": 6,
618
+ "Images": [
619
+ {
620
+ "ImageId": 12,
621
+ "URL": "https://randomuser.me/api/portraits/men/81.jpg"
622
+ }
623
+ ],
624
+ "Club": {
625
+ "Name": "SwordPlay Society"
626
+ }
627
+ }
628
+ },
629
+ {
630
+ "BoutId": 1837,
631
+ "PoolId": 138,
632
+ "EventId": 5,
633
+ "Person1Id": 8,
634
+ "Person2Id": 5,
635
+ "Status": "Scheduled",
636
+ "Score1": 0,
637
+ "Score2": 0,
638
+ "Started": null,
639
+ "Ended": null,
640
+ "TimerStatus": "stopped",
641
+ "TimeLeft": 0,
642
+ "RoundLabel": null,
643
+ "DEBoutId": null,
644
+ "DENextBoutId": null,
645
+ "RefereeId": null,
646
+ "createdAt": "2024-06-15T06:45:39.000Z",
647
+ "updatedAt": "2024-06-15T06:45:39.000Z",
648
+ "Person1": {
649
+ "PersonId": 8,
650
+ "DisplayName": "Julie Riddle",
651
+ "ClubId": 2,
652
+ "Images": [],
653
+ "Club": {
654
+ "Name": "Historical Fencing Of Anywhere",
655
+ "Color1": "red",
656
+ "Color2": "blue"
657
+ }
658
+ },
659
+ "Person2": {
660
+ "PersonId": 5,
661
+ "DisplayName": "Darlene Acevedo",
662
+ "ClubId": 9,
663
+ "Images": [],
664
+ "Club": {
665
+ "Name": "Cats Cutlass Club of Canton"
666
+ }
667
+ }
668
+ },
669
+ {
670
+ "BoutId": 1838,
671
+ "PoolId": 138,
672
+ "EventId": 5,
673
+ "Person1Id": 4,
674
+ "Person2Id": 22,
675
+ "Status": "Scheduled",
676
+ "Score1": 0,
677
+ "Score2": 0,
678
+ "Started": null,
679
+ "Ended": null,
680
+ "TimerStatus": "stopped",
681
+ "TimeLeft": 0,
682
+ "RoundLabel": null,
683
+ "DEBoutId": null,
684
+ "DENextBoutId": null,
685
+ "RefereeId": null,
686
+ "createdAt": "2024-06-15T06:45:39.000Z",
687
+ "updatedAt": "2024-06-15T06:45:39.000Z",
688
+ "Person1": {
689
+ "PersonId": 4,
690
+ "DisplayName": "Kim Bullock",
691
+ "ClubId": 1,
692
+ "Images": [
693
+ {
694
+ "ImageId": 8,
695
+ "URL": "https://randomuser.me/api/portraits/women/9.jpg"
696
+ }
697
+ ],
698
+ "Club": {
699
+ "Name": "Acme Fencing Club",
700
+ "Color1": "rose",
701
+ "Color2": "navy"
702
+ }
703
+ },
704
+ "Person2": {
705
+ "PersonId": 22,
706
+ "DisplayName": "Bob Smith",
707
+ "ClubId": 6,
708
+ "Images": [
709
+ {
710
+ "ImageId": 12,
711
+ "URL": "https://randomuser.me/api/portraits/men/81.jpg"
712
+ }
713
+ ],
714
+ "Club": {
715
+ "Name": "SwordPlay Society"
716
+ }
717
+ }
718
+ },
719
+ {
720
+ "BoutId": 1839,
721
+ "PoolId": 138,
722
+ "EventId": 5,
723
+ "Person1Id": 2,
724
+ "Person2Id": 8,
725
+ "Status": "Scheduled",
726
+ "Score1": 0,
727
+ "Score2": 0,
728
+ "Started": null,
729
+ "Ended": null,
730
+ "TimerStatus": "stopped",
731
+ "TimeLeft": 0,
732
+ "RoundLabel": null,
733
+ "DEBoutId": null,
734
+ "DENextBoutId": null,
735
+ "RefereeId": null,
736
+ "createdAt": "2024-06-15T06:45:39.000Z",
737
+ "updatedAt": "2024-06-15T06:45:39.000Z",
738
+ "Person1": {
739
+ "PersonId": 2,
740
+ "DisplayName": "Kyle Edwards",
741
+ "ClubId": 6,
742
+ "Images": [],
743
+ "Club": {
744
+ "Name": "SwordPlay Society",
745
+ "Color1": "red",
746
+ "Color2": "blue"
747
+ }
748
+ },
749
+ "Person2": {
750
+ "PersonId": 8,
751
+ "DisplayName": "Julie Riddle",
752
+ "ClubId": 2,
753
+ "Images": [],
754
+ "Club": {
755
+ "Name": "Historical Fencing Of Anywhere"
756
+ }
757
+ }
758
+ },
759
+ {
760
+ "BoutId": 1840,
761
+ "PoolId": 138,
762
+ "EventId": 5,
763
+ "Person1Id": 5,
764
+ "Person2Id": 4,
765
+ "Status": "Scheduled",
766
+ "Score1": 0,
767
+ "Score2": 0,
768
+ "Started": null,
769
+ "Ended": null,
770
+ "TimerStatus": "stopped",
771
+ "TimeLeft": 0,
772
+ "RoundLabel": null,
773
+ "DEBoutId": null,
774
+ "DENextBoutId": null,
775
+ "RefereeId": null,
776
+ "createdAt": "2024-06-15T06:45:39.000Z",
777
+ "updatedAt": "2024-06-15T06:45:39.000Z",
778
+ "Person1": {
779
+ "PersonId": 5,
780
+ "DisplayName": "Darlene Acevedo",
781
+ "ClubId": 9,
782
+ "Images": [],
783
+ "Club": {
784
+ "Name": "Cats Cutlass Club of Canton",
785
+ "Color1": "red",
786
+ "Color2": "blue"
787
+ }
788
+ },
789
+ "Person2": {
790
+ "PersonId": 4,
791
+ "DisplayName": "Kim Bullock",
792
+ "ClubId": 1,
793
+ "Images": [
794
+ {
795
+ "ImageId": 8,
796
+ "URL": "https://randomuser.me/api/portraits/women/9.jpg"
797
+ }
798
+ ],
799
+ "Club": {
800
+ "Name": "Acme Fencing Club"
801
+ }
802
+ }
803
+ },
804
+ {
805
+ "BoutId": 1841,
806
+ "PoolId": 138,
807
+ "EventId": 5,
808
+ "Person1Id": 22,
809
+ "Person2Id": 8,
810
+ "Status": "Scheduled",
811
+ "Score1": 0,
812
+ "Score2": 0,
813
+ "Started": null,
814
+ "Ended": null,
815
+ "TimerStatus": "stopped",
816
+ "TimeLeft": 0,
817
+ "RoundLabel": null,
818
+ "DEBoutId": null,
819
+ "DENextBoutId": null,
820
+ "RefereeId": null,
821
+ "createdAt": "2024-06-15T06:45:39.000Z",
822
+ "updatedAt": "2024-06-15T06:45:39.000Z",
823
+ "Person1": {
824
+ "PersonId": 22,
825
+ "DisplayName": "Bob Smith",
826
+ "ClubId": 6,
827
+ "Images": [
828
+ {
829
+ "ImageId": 12,
830
+ "URL": "https://randomuser.me/api/portraits/men/81.jpg"
831
+ }
832
+ ],
833
+ "Club": {
834
+ "Name": "SwordPlay Society",
835
+ "Color1": "red",
836
+ "Color2": "blue"
837
+ }
838
+ },
839
+ "Person2": {
840
+ "PersonId": 8,
841
+ "DisplayName": "Julie Riddle",
842
+ "ClubId": 2,
843
+ "Images": [],
844
+ "Club": {
845
+ "Name": "Historical Fencing Of Anywhere"
846
+ }
847
+ }
848
+ },
849
+ {
850
+ "BoutId": 1842,
851
+ "PoolId": 138,
852
+ "EventId": 5,
853
+ "Person1Id": 5,
854
+ "Person2Id": 2,
855
+ "Status": "Scheduled",
856
+ "Score1": 0,
857
+ "Score2": 0,
858
+ "Started": null,
859
+ "Ended": null,
860
+ "TimerStatus": "stopped",
861
+ "TimeLeft": 0,
862
+ "RoundLabel": null,
863
+ "DEBoutId": null,
864
+ "DENextBoutId": null,
865
+ "RefereeId": null,
866
+ "createdAt": "2024-06-15T06:45:39.000Z",
867
+ "updatedAt": "2024-06-15T06:45:39.000Z",
868
+ "Person1": {
869
+ "PersonId": 5,
870
+ "DisplayName": "Darlene Acevedo",
871
+ "ClubId": 9,
872
+ "Images": [],
873
+ "Club": {
874
+ "Name": "Cats Cutlass Club of Canton",
875
+ "Color1": "red",
876
+ "Color2": "blue"
877
+ }
878
+ },
879
+ "Person2": {
880
+ "PersonId": 2,
881
+ "DisplayName": "Kyle Edwards",
882
+ "ClubId": 6,
883
+ "Images": [],
884
+ "Club": {
885
+ "Name": "SwordPlay Society"
886
+ }
887
+ }
888
+ }
889
+ ]
890
+ }
891
+ ],
892
+ "eventRules": [
893
+ {
894
+ "RuleName": "PoolTime",
895
+ "RuleValue": "120",
896
+ "Context": "pool"
897
+ },
898
+ {
899
+ "RuleName": "PoolMaxPoints",
900
+ "RuleValue": "5",
901
+ "Context": "pool"
902
+ },
903
+ {
904
+ "RuleName": "DETime",
905
+ "RuleValue": "180",
906
+ "Context": "de"
907
+ },
908
+ {
909
+ "RuleName": "DEMaxPoints",
910
+ "RuleValue": "7",
911
+ "Context": "de"
912
+ },
913
+ {
914
+ "RuleName": "ThirdPlaceFenceOff",
915
+ "RuleValue": "1",
916
+ "Context": "general"
917
+ }
918
+ ],
919
+ "hostingClubColors": {
920
+ "Color1": "rose",
921
+ "Color2": "navy"
922
+ }
923
+ }
924
+
925
+
926
+ export default getPoolsWithBouts;