@dcrackel/hematournamentui 1.0.706 → 1.0.707

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