@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,931 +1,929 @@
1
-
2
- const getDEWithBouts15Fencers =
1
+ const getDEWithBouts15Fencers = {
2
+ message: 'DE Pool retrieved',
3
+ pools: [
3
4
  {
4
- "message": "DE Pool retrieved",
5
- "pools": [
6
- {
7
- "PoolId": 150,
8
- "Name": "Longsword A-DE",
9
- "RingName": "DE Bracket",
10
- "Flight": 1,
11
- "PoolType": "de",
12
- "EventId": 9,
13
- "Status": "live",
14
- "Updated": "2024-07-29T13:31:39.000Z",
15
- "Bouts": [
16
- {
17
- "TimerStatus": "stopped",
18
- "RefName": "Unassigned",
19
- "BoutId": 2339,
20
- "PoolId": 150,
21
- "EventId": 9,
22
- "Person1Id": 35,
23
- "Person2Id": 0,
24
- "Status": "Bye",
25
- "Score1": 0,
26
- "Score2": 0,
27
- "Started": null,
28
- "Ended": null,
29
- "TimeLeft": 0,
30
- "CurrentPass": 0,
31
- "MaxPasses": 0,
32
- "RoundLabel": "Table of 8",
33
- "DEBoutId": 1,
34
- "DENextBoutId": 9,
35
- "RefereeId": null,
36
- "createdAt": "2024-07-29T13:31:39.000Z",
37
- "updatedAt": "2024-07-29T13:31:42.000Z",
38
- "Person1": {
39
- "PersonId": 35,
40
- "DisplayName": "Branden Zipplinger",
41
- "ClubId": 10,
42
- "Images": [],
43
- "Club": {
44
- "Name": "Columbus United Fencing Club",
45
- "Color1": "rose",
46
- "Color2": "navy"
47
- },
48
- "EventPersons": [
49
- {
50
- "DEPosition": 1
51
- }
52
- ]
53
- },
54
- "Person2": {
55
- "PersonId": 0,
56
- "DisplayName": "BYE",
57
- "ClubId": 1,
58
- "Images": [],
59
- "Club": {
60
- "Name": "Acme Fencing Club"
61
- },
62
- "EventPersons": []
63
- },
64
- "Pool": {
65
- "RingName": "DE Bracket"
66
- }
67
- },
68
- {
69
- "TimerStatus": "stopped",
70
- "RefName": "Unassigned",
71
- "BoutId": 2340,
72
- "PoolId": 150,
73
- "EventId": 9,
74
- "Person1Id": 1,
75
- "Person2Id": 71,
76
- "Status": "Completed",
77
- "Score1": 7,
78
- "Score2": 5,
79
- "Started": "2024-07-29T13:32:00.000Z",
80
- "Ended": "2024-07-29T13:32:09.000Z",
81
- "TimeLeft": 90,
82
- "CurrentPass": 6,
83
- "MaxPasses": 7,
84
- "RoundLabel": "Table of 8",
85
- "DEBoutId": 2,
86
- "DENextBoutId": 9,
87
- "RefereeId": 1,
88
- "createdAt": "2024-07-29T13:31:39.000Z",
89
- "updatedAt": "2024-07-29T13:32:09.000Z",
90
- "Person1": {
91
- "PersonId": 1,
92
- "DisplayName": "Dwain Crackel",
93
- "ClubId": 10,
94
- "Images": [
95
- {
96
- "ImageId": 7,
97
- "URL": "https://randomuser.me/api/portraits/men/22.jpg"
98
- }
99
- ],
100
- "Club": {
101
- "Name": "Columbus United Fencing Club",
102
- "Color1": "rose",
103
- "Color2": "navy"
104
- },
105
- "EventPersons": [
106
- {
107
- "DEPosition": 9
108
- }
109
- ]
110
- },
111
- "Person2": {
112
- "PersonId": 71,
113
- "DisplayName": "Tom Kesler",
114
- "ClubId": 12,
115
- "Images": [],
116
- "Club": {
117
- "Name": "Gem City Duelists Society"
118
- },
119
- "EventPersons": [
120
- {
121
- "DEPosition": 8
122
- }
123
- ]
124
- },
125
- "Pool": {
126
- "RingName": "DE Bracket"
127
- }
128
- },
129
- {
130
- "TimerStatus": "stopped",
131
- "RefName": "Unassigned",
132
- "BoutId": 2341,
133
- "PoolId": 150,
134
- "EventId": 9,
135
- "Person1Id": 32,
136
- "Person2Id": 52,
137
- "Status": "Completed",
138
- "Score1": 7,
139
- "Score2": 3,
140
- "Started": "2024-07-29T13:32:12.000Z",
141
- "Ended": "2024-07-29T13:32:20.000Z",
142
- "TimeLeft": 90,
143
- "CurrentPass": 6,
144
- "MaxPasses": 7,
145
- "RoundLabel": "Table of 8",
146
- "DEBoutId": 3,
147
- "DENextBoutId": 10,
148
- "RefereeId": 1,
149
- "createdAt": "2024-07-29T13:31:39.000Z",
150
- "updatedAt": "2024-07-29T13:32:20.000Z",
151
- "Person1": {
152
- "PersonId": 32,
153
- "DisplayName": "AJ Trefney",
154
- "ClubId": 13,
155
- "Images": [],
156
- "Club": {
157
- "Name": "Two Ravens Fencing School",
158
- "Color1": "red",
159
- "Color2": "blue"
160
- },
161
- "EventPersons": [
162
- {
163
- "DEPosition": 5
164
- }
165
- ]
166
- },
167
- "Person2": {
168
- "PersonId": 52,
169
- "DisplayName": "John Osborn",
170
- "ClubId": 10,
171
- "Images": [],
172
- "Club": {
173
- "Name": "Columbus United Fencing Club"
174
- },
175
- "EventPersons": [
176
- {
177
- "DEPosition": 12
178
- }
179
- ]
180
- },
181
- "Pool": {
182
- "RingName": "DE Bracket"
183
- }
184
- },
185
- {
186
- "TimerStatus": "stopped",
187
- "RefName": "Unassigned",
188
- "BoutId": 2342,
189
- "PoolId": 150,
190
- "EventId": 9,
191
- "Person1Id": 73,
192
- "Person2Id": 69,
193
- "Status": "Completed",
194
- "Score1": 1,
195
- "Score2": 7,
196
- "Started": "2024-07-29T13:32:24.000Z",
197
- "Ended": "2024-07-29T13:32:32.000Z",
198
- "TimeLeft": 90,
199
- "CurrentPass": 6,
200
- "MaxPasses": 7,
201
- "RoundLabel": "Table of 8",
202
- "DEBoutId": 4,
203
- "DENextBoutId": 10,
204
- "RefereeId": 1,
205
- "createdAt": "2024-07-29T13:31:39.000Z",
206
- "updatedAt": "2024-07-29T13:32:32.000Z",
207
- "Person1": {
208
- "PersonId": 73,
209
- "DisplayName": "Victor Marchetto",
210
- "ClubId": 13,
211
- "Images": [],
212
- "Club": {
213
- "Name": "Two Ravens Fencing School",
214
- "Color1": "red",
215
- "Color2": "blue"
216
- },
217
- "EventPersons": [
218
- {
219
- "DEPosition": 13
220
- }
221
- ]
222
- },
223
- "Person2": {
224
- "PersonId": 69,
225
- "DisplayName": "Sam Ryals",
226
- "ClubId": 12,
227
- "Images": [],
228
- "Club": {
229
- "Name": "Gem City Duelists Society"
230
- },
231
- "EventPersons": [
232
- {
233
- "DEPosition": 4
234
- }
235
- ]
236
- },
237
- "Pool": {
238
- "RingName": "DE Bracket"
239
- }
240
- },
241
- {
242
- "TimerStatus": "stopped",
243
- "RefName": "Unassigned",
244
- "BoutId": 2343,
245
- "PoolId": 150,
246
- "EventId": 9,
247
- "Person1Id": 43,
248
- "Person2Id": 65,
249
- "Status": "Completed",
250
- "Score1": 7,
251
- "Score2": 1,
252
- "Started": "2024-07-29T13:32:58.000Z",
253
- "Ended": "2024-07-29T13:33:21.000Z",
254
- "TimeLeft": 90,
255
- "CurrentPass": 6,
256
- "MaxPasses": 7,
257
- "RoundLabel": "Table of 8",
258
- "DEBoutId": 5,
259
- "DENextBoutId": 11,
260
- "RefereeId": 1,
261
- "createdAt": "2024-07-29T13:31:39.000Z",
262
- "updatedAt": "2024-07-29T13:33:21.000Z",
263
- "Person1": {
264
- "PersonId": 43,
265
- "DisplayName": "Derek Rey",
266
- "ClubId": 10,
267
- "Images": [],
268
- "Club": {
269
- "Name": "Columbus United Fencing Club",
270
- "Color1": "rose",
271
- "Color2": "navy"
272
- },
273
- "EventPersons": [
274
- {
275
- "DEPosition": 3
276
- }
277
- ]
278
- },
279
- "Person2": {
280
- "PersonId": 65,
281
- "DisplayName": "Nick Mills",
282
- "ClubId": 11,
283
- "Images": [],
284
- "Club": {
285
- "Name": "Queen City Sword Guild"
286
- },
287
- "EventPersons": [
288
- {
289
- "DEPosition": 14
290
- }
291
- ]
292
- },
293
- "Pool": {
294
- "RingName": "DE Bracket"
295
- }
296
- },
297
- {
298
- "TimerStatus": "stopped",
299
- "RefName": "Unassigned",
300
- "BoutId": 2344,
301
- "PoolId": 150,
302
- "EventId": 9,
303
- "Person1Id": 33,
304
- "Person2Id": 62,
305
- "Status": "Completed",
306
- "Score1": 3,
307
- "Score2": 7,
308
- "Started": "2024-07-29T13:32:35.000Z",
309
- "Ended": "2024-07-29T13:33:16.000Z",
310
- "TimeLeft": 90,
311
- "CurrentPass": 6,
312
- "MaxPasses": 7,
313
- "RoundLabel": "Table of 8",
314
- "DEBoutId": 6,
315
- "DENextBoutId": 11,
316
- "RefereeId": 1,
317
- "createdAt": "2024-07-29T13:31:39.000Z",
318
- "updatedAt": "2024-07-29T13:33:16.000Z",
319
- "Person1": {
320
- "PersonId": 33,
321
- "DisplayName": "Alec Willette",
322
- "ClubId": 13,
323
- "Images": [],
324
- "Club": {
325
- "Name": "Two Ravens Fencing School",
326
- "Color1": "red",
327
- "Color2": "blue"
328
- },
329
- "EventPersons": [
330
- {
331
- "DEPosition": 11
332
- }
333
- ]
334
- },
335
- "Person2": {
336
- "PersonId": 62,
337
- "DisplayName": "Matthew Dicken",
338
- "ClubId": 10,
339
- "Images": [],
340
- "Club": {
341
- "Name": "Columbus United Fencing Club"
342
- },
343
- "EventPersons": [
344
- {
345
- "DEPosition": 6
346
- }
347
- ]
348
- },
349
- "Pool": {
350
- "RingName": "DE Bracket"
351
- }
352
- },
353
- {
354
- "TimerStatus": "stopped",
355
- "RefName": "Unassigned",
356
- "BoutId": 2345,
357
- "PoolId": 150,
358
- "EventId": 9,
359
- "Person1Id": 44,
360
- "Person2Id": 38,
361
- "Status": "Scheduled",
362
- "Score1": 0,
363
- "Score2": 0,
364
- "Started": null,
365
- "Ended": null,
366
- "TimeLeft": 0,
367
- "CurrentPass": 0,
368
- "MaxPasses": 0,
369
- "RoundLabel": "Table of 8",
370
- "DEBoutId": 7,
371
- "DENextBoutId": 12,
372
- "RefereeId": null,
373
- "createdAt": "2024-07-29T13:31:39.000Z",
374
- "updatedAt": "2024-07-29T13:31:39.000Z",
375
- "Person1": {
376
- "PersonId": 44,
377
- "DisplayName": "Ehtan Adkins",
378
- "ClubId": 11,
379
- "Images": [],
380
- "Club": {
381
- "Name": "Queen City Sword Guild",
382
- "Color1": "blue",
383
- "Color2": "silver"
384
- },
385
- "EventPersons": [
386
- {
387
- "DEPosition": 7
388
- }
389
- ]
390
- },
391
- "Person2": {
392
- "PersonId": 38,
393
- "DisplayName": "Chris Yang",
394
- "ClubId": 16,
395
- "Images": [],
396
- "Club": {
397
- "Name": "Cymbrogi School of Western Martial Arts"
398
- },
399
- "EventPersons": [
400
- {
401
- "DEPosition": 10
402
- }
403
- ]
404
- },
405
- "Pool": {
406
- "RingName": "DE Bracket"
407
- }
408
- },
409
- {
410
- "TimerStatus": "stopped",
411
- "RefName": "Unassigned",
412
- "BoutId": 2346,
413
- "PoolId": 150,
414
- "EventId": 9,
415
- "Person1Id": 41,
416
- "Person2Id": 39,
417
- "Status": "Scheduled",
418
- "Score1": 0,
419
- "Score2": 0,
420
- "Started": null,
421
- "Ended": null,
422
- "TimeLeft": 0,
423
- "CurrentPass": 0,
424
- "MaxPasses": 0,
425
- "RoundLabel": "Table of 8",
426
- "DEBoutId": 8,
427
- "DENextBoutId": 12,
428
- "RefereeId": null,
429
- "createdAt": "2024-07-29T13:31:39.000Z",
430
- "updatedAt": "2024-07-29T13:31:39.000Z",
431
- "Person1": {
432
- "PersonId": 41,
433
- "DisplayName": "David Reddy",
434
- "ClubId": 12,
435
- "Images": [],
436
- "Club": {
437
- "Name": "Gem City Duelists Society",
438
- "Color1": "green",
439
- "Color2": "black"
440
- },
441
- "EventPersons": [
442
- {
443
- "DEPosition": 15
444
- }
445
- ]
446
- },
447
- "Person2": {
448
- "PersonId": 39,
449
- "DisplayName": "Colin McConnel",
450
- "ClubId": 13,
451
- "Images": [],
452
- "Club": {
453
- "Name": "Two Ravens Fencing School"
454
- },
455
- "EventPersons": [
456
- {
457
- "DEPosition": 2
458
- }
459
- ]
460
- },
461
- "Pool": {
462
- "RingName": "DE Bracket"
463
- }
464
- },
465
- {
466
- "TimerStatus": "stopped",
467
- "RefName": "Unassigned",
468
- "BoutId": 2347,
469
- "PoolId": 150,
470
- "EventId": 9,
471
- "Person1Id": 35,
472
- "Person2Id": 1,
473
- "Status": "Scheduled",
474
- "Score1": 0,
475
- "Score2": 0,
476
- "Started": null,
477
- "Ended": null,
478
- "TimeLeft": 0,
479
- "CurrentPass": 0,
480
- "MaxPasses": 0,
481
- "RoundLabel": "Table of 8",
482
- "DEBoutId": 9,
483
- "DENextBoutId": 13,
484
- "RefereeId": null,
485
- "createdAt": "2024-07-29T13:31:39.000Z",
486
- "updatedAt": "2024-07-29T13:32:10.000Z",
487
- "Person1": {
488
- "PersonId": 35,
489
- "DisplayName": "Branden Zipplinger",
490
- "ClubId": 10,
491
- "Images": [],
492
- "Club": {
493
- "Name": "Columbus United Fencing Club",
494
- "Color1": "rose",
495
- "Color2": "navy"
496
- },
497
- "EventPersons": [
498
- {
499
- "DEPosition": 1
500
- }
501
- ]
502
- },
503
- "Person2": {
504
- "PersonId": 1,
505
- "DisplayName": "Dwain Crackel",
506
- "ClubId": 10,
507
- "Images": [
508
- {
509
- "ImageId": 7,
510
- "URL": "https://randomuser.me/api/portraits/men/22.jpg"
511
- }
512
- ],
513
- "Club": {
514
- "Name": "Columbus United Fencing Club"
515
- },
516
- "EventPersons": [
517
- {
518
- "DEPosition": 9
519
- }
520
- ]
521
- },
522
- "Pool": {
523
- "RingName": "DE Bracket"
524
- }
525
- },
526
- {
527
- "TimerStatus": "stopped",
528
- "RefName": "Unassigned",
529
- "BoutId": 2348,
530
- "PoolId": 150,
531
- "EventId": 9,
532
- "Person1Id": 32,
533
- "Person2Id": 69,
534
- "Status": "Scheduled",
535
- "Score1": 0,
536
- "Score2": 0,
537
- "Started": null,
538
- "Ended": null,
539
- "TimeLeft": 0,
540
- "CurrentPass": 0,
541
- "MaxPasses": 0,
542
- "RoundLabel": "Table of 8",
543
- "DEBoutId": 10,
544
- "DENextBoutId": 13,
545
- "RefereeId": null,
546
- "createdAt": "2024-07-29T13:31:39.000Z",
547
- "updatedAt": "2024-07-29T13:32:33.000Z",
548
- "Person1": {
549
- "PersonId": 32,
550
- "DisplayName": "AJ Trefney",
551
- "ClubId": 13,
552
- "Images": [],
553
- "Club": {
554
- "Name": "Two Ravens Fencing School",
555
- "Color1": "red",
556
- "Color2": "blue"
557
- },
558
- "EventPersons": [
559
- {
560
- "DEPosition": 5
561
- }
562
- ]
563
- },
564
- "Person2": {
565
- "PersonId": 69,
566
- "DisplayName": "Sam Ryals",
567
- "ClubId": 12,
568
- "Images": [],
569
- "Club": {
570
- "Name": "Gem City Duelists Society"
571
- },
572
- "EventPersons": [
573
- {
574
- "DEPosition": 4
575
- }
576
- ]
577
- },
578
- "Pool": {
579
- "RingName": "DE Bracket"
580
- }
581
- },
582
- {
583
- "TimerStatus": "stopped",
584
- "RefName": "Unassigned",
585
- "BoutId": 2349,
586
- "PoolId": 150,
587
- "EventId": 9,
588
- "Person1Id": 62,
589
- "Person2Id": 43,
590
- "Status": "Scheduled",
591
- "Score1": 0,
592
- "Score2": 0,
593
- "Started": null,
594
- "Ended": null,
595
- "TimeLeft": 0,
596
- "CurrentPass": 0,
597
- "MaxPasses": 0,
598
- "RoundLabel": "Table of 8",
599
- "DEBoutId": 11,
600
- "DENextBoutId": 14,
601
- "RefereeId": null,
602
- "createdAt": "2024-07-29T13:31:39.000Z",
603
- "updatedAt": "2024-07-29T13:33:21.000Z",
604
- "Person1": {
605
- "PersonId": 62,
606
- "DisplayName": "Matthew Dicken",
607
- "ClubId": 10,
608
- "Images": [],
609
- "Club": {
610
- "Name": "Columbus United Fencing Club",
611
- "Color1": "rose",
612
- "Color2": "navy"
613
- },
614
- "EventPersons": [
615
- {
616
- "DEPosition": 6
617
- }
618
- ]
619
- },
620
- "Person2": {
621
- "PersonId": 43,
622
- "DisplayName": "Derek Rey",
623
- "ClubId": 10,
624
- "Images": [],
625
- "Club": {
626
- "Name": "Columbus United Fencing Club"
627
- },
628
- "EventPersons": [
629
- {
630
- "DEPosition": 3
631
- }
632
- ]
633
- },
634
- "Pool": {
635
- "RingName": "DE Bracket"
636
- }
637
- },
638
- {
639
- "TimerStatus": "stopped",
640
- "RefName": "Unassigned",
641
- "BoutId": 2350,
642
- "PoolId": 150,
643
- "EventId": 9,
644
- "Person1Id": 0,
645
- "Person2Id": 0,
646
- "Status": "Scheduled",
647
- "Score1": 0,
648
- "Score2": 0,
649
- "Started": null,
650
- "Ended": null,
651
- "TimeLeft": 0,
652
- "CurrentPass": 0,
653
- "MaxPasses": 0,
654
- "RoundLabel": "Table of 8",
655
- "DEBoutId": 12,
656
- "DENextBoutId": 14,
657
- "RefereeId": null,
658
- "createdAt": "2024-07-29T13:31:39.000Z",
659
- "updatedAt": "2024-07-29T13:31:39.000Z",
660
- "Person1": {
661
- "PersonId": 0,
662
- "DisplayName": "BYE",
663
- "ClubId": 1,
664
- "Images": [],
665
- "Club": {
666
- "Name": "Acme Fencing Club",
667
- "Color1": "rose",
668
- "Color2": "navy"
669
- },
670
- "EventPersons": []
671
- },
672
- "Person2": {
673
- "PersonId": 0,
674
- "DisplayName": "BYE",
675
- "ClubId": 1,
676
- "Images": [],
677
- "Club": {
678
- "Name": "Acme Fencing Club"
679
- },
680
- "EventPersons": []
681
- },
682
- "Pool": {
683
- "RingName": "DE Bracket"
684
- }
685
- },
686
- {
687
- "TimerStatus": "stopped",
688
- "RefName": "Unassigned",
689
- "BoutId": 2351,
690
- "PoolId": 150,
691
- "EventId": 9,
692
- "Person1Id": 0,
693
- "Person2Id": 0,
694
- "Status": "Scheduled",
695
- "Score1": 0,
696
- "Score2": 0,
697
- "Started": null,
698
- "Ended": null,
699
- "TimeLeft": 0,
700
- "CurrentPass": 0,
701
- "MaxPasses": 0,
702
- "RoundLabel": "Semifinal",
703
- "DEBoutId": 13,
704
- "DENextBoutId": 15,
705
- "RefereeId": null,
706
- "createdAt": "2024-07-29T13:31:39.000Z",
707
- "updatedAt": "2024-07-29T13:31:39.000Z",
708
- "Person1": {
709
- "PersonId": 0,
710
- "DisplayName": "BYE",
711
- "ClubId": 1,
712
- "Images": [],
713
- "Club": {
714
- "Name": "Acme Fencing Club",
715
- "Color1": "rose",
716
- "Color2": "navy"
717
- },
718
- "EventPersons": []
719
- },
720
- "Person2": {
721
- "PersonId": 0,
722
- "DisplayName": "BYE",
723
- "ClubId": 1,
724
- "Images": [],
725
- "Club": {
726
- "Name": "Acme Fencing Club"
727
- },
728
- "EventPersons": []
729
- },
730
- "Pool": {
731
- "RingName": "DE Bracket"
732
- }
733
- },
734
- {
735
- "TimerStatus": "stopped",
736
- "RefName": "Unassigned",
737
- "BoutId": 2352,
738
- "PoolId": 150,
739
- "EventId": 9,
740
- "Person1Id": 0,
741
- "Person2Id": 0,
742
- "Status": "Scheduled",
743
- "Score1": 0,
744
- "Score2": 0,
745
- "Started": null,
746
- "Ended": null,
747
- "TimeLeft": 0,
748
- "CurrentPass": 0,
749
- "MaxPasses": 0,
750
- "RoundLabel": "Semifinal",
751
- "DEBoutId": 14,
752
- "DENextBoutId": 15,
753
- "RefereeId": null,
754
- "createdAt": "2024-07-29T13:31:39.000Z",
755
- "updatedAt": "2024-07-29T13:31:39.000Z",
756
- "Person1": {
757
- "PersonId": 0,
758
- "DisplayName": "BYE",
759
- "ClubId": 1,
760
- "Images": [],
761
- "Club": {
762
- "Name": "Acme Fencing Club",
763
- "Color1": "rose",
764
- "Color2": "navy"
765
- },
766
- "EventPersons": []
767
- },
768
- "Person2": {
769
- "PersonId": 0,
770
- "DisplayName": "BYE",
771
- "ClubId": 1,
772
- "Images": [],
773
- "Club": {
774
- "Name": "Acme Fencing Club"
775
- },
776
- "EventPersons": []
777
- },
778
- "Pool": {
779
- "RingName": "DE Bracket"
780
- }
781
- },
782
- {
783
- "TimerStatus": "stopped",
784
- "RefName": "Unassigned",
785
- "BoutId": 2353,
786
- "PoolId": 150,
787
- "EventId": 9,
788
- "Person1Id": 0,
789
- "Person2Id": 0,
790
- "Status": "Scheduled",
791
- "Score1": 0,
792
- "Score2": 0,
793
- "Started": null,
794
- "Ended": null,
795
- "TimeLeft": 0,
796
- "CurrentPass": 0,
797
- "MaxPasses": 0,
798
- "RoundLabel": "Final",
799
- "DEBoutId": 15,
800
- "DENextBoutId": null,
801
- "RefereeId": null,
802
- "createdAt": "2024-07-29T13:31:39.000Z",
803
- "updatedAt": "2024-07-29T13:31:39.000Z",
804
- "Person1": {
805
- "PersonId": 0,
806
- "DisplayName": "BYE",
807
- "ClubId": 1,
808
- "Images": [],
809
- "Club": {
810
- "Name": "Acme Fencing Club",
811
- "Color1": "rose",
812
- "Color2": "navy"
813
- },
814
- "EventPersons": []
815
- },
816
- "Person2": {
817
- "PersonId": 0,
818
- "DisplayName": "BYE",
819
- "ClubId": 1,
820
- "Images": [],
821
- "Club": {
822
- "Name": "Acme Fencing Club"
823
- },
824
- "EventPersons": []
825
- },
826
- "Pool": {
827
- "RingName": "DE Bracket"
828
- }
829
- },
830
- {
831
- "TimerStatus": "stopped",
832
- "RefName": "Unassigned",
833
- "BoutId": 2354,
834
- "PoolId": 150,
835
- "EventId": 9,
836
- "Person1Id": 0,
837
- "Person2Id": 0,
838
- "Status": "Scheduled",
839
- "Score1": 0,
840
- "Score2": 0,
841
- "Started": null,
842
- "Ended": null,
843
- "TimeLeft": 0,
844
- "CurrentPass": 0,
845
- "MaxPasses": 0,
846
- "RoundLabel": "Third Place",
847
- "DEBoutId": 16,
848
- "DENextBoutId": null,
849
- "RefereeId": null,
850
- "createdAt": "2024-07-29T13:31:43.000Z",
851
- "updatedAt": "2024-07-29T13:31:43.000Z",
852
- "Person1": {
853
- "PersonId": 0,
854
- "DisplayName": "BYE",
855
- "ClubId": 1,
856
- "Images": [],
857
- "Club": {
858
- "Name": "Acme Fencing Club",
859
- "Color1": "rose",
860
- "Color2": "navy"
861
- },
862
- "EventPersons": []
863
- },
864
- "Person2": {
865
- "PersonId": 0,
866
- "DisplayName": "BYE",
867
- "ClubId": 1,
868
- "Images": [],
869
- "Club": {
870
- "Name": "Acme Fencing Club"
871
- },
872
- "EventPersons": []
873
- },
874
- "Pool": {
875
- "RingName": "DE Bracket"
876
- }
877
- }
878
- ]
879
- }
880
- ],
881
- "eventRules": [
882
- {
883
- "RuleId": 5,
884
- "RuleName": "DE3rdFenceOff",
885
- "RuleValue": "true",
886
- "Context": "de"
887
- },
888
- {
889
- "RuleId": 6,
890
- "RuleName": "PoolNumOfPasses",
891
- "RuleValue": "7",
892
- "Context": "pool"
893
- },
894
- {
895
- "RuleId": 7,
896
- "RuleName": "DENumOfPasses",
897
- "RuleValue": "7",
898
- "Context": "de"
899
- },
900
- {
901
- "RuleId": 9,
902
- "RuleName": "DEPromotionOrder",
903
- "RuleValue": "W%,IND,TS",
904
- "Context": "de"
905
- },
906
- {
907
- "RuleId": 10,
908
- "RuleName": "DENumOfPromotion",
909
- "RuleValue": "100%",
910
- "Context": "de"
911
- },
912
- {
913
- "RuleId": 11,
914
- "RuleName": "PoolSeeding",
915
- "RuleValue": "HR",
916
- "Context": "pool"
917
- },
918
- {
919
- "RuleId": 14,
920
- "RuleName": "CutOffNumber",
921
- "RuleValue": "32",
922
- "Context": "event"
923
- }
924
- ],
925
- "hostingClubColors": {
926
- "Color1": "blue",
927
- "Color2": "silver"
5
+ PoolId: 150,
6
+ Name: 'Longsword A-DE',
7
+ RingName: 'DE Bracket',
8
+ Flight: 1,
9
+ PoolType: 'de',
10
+ EventId: 9,
11
+ Status: 'live',
12
+ Updated: '2024-07-29T13:31:39.000Z',
13
+ Bouts: [
14
+ {
15
+ TimerStatus: 'stopped',
16
+ RefName: 'Unassigned',
17
+ BoutId: 2339,
18
+ PoolId: 150,
19
+ EventId: 9,
20
+ Person1Id: 35,
21
+ Person2Id: 0,
22
+ Status: 'Bye',
23
+ Score1: 0,
24
+ Score2: 0,
25
+ Started: null,
26
+ Ended: null,
27
+ TimeLeft: 0,
28
+ CurrentPass: 0,
29
+ MaxPasses: 0,
30
+ RoundLabel: 'Table of 8',
31
+ DEBoutId: 1,
32
+ DENextBoutId: 9,
33
+ RefereeId: null,
34
+ createdAt: '2024-07-29T13:31:39.000Z',
35
+ updatedAt: '2024-07-29T13:31:42.000Z',
36
+ Person1: {
37
+ PersonId: 35,
38
+ DisplayName: 'Branden Zipplinger',
39
+ ClubId: 10,
40
+ Images: [],
41
+ Club: {
42
+ Name: 'Columbus United Fencing Club',
43
+ Color1: 'rose',
44
+ Color2: 'navy'
45
+ },
46
+ EventPersons: [
47
+ {
48
+ DEPosition: 1
49
+ }
50
+ ]
51
+ },
52
+ Person2: {
53
+ PersonId: 0,
54
+ DisplayName: 'BYE',
55
+ ClubId: 1,
56
+ Images: [],
57
+ Club: {
58
+ Name: 'Acme Fencing Club'
59
+ },
60
+ EventPersons: []
61
+ },
62
+ Pool: {
63
+ RingName: 'DE Bracket'
64
+ }
65
+ },
66
+ {
67
+ TimerStatus: 'stopped',
68
+ RefName: 'Unassigned',
69
+ BoutId: 2340,
70
+ PoolId: 150,
71
+ EventId: 9,
72
+ Person1Id: 1,
73
+ Person2Id: 71,
74
+ Status: 'Completed',
75
+ Score1: 7,
76
+ Score2: 5,
77
+ Started: '2024-07-29T13:32:00.000Z',
78
+ Ended: '2024-07-29T13:32:09.000Z',
79
+ TimeLeft: 90,
80
+ CurrentPass: 6,
81
+ MaxPasses: 7,
82
+ RoundLabel: 'Table of 8',
83
+ DEBoutId: 2,
84
+ DENextBoutId: 9,
85
+ RefereeId: 1,
86
+ createdAt: '2024-07-29T13:31:39.000Z',
87
+ updatedAt: '2024-07-29T13:32:09.000Z',
88
+ Person1: {
89
+ PersonId: 1,
90
+ DisplayName: 'Dwain Crackel',
91
+ ClubId: 10,
92
+ Images: [
93
+ {
94
+ ImageId: 7,
95
+ URL: 'https://randomuser.me/api/portraits/men/22.jpg'
96
+ }
97
+ ],
98
+ Club: {
99
+ Name: 'Columbus United Fencing Club',
100
+ Color1: 'rose',
101
+ Color2: 'navy'
102
+ },
103
+ EventPersons: [
104
+ {
105
+ DEPosition: 9
106
+ }
107
+ ]
108
+ },
109
+ Person2: {
110
+ PersonId: 71,
111
+ DisplayName: 'Tom Kesler',
112
+ ClubId: 12,
113
+ Images: [],
114
+ Club: {
115
+ Name: 'Gem City Duelists Society'
116
+ },
117
+ EventPersons: [
118
+ {
119
+ DEPosition: 8
120
+ }
121
+ ]
122
+ },
123
+ Pool: {
124
+ RingName: 'DE Bracket'
125
+ }
126
+ },
127
+ {
128
+ TimerStatus: 'stopped',
129
+ RefName: 'Unassigned',
130
+ BoutId: 2341,
131
+ PoolId: 150,
132
+ EventId: 9,
133
+ Person1Id: 32,
134
+ Person2Id: 52,
135
+ Status: 'Completed',
136
+ Score1: 7,
137
+ Score2: 3,
138
+ Started: '2024-07-29T13:32:12.000Z',
139
+ Ended: '2024-07-29T13:32:20.000Z',
140
+ TimeLeft: 90,
141
+ CurrentPass: 6,
142
+ MaxPasses: 7,
143
+ RoundLabel: 'Table of 8',
144
+ DEBoutId: 3,
145
+ DENextBoutId: 10,
146
+ RefereeId: 1,
147
+ createdAt: '2024-07-29T13:31:39.000Z',
148
+ updatedAt: '2024-07-29T13:32:20.000Z',
149
+ Person1: {
150
+ PersonId: 32,
151
+ DisplayName: 'AJ Trefney',
152
+ ClubId: 13,
153
+ Images: [],
154
+ Club: {
155
+ Name: 'Two Ravens Fencing School',
156
+ Color1: 'red',
157
+ Color2: 'blue'
158
+ },
159
+ EventPersons: [
160
+ {
161
+ DEPosition: 5
162
+ }
163
+ ]
164
+ },
165
+ Person2: {
166
+ PersonId: 52,
167
+ DisplayName: 'John Osborn',
168
+ ClubId: 10,
169
+ Images: [],
170
+ Club: {
171
+ Name: 'Columbus United Fencing Club'
172
+ },
173
+ EventPersons: [
174
+ {
175
+ DEPosition: 12
176
+ }
177
+ ]
178
+ },
179
+ Pool: {
180
+ RingName: 'DE Bracket'
181
+ }
182
+ },
183
+ {
184
+ TimerStatus: 'stopped',
185
+ RefName: 'Unassigned',
186
+ BoutId: 2342,
187
+ PoolId: 150,
188
+ EventId: 9,
189
+ Person1Id: 73,
190
+ Person2Id: 69,
191
+ Status: 'Completed',
192
+ Score1: 1,
193
+ Score2: 7,
194
+ Started: '2024-07-29T13:32:24.000Z',
195
+ Ended: '2024-07-29T13:32:32.000Z',
196
+ TimeLeft: 90,
197
+ CurrentPass: 6,
198
+ MaxPasses: 7,
199
+ RoundLabel: 'Table of 8',
200
+ DEBoutId: 4,
201
+ DENextBoutId: 10,
202
+ RefereeId: 1,
203
+ createdAt: '2024-07-29T13:31:39.000Z',
204
+ updatedAt: '2024-07-29T13:32:32.000Z',
205
+ Person1: {
206
+ PersonId: 73,
207
+ DisplayName: 'Victor Marchetto',
208
+ ClubId: 13,
209
+ Images: [],
210
+ Club: {
211
+ Name: 'Two Ravens Fencing School',
212
+ Color1: 'red',
213
+ Color2: 'blue'
214
+ },
215
+ EventPersons: [
216
+ {
217
+ DEPosition: 13
218
+ }
219
+ ]
220
+ },
221
+ Person2: {
222
+ PersonId: 69,
223
+ DisplayName: 'Sam Ryals',
224
+ ClubId: 12,
225
+ Images: [],
226
+ Club: {
227
+ Name: 'Gem City Duelists Society'
228
+ },
229
+ EventPersons: [
230
+ {
231
+ DEPosition: 4
232
+ }
233
+ ]
234
+ },
235
+ Pool: {
236
+ RingName: 'DE Bracket'
237
+ }
238
+ },
239
+ {
240
+ TimerStatus: 'stopped',
241
+ RefName: 'Unassigned',
242
+ BoutId: 2343,
243
+ PoolId: 150,
244
+ EventId: 9,
245
+ Person1Id: 43,
246
+ Person2Id: 65,
247
+ Status: 'Completed',
248
+ Score1: 7,
249
+ Score2: 1,
250
+ Started: '2024-07-29T13:32:58.000Z',
251
+ Ended: '2024-07-29T13:33:21.000Z',
252
+ TimeLeft: 90,
253
+ CurrentPass: 6,
254
+ MaxPasses: 7,
255
+ RoundLabel: 'Table of 8',
256
+ DEBoutId: 5,
257
+ DENextBoutId: 11,
258
+ RefereeId: 1,
259
+ createdAt: '2024-07-29T13:31:39.000Z',
260
+ updatedAt: '2024-07-29T13:33:21.000Z',
261
+ Person1: {
262
+ PersonId: 43,
263
+ DisplayName: 'Derek Rey',
264
+ ClubId: 10,
265
+ Images: [],
266
+ Club: {
267
+ Name: 'Columbus United Fencing Club',
268
+ Color1: 'rose',
269
+ Color2: 'navy'
270
+ },
271
+ EventPersons: [
272
+ {
273
+ DEPosition: 3
274
+ }
275
+ ]
276
+ },
277
+ Person2: {
278
+ PersonId: 65,
279
+ DisplayName: 'Nick Mills',
280
+ ClubId: 11,
281
+ Images: [],
282
+ Club: {
283
+ Name: 'Queen City Sword Guild'
284
+ },
285
+ EventPersons: [
286
+ {
287
+ DEPosition: 14
288
+ }
289
+ ]
290
+ },
291
+ Pool: {
292
+ RingName: 'DE Bracket'
293
+ }
294
+ },
295
+ {
296
+ TimerStatus: 'stopped',
297
+ RefName: 'Unassigned',
298
+ BoutId: 2344,
299
+ PoolId: 150,
300
+ EventId: 9,
301
+ Person1Id: 33,
302
+ Person2Id: 62,
303
+ Status: 'Completed',
304
+ Score1: 3,
305
+ Score2: 7,
306
+ Started: '2024-07-29T13:32:35.000Z',
307
+ Ended: '2024-07-29T13:33:16.000Z',
308
+ TimeLeft: 90,
309
+ CurrentPass: 6,
310
+ MaxPasses: 7,
311
+ RoundLabel: 'Table of 8',
312
+ DEBoutId: 6,
313
+ DENextBoutId: 11,
314
+ RefereeId: 1,
315
+ createdAt: '2024-07-29T13:31:39.000Z',
316
+ updatedAt: '2024-07-29T13:33:16.000Z',
317
+ Person1: {
318
+ PersonId: 33,
319
+ DisplayName: 'Alec Willette',
320
+ ClubId: 13,
321
+ Images: [],
322
+ Club: {
323
+ Name: 'Two Ravens Fencing School',
324
+ Color1: 'red',
325
+ Color2: 'blue'
326
+ },
327
+ EventPersons: [
328
+ {
329
+ DEPosition: 11
330
+ }
331
+ ]
332
+ },
333
+ Person2: {
334
+ PersonId: 62,
335
+ DisplayName: 'Matthew Dicken',
336
+ ClubId: 10,
337
+ Images: [],
338
+ Club: {
339
+ Name: 'Columbus United Fencing Club'
340
+ },
341
+ EventPersons: [
342
+ {
343
+ DEPosition: 6
344
+ }
345
+ ]
346
+ },
347
+ Pool: {
348
+ RingName: 'DE Bracket'
349
+ }
350
+ },
351
+ {
352
+ TimerStatus: 'stopped',
353
+ RefName: 'Unassigned',
354
+ BoutId: 2345,
355
+ PoolId: 150,
356
+ EventId: 9,
357
+ Person1Id: 44,
358
+ Person2Id: 38,
359
+ Status: 'Scheduled',
360
+ Score1: 0,
361
+ Score2: 0,
362
+ Started: null,
363
+ Ended: null,
364
+ TimeLeft: 0,
365
+ CurrentPass: 0,
366
+ MaxPasses: 0,
367
+ RoundLabel: 'Table of 8',
368
+ DEBoutId: 7,
369
+ DENextBoutId: 12,
370
+ RefereeId: null,
371
+ createdAt: '2024-07-29T13:31:39.000Z',
372
+ updatedAt: '2024-07-29T13:31:39.000Z',
373
+ Person1: {
374
+ PersonId: 44,
375
+ DisplayName: 'Ehtan Adkins',
376
+ ClubId: 11,
377
+ Images: [],
378
+ Club: {
379
+ Name: 'Queen City Sword Guild',
380
+ Color1: 'blue',
381
+ Color2: 'silver'
382
+ },
383
+ EventPersons: [
384
+ {
385
+ DEPosition: 7
386
+ }
387
+ ]
388
+ },
389
+ Person2: {
390
+ PersonId: 38,
391
+ DisplayName: 'Chris Yang',
392
+ ClubId: 16,
393
+ Images: [],
394
+ Club: {
395
+ Name: 'Cymbrogi School of Western Martial Arts'
396
+ },
397
+ EventPersons: [
398
+ {
399
+ DEPosition: 10
400
+ }
401
+ ]
402
+ },
403
+ Pool: {
404
+ RingName: 'DE Bracket'
405
+ }
406
+ },
407
+ {
408
+ TimerStatus: 'stopped',
409
+ RefName: 'Unassigned',
410
+ BoutId: 2346,
411
+ PoolId: 150,
412
+ EventId: 9,
413
+ Person1Id: 41,
414
+ Person2Id: 39,
415
+ Status: 'Scheduled',
416
+ Score1: 0,
417
+ Score2: 0,
418
+ Started: null,
419
+ Ended: null,
420
+ TimeLeft: 0,
421
+ CurrentPass: 0,
422
+ MaxPasses: 0,
423
+ RoundLabel: 'Table of 8',
424
+ DEBoutId: 8,
425
+ DENextBoutId: 12,
426
+ RefereeId: null,
427
+ createdAt: '2024-07-29T13:31:39.000Z',
428
+ updatedAt: '2024-07-29T13:31:39.000Z',
429
+ Person1: {
430
+ PersonId: 41,
431
+ DisplayName: 'David Reddy',
432
+ ClubId: 12,
433
+ Images: [],
434
+ Club: {
435
+ Name: 'Gem City Duelists Society',
436
+ Color1: 'green',
437
+ Color2: 'black'
438
+ },
439
+ EventPersons: [
440
+ {
441
+ DEPosition: 15
442
+ }
443
+ ]
444
+ },
445
+ Person2: {
446
+ PersonId: 39,
447
+ DisplayName: 'Colin McConnel',
448
+ ClubId: 13,
449
+ Images: [],
450
+ Club: {
451
+ Name: 'Two Ravens Fencing School'
452
+ },
453
+ EventPersons: [
454
+ {
455
+ DEPosition: 2
456
+ }
457
+ ]
458
+ },
459
+ Pool: {
460
+ RingName: 'DE Bracket'
461
+ }
462
+ },
463
+ {
464
+ TimerStatus: 'stopped',
465
+ RefName: 'Unassigned',
466
+ BoutId: 2347,
467
+ PoolId: 150,
468
+ EventId: 9,
469
+ Person1Id: 35,
470
+ Person2Id: 1,
471
+ Status: 'Scheduled',
472
+ Score1: 0,
473
+ Score2: 0,
474
+ Started: null,
475
+ Ended: null,
476
+ TimeLeft: 0,
477
+ CurrentPass: 0,
478
+ MaxPasses: 0,
479
+ RoundLabel: 'Table of 8',
480
+ DEBoutId: 9,
481
+ DENextBoutId: 13,
482
+ RefereeId: null,
483
+ createdAt: '2024-07-29T13:31:39.000Z',
484
+ updatedAt: '2024-07-29T13:32:10.000Z',
485
+ Person1: {
486
+ PersonId: 35,
487
+ DisplayName: 'Branden Zipplinger',
488
+ ClubId: 10,
489
+ Images: [],
490
+ Club: {
491
+ Name: 'Columbus United Fencing Club',
492
+ Color1: 'rose',
493
+ Color2: 'navy'
494
+ },
495
+ EventPersons: [
496
+ {
497
+ DEPosition: 1
498
+ }
499
+ ]
500
+ },
501
+ Person2: {
502
+ PersonId: 1,
503
+ DisplayName: 'Dwain Crackel',
504
+ ClubId: 10,
505
+ Images: [
506
+ {
507
+ ImageId: 7,
508
+ URL: 'https://randomuser.me/api/portraits/men/22.jpg'
509
+ }
510
+ ],
511
+ Club: {
512
+ Name: 'Columbus United Fencing Club'
513
+ },
514
+ EventPersons: [
515
+ {
516
+ DEPosition: 9
517
+ }
518
+ ]
519
+ },
520
+ Pool: {
521
+ RingName: 'DE Bracket'
522
+ }
523
+ },
524
+ {
525
+ TimerStatus: 'stopped',
526
+ RefName: 'Unassigned',
527
+ BoutId: 2348,
528
+ PoolId: 150,
529
+ EventId: 9,
530
+ Person1Id: 32,
531
+ Person2Id: 69,
532
+ Status: 'Scheduled',
533
+ Score1: 0,
534
+ Score2: 0,
535
+ Started: null,
536
+ Ended: null,
537
+ TimeLeft: 0,
538
+ CurrentPass: 0,
539
+ MaxPasses: 0,
540
+ RoundLabel: 'Table of 8',
541
+ DEBoutId: 10,
542
+ DENextBoutId: 13,
543
+ RefereeId: null,
544
+ createdAt: '2024-07-29T13:31:39.000Z',
545
+ updatedAt: '2024-07-29T13:32:33.000Z',
546
+ Person1: {
547
+ PersonId: 32,
548
+ DisplayName: 'AJ Trefney',
549
+ ClubId: 13,
550
+ Images: [],
551
+ Club: {
552
+ Name: 'Two Ravens Fencing School',
553
+ Color1: 'red',
554
+ Color2: 'blue'
555
+ },
556
+ EventPersons: [
557
+ {
558
+ DEPosition: 5
559
+ }
560
+ ]
561
+ },
562
+ Person2: {
563
+ PersonId: 69,
564
+ DisplayName: 'Sam Ryals',
565
+ ClubId: 12,
566
+ Images: [],
567
+ Club: {
568
+ Name: 'Gem City Duelists Society'
569
+ },
570
+ EventPersons: [
571
+ {
572
+ DEPosition: 4
573
+ }
574
+ ]
575
+ },
576
+ Pool: {
577
+ RingName: 'DE Bracket'
578
+ }
579
+ },
580
+ {
581
+ TimerStatus: 'stopped',
582
+ RefName: 'Unassigned',
583
+ BoutId: 2349,
584
+ PoolId: 150,
585
+ EventId: 9,
586
+ Person1Id: 62,
587
+ Person2Id: 43,
588
+ Status: 'Scheduled',
589
+ Score1: 0,
590
+ Score2: 0,
591
+ Started: null,
592
+ Ended: null,
593
+ TimeLeft: 0,
594
+ CurrentPass: 0,
595
+ MaxPasses: 0,
596
+ RoundLabel: 'Table of 8',
597
+ DEBoutId: 11,
598
+ DENextBoutId: 14,
599
+ RefereeId: null,
600
+ createdAt: '2024-07-29T13:31:39.000Z',
601
+ updatedAt: '2024-07-29T13:33:21.000Z',
602
+ Person1: {
603
+ PersonId: 62,
604
+ DisplayName: 'Matthew Dicken',
605
+ ClubId: 10,
606
+ Images: [],
607
+ Club: {
608
+ Name: 'Columbus United Fencing Club',
609
+ Color1: 'rose',
610
+ Color2: 'navy'
611
+ },
612
+ EventPersons: [
613
+ {
614
+ DEPosition: 6
615
+ }
616
+ ]
617
+ },
618
+ Person2: {
619
+ PersonId: 43,
620
+ DisplayName: 'Derek Rey',
621
+ ClubId: 10,
622
+ Images: [],
623
+ Club: {
624
+ Name: 'Columbus United Fencing Club'
625
+ },
626
+ EventPersons: [
627
+ {
628
+ DEPosition: 3
629
+ }
630
+ ]
631
+ },
632
+ Pool: {
633
+ RingName: 'DE Bracket'
634
+ }
635
+ },
636
+ {
637
+ TimerStatus: 'stopped',
638
+ RefName: 'Unassigned',
639
+ BoutId: 2350,
640
+ PoolId: 150,
641
+ EventId: 9,
642
+ Person1Id: 0,
643
+ Person2Id: 0,
644
+ Status: 'Scheduled',
645
+ Score1: 0,
646
+ Score2: 0,
647
+ Started: null,
648
+ Ended: null,
649
+ TimeLeft: 0,
650
+ CurrentPass: 0,
651
+ MaxPasses: 0,
652
+ RoundLabel: 'Table of 8',
653
+ DEBoutId: 12,
654
+ DENextBoutId: 14,
655
+ RefereeId: null,
656
+ createdAt: '2024-07-29T13:31:39.000Z',
657
+ updatedAt: '2024-07-29T13:31:39.000Z',
658
+ Person1: {
659
+ PersonId: 0,
660
+ DisplayName: 'BYE',
661
+ ClubId: 1,
662
+ Images: [],
663
+ Club: {
664
+ Name: 'Acme Fencing Club',
665
+ Color1: 'rose',
666
+ Color2: 'navy'
667
+ },
668
+ EventPersons: []
669
+ },
670
+ Person2: {
671
+ PersonId: 0,
672
+ DisplayName: 'BYE',
673
+ ClubId: 1,
674
+ Images: [],
675
+ Club: {
676
+ Name: 'Acme Fencing Club'
677
+ },
678
+ EventPersons: []
679
+ },
680
+ Pool: {
681
+ RingName: 'DE Bracket'
682
+ }
683
+ },
684
+ {
685
+ TimerStatus: 'stopped',
686
+ RefName: 'Unassigned',
687
+ BoutId: 2351,
688
+ PoolId: 150,
689
+ EventId: 9,
690
+ Person1Id: 0,
691
+ Person2Id: 0,
692
+ Status: 'Scheduled',
693
+ Score1: 0,
694
+ Score2: 0,
695
+ Started: null,
696
+ Ended: null,
697
+ TimeLeft: 0,
698
+ CurrentPass: 0,
699
+ MaxPasses: 0,
700
+ RoundLabel: 'Semifinal',
701
+ DEBoutId: 13,
702
+ DENextBoutId: 15,
703
+ RefereeId: null,
704
+ createdAt: '2024-07-29T13:31:39.000Z',
705
+ updatedAt: '2024-07-29T13:31:39.000Z',
706
+ Person1: {
707
+ PersonId: 0,
708
+ DisplayName: 'BYE',
709
+ ClubId: 1,
710
+ Images: [],
711
+ Club: {
712
+ Name: 'Acme Fencing Club',
713
+ Color1: 'rose',
714
+ Color2: 'navy'
715
+ },
716
+ EventPersons: []
717
+ },
718
+ Person2: {
719
+ PersonId: 0,
720
+ DisplayName: 'BYE',
721
+ ClubId: 1,
722
+ Images: [],
723
+ Club: {
724
+ Name: 'Acme Fencing Club'
725
+ },
726
+ EventPersons: []
727
+ },
728
+ Pool: {
729
+ RingName: 'DE Bracket'
730
+ }
731
+ },
732
+ {
733
+ TimerStatus: 'stopped',
734
+ RefName: 'Unassigned',
735
+ BoutId: 2352,
736
+ PoolId: 150,
737
+ EventId: 9,
738
+ Person1Id: 0,
739
+ Person2Id: 0,
740
+ Status: 'Scheduled',
741
+ Score1: 0,
742
+ Score2: 0,
743
+ Started: null,
744
+ Ended: null,
745
+ TimeLeft: 0,
746
+ CurrentPass: 0,
747
+ MaxPasses: 0,
748
+ RoundLabel: 'Semifinal',
749
+ DEBoutId: 14,
750
+ DENextBoutId: 15,
751
+ RefereeId: null,
752
+ createdAt: '2024-07-29T13:31:39.000Z',
753
+ updatedAt: '2024-07-29T13:31:39.000Z',
754
+ Person1: {
755
+ PersonId: 0,
756
+ DisplayName: 'BYE',
757
+ ClubId: 1,
758
+ Images: [],
759
+ Club: {
760
+ Name: 'Acme Fencing Club',
761
+ Color1: 'rose',
762
+ Color2: 'navy'
763
+ },
764
+ EventPersons: []
765
+ },
766
+ Person2: {
767
+ PersonId: 0,
768
+ DisplayName: 'BYE',
769
+ ClubId: 1,
770
+ Images: [],
771
+ Club: {
772
+ Name: 'Acme Fencing Club'
773
+ },
774
+ EventPersons: []
775
+ },
776
+ Pool: {
777
+ RingName: 'DE Bracket'
778
+ }
779
+ },
780
+ {
781
+ TimerStatus: 'stopped',
782
+ RefName: 'Unassigned',
783
+ BoutId: 2353,
784
+ PoolId: 150,
785
+ EventId: 9,
786
+ Person1Id: 0,
787
+ Person2Id: 0,
788
+ Status: 'Scheduled',
789
+ Score1: 0,
790
+ Score2: 0,
791
+ Started: null,
792
+ Ended: null,
793
+ TimeLeft: 0,
794
+ CurrentPass: 0,
795
+ MaxPasses: 0,
796
+ RoundLabel: 'Final',
797
+ DEBoutId: 15,
798
+ DENextBoutId: null,
799
+ RefereeId: null,
800
+ createdAt: '2024-07-29T13:31:39.000Z',
801
+ updatedAt: '2024-07-29T13:31:39.000Z',
802
+ Person1: {
803
+ PersonId: 0,
804
+ DisplayName: 'BYE',
805
+ ClubId: 1,
806
+ Images: [],
807
+ Club: {
808
+ Name: 'Acme Fencing Club',
809
+ Color1: 'rose',
810
+ Color2: 'navy'
811
+ },
812
+ EventPersons: []
813
+ },
814
+ Person2: {
815
+ PersonId: 0,
816
+ DisplayName: 'BYE',
817
+ ClubId: 1,
818
+ Images: [],
819
+ Club: {
820
+ Name: 'Acme Fencing Club'
821
+ },
822
+ EventPersons: []
823
+ },
824
+ Pool: {
825
+ RingName: 'DE Bracket'
826
+ }
827
+ },
828
+ {
829
+ TimerStatus: 'stopped',
830
+ RefName: 'Unassigned',
831
+ BoutId: 2354,
832
+ PoolId: 150,
833
+ EventId: 9,
834
+ Person1Id: 0,
835
+ Person2Id: 0,
836
+ Status: 'Scheduled',
837
+ Score1: 0,
838
+ Score2: 0,
839
+ Started: null,
840
+ Ended: null,
841
+ TimeLeft: 0,
842
+ CurrentPass: 0,
843
+ MaxPasses: 0,
844
+ RoundLabel: 'Third Place',
845
+ DEBoutId: 16,
846
+ DENextBoutId: null,
847
+ RefereeId: null,
848
+ createdAt: '2024-07-29T13:31:43.000Z',
849
+ updatedAt: '2024-07-29T13:31:43.000Z',
850
+ Person1: {
851
+ PersonId: 0,
852
+ DisplayName: 'BYE',
853
+ ClubId: 1,
854
+ Images: [],
855
+ Club: {
856
+ Name: 'Acme Fencing Club',
857
+ Color1: 'rose',
858
+ Color2: 'navy'
859
+ },
860
+ EventPersons: []
861
+ },
862
+ Person2: {
863
+ PersonId: 0,
864
+ DisplayName: 'BYE',
865
+ ClubId: 1,
866
+ Images: [],
867
+ Club: {
868
+ Name: 'Acme Fencing Club'
869
+ },
870
+ EventPersons: []
871
+ },
872
+ Pool: {
873
+ RingName: 'DE Bracket'
874
+ }
928
875
  }
876
+ ]
877
+ }
878
+ ],
879
+ eventRules: [
880
+ {
881
+ RuleId: 5,
882
+ RuleName: 'DE3rdFenceOff',
883
+ RuleValue: 'true',
884
+ Context: 'de'
885
+ },
886
+ {
887
+ RuleId: 6,
888
+ RuleName: 'PoolNumOfPasses',
889
+ RuleValue: '7',
890
+ Context: 'pool'
891
+ },
892
+ {
893
+ RuleId: 7,
894
+ RuleName: 'DENumOfPasses',
895
+ RuleValue: '7',
896
+ Context: 'de'
897
+ },
898
+ {
899
+ RuleId: 9,
900
+ RuleName: 'DEPromotionOrder',
901
+ RuleValue: 'W%,IND,TS',
902
+ Context: 'de'
903
+ },
904
+ {
905
+ RuleId: 10,
906
+ RuleName: 'DENumOfPromotion',
907
+ RuleValue: '100%',
908
+ Context: 'de'
909
+ },
910
+ {
911
+ RuleId: 11,
912
+ RuleName: 'PoolSeeding',
913
+ RuleValue: 'HR',
914
+ Context: 'pool'
915
+ },
916
+ {
917
+ RuleId: 14,
918
+ RuleName: 'CutOffNumber',
919
+ RuleValue: '32',
920
+ Context: 'event'
929
921
  }
922
+ ],
923
+ hostingClubColors: {
924
+ Color1: 'blue',
925
+ Color2: 'silver'
926
+ }
927
+ };
930
928
 
931
- export default getDEWithBouts15Fencers;
929
+ export default getDEWithBouts15Fencers;