@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,642 +1,641 @@
1
- const getDEWithBouts =
1
+ const getDEWithBouts = {
2
+ message: 'DE Pool retrieved',
3
+ pools: [
2
4
  {
3
- "message": "DE Pool retrieved",
4
- "pools": [
5
- {
6
- "PoolId": 189,
7
- "Name": "Super Fun Smallsword-DE",
8
- "RingName": "DE Bracket",
9
- "Flight": 1,
10
- "PoolType": "de",
11
- "EventId": 29,
12
- "Status": "live",
13
- "Updated": "2024-10-24T20:24:46.000Z",
14
- "Staff": [],
15
- "Bouts": [
16
- {
17
- "TimerStatus": "stopped",
18
- "RefName": "Unassigned",
19
- "BoutId": 3170,
20
- "PoolId": 189,
21
- "EventId": 29,
22
- "Person1Id": 49,
23
- "Person2Id": 89,
24
- "Status": "Scheduled",
25
- "Score1": 0,
26
- "Score2": 0,
27
- "Started": "2024-10-24T20:42:57.000Z",
28
- "Ended": null,
29
- "TimeLeft": 90,
30
- "CurrentPass": 0,
31
- "MaxPasses": 0,
32
- "RoundLabel": "Table of 8",
33
- "DEBoutId": 1,
34
- "DENextBoutId": 5,
35
- "RefereeId": 1,
36
- "createdAt": "2024-10-24T20:24:46.000Z",
37
- "updatedAt": "2024-10-24T21:05:17.000Z",
38
- "Person1": {
39
- "PersonId": 49,
40
- "DisplayName": "Jack Seyler",
41
- "ClubId": 43,
42
- "ShowData": true,
43
- "Images": [],
44
- "Club": {
45
- "Name": "Ars Gladii",
46
- "Color1": "green",
47
- "Color2": "gold"
48
- },
49
- "EventPersons": [
50
- {
51
- "DEPosition": 1
52
- }
53
- ]
54
- },
55
- "Person2": {
56
- "PersonId": 89,
57
- "DisplayName": "Jesse May",
58
- "ClubId": 18,
59
- "ShowData": true,
60
- "Images": [],
61
- "Club": {
62
- "Name": "Hilt and Helm Pittsburgh Fencing Club"
63
- },
64
- "EventPersons": [
65
- {
66
- "DEPosition": 8
67
- }
68
- ]
69
- },
70
- "Pool": {
71
- "RingName": "DE Bracket"
72
- }
73
- },
74
- {
75
- "TimerStatus": "stopped",
76
- "RefName": "Unassigned",
77
- "BoutId": 3171,
78
- "PoolId": 189,
79
- "EventId": 29,
80
- "Person1Id": 9,
81
- "Person2Id": 111,
82
- "Status": "Scheduled",
83
- "Score1": 0,
84
- "Score2": 0,
85
- "Started": null,
86
- "Ended": null,
87
- "TimeLeft": 0,
88
- "CurrentPass": 0,
89
- "MaxPasses": 0,
90
- "RoundLabel": "Table of 8",
91
- "DEBoutId": 2,
92
- "DENextBoutId": 5,
93
- "RefereeId": null,
94
- "createdAt": "2024-10-24T20:24:46.000Z",
95
- "updatedAt": "2024-10-24T20:24:46.000Z",
96
- "Person1": {
97
- "PersonId": 9,
98
- "DisplayName": "Sean McCoy",
99
- "ClubId": 7,
100
- "ShowData": true,
101
- "Images": [],
102
- "Club": {
103
- "Name": "Hilt & Heart",
104
- "Color1": "red",
105
- "Color2": "blue"
106
- },
107
- "EventPersons": [
108
- {
109
- "DEPosition": 5
110
- }
111
- ]
112
- },
113
- "Person2": {
114
- "PersonId": 111,
115
- "DisplayName": "Aaron Senteney",
116
- "ClubId": 38,
117
- "ShowData": true,
118
- "Images": [],
119
- "Club": {
120
- "Name": "Steelhead Western Martial Arts"
121
- },
122
- "EventPersons": [
123
- {
124
- "DEPosition": 4
125
- }
126
- ]
127
- },
128
- "Pool": {
129
- "RingName": "DE Bracket"
130
- }
131
- },
132
- {
133
- "TimerStatus": "stopped",
134
- "RefName": "Unassigned",
135
- "BoutId": 3172,
136
- "PoolId": 189,
137
- "EventId": 29,
138
- "Person1Id": 79,
139
- "Person2Id": 18,
140
- "Status": "Scheduled",
141
- "Score1": 0,
142
- "Score2": 0,
143
- "Started": null,
144
- "Ended": null,
145
- "TimeLeft": 0,
146
- "CurrentPass": 0,
147
- "MaxPasses": 0,
148
- "RoundLabel": "Table of 8",
149
- "DEBoutId": 3,
150
- "DENextBoutId": 6,
151
- "RefereeId": null,
152
- "createdAt": "2024-10-24T20:24:46.000Z",
153
- "updatedAt": "2024-10-24T20:24:46.000Z",
154
- "Person1": {
155
- "PersonId": 79,
156
- "DisplayName": "Tom Testerlou",
157
- "ClubId": 10,
158
- "ShowData": true,
159
- "Images": [],
160
- "Club": {
161
- "Name": "Columbus United Fencing Club",
162
- "Color1": "navy",
163
- "Color2": "rose"
164
- },
165
- "EventPersons": [
166
- {
167
- "DEPosition": 3
168
- }
169
- ]
170
- },
171
- "Person2": {
172
- "PersonId": 18,
173
- "DisplayName": "Sean Hanson",
174
- "ClubId": 3,
175
- "ShowData": true,
176
- "Images": [],
177
- "Club": {
178
- "Name": "Sword & Blade of Callie"
179
- },
180
- "EventPersons": [
181
- {
182
- "DEPosition": 6
183
- }
184
- ]
185
- },
186
- "Pool": {
187
- "RingName": "DE Bracket"
188
- }
189
- },
190
- {
191
- "TimerStatus": "stopped",
192
- "RefName": "Unassigned",
193
- "BoutId": 3173,
194
- "PoolId": 189,
195
- "EventId": 29,
196
- "Person1Id": 75,
197
- "Person2Id": 63,
198
- "Status": "Scheduled",
199
- "Score1": 0,
200
- "Score2": 0,
201
- "Started": null,
202
- "Ended": null,
203
- "TimeLeft": 0,
204
- "CurrentPass": 0,
205
- "MaxPasses": 0,
206
- "RoundLabel": "Table of 8",
207
- "DEBoutId": 4,
208
- "DENextBoutId": 6,
209
- "RefereeId": null,
210
- "createdAt": "2024-10-24T20:24:46.000Z",
211
- "updatedAt": "2024-10-24T20:24:46.000Z",
212
- "Person1": {
213
- "PersonId": 75,
214
- "DisplayName": "William Handford",
215
- "ClubId": 10,
216
- "ShowData": true,
217
- "Images": [],
218
- "Club": {
219
- "Name": "Columbus United Fencing Club",
220
- "Color1": "navy",
221
- "Color2": "rose"
222
- },
223
- "EventPersons": [
224
- {
225
- "DEPosition": 7
226
- }
227
- ]
228
- },
229
- "Person2": {
230
- "PersonId": 63,
231
- "DisplayName": "Nate Sirrat",
232
- "ClubId": 23,
233
- "ShowData": true,
234
- "Images": [],
235
- "Club": {
236
- "Name": "Queen City Sword Guild"
237
- },
238
- "EventPersons": [
239
- {
240
- "DEPosition": 2
241
- }
242
- ]
243
- },
244
- "Pool": {
245
- "RingName": "DE Bracket"
246
- }
247
- },
248
- {
249
- "TimerStatus": "stopped",
250
- "RefName": "Unassigned",
251
- "BoutId": 3174,
252
- "PoolId": 189,
253
- "EventId": 29,
254
- "Person1Id": 0,
255
- "Person2Id": 0,
256
- "Status": "Scheduled",
257
- "Score1": 0,
258
- "Score2": 0,
259
- "Started": null,
260
- "Ended": null,
261
- "TimeLeft": 0,
262
- "CurrentPass": 0,
263
- "MaxPasses": 0,
264
- "RoundLabel": "Semifinal",
265
- "DEBoutId": 5,
266
- "DENextBoutId": 7,
267
- "RefereeId": null,
268
- "createdAt": "2024-10-24T20:24:46.000Z",
269
- "updatedAt": "2024-10-24T20:24:46.000Z",
270
- "Person1": {
271
- "PersonId": 0,
272
- "DisplayName": "BYE",
273
- "ClubId": 1,
274
- "ShowData": true,
275
- "Images": [],
276
- "Club": {
277
- "Name": "Acme Fencing Club",
278
- "Color1": "navy",
279
- "Color2": "rose"
280
- },
281
- "EventPersons": []
282
- },
283
- "Person2": {
284
- "PersonId": 0,
285
- "DisplayName": "BYE",
286
- "ClubId": 1,
287
- "ShowData": true,
288
- "Images": [],
289
- "Club": {
290
- "Name": "Acme Fencing Club"
291
- },
292
- "EventPersons": []
293
- },
294
- "Pool": {
295
- "RingName": "DE Bracket"
296
- }
297
- },
298
- {
299
- "TimerStatus": "stopped",
300
- "RefName": "Unassigned",
301
- "BoutId": 3175,
302
- "PoolId": 189,
303
- "EventId": 29,
304
- "Person1Id": 0,
305
- "Person2Id": 0,
306
- "Status": "Scheduled",
307
- "Score1": 0,
308
- "Score2": 0,
309
- "Started": null,
310
- "Ended": null,
311
- "TimeLeft": 0,
312
- "CurrentPass": 0,
313
- "MaxPasses": 0,
314
- "RoundLabel": "Semifinal",
315
- "DEBoutId": 6,
316
- "DENextBoutId": 7,
317
- "RefereeId": null,
318
- "createdAt": "2024-10-24T20:24:46.000Z",
319
- "updatedAt": "2024-10-24T20:24:46.000Z",
320
- "Person1": {
321
- "PersonId": 0,
322
- "DisplayName": "BYE",
323
- "ClubId": 1,
324
- "ShowData": true,
325
- "Images": [],
326
- "Club": {
327
- "Name": "Acme Fencing Club",
328
- "Color1": "navy",
329
- "Color2": "rose"
330
- },
331
- "EventPersons": []
332
- },
333
- "Person2": {
334
- "PersonId": 0,
335
- "DisplayName": "BYE",
336
- "ClubId": 1,
337
- "ShowData": true,
338
- "Images": [],
339
- "Club": {
340
- "Name": "Acme Fencing Club"
341
- },
342
- "EventPersons": []
343
- },
344
- "Pool": {
345
- "RingName": "DE Bracket"
346
- }
347
- },
348
- {
349
- "TimerStatus": "stopped",
350
- "RefName": "Unassigned",
351
- "BoutId": 3176,
352
- "PoolId": 189,
353
- "EventId": 29,
354
- "Person1Id": 0,
355
- "Person2Id": 0,
356
- "Status": "Scheduled",
357
- "Score1": 0,
358
- "Score2": 0,
359
- "Started": null,
360
- "Ended": null,
361
- "TimeLeft": 0,
362
- "CurrentPass": 0,
363
- "MaxPasses": 0,
364
- "RoundLabel": "Final",
365
- "DEBoutId": 7,
366
- "DENextBoutId": null,
367
- "RefereeId": null,
368
- "createdAt": "2024-10-24T20:24:46.000Z",
369
- "updatedAt": "2024-10-24T20:24:46.000Z",
370
- "Person1": {
371
- "PersonId": 0,
372
- "DisplayName": "BYE",
373
- "ClubId": 1,
374
- "ShowData": true,
375
- "Images": [],
376
- "Club": {
377
- "Name": "Acme Fencing Club",
378
- "Color1": "navy",
379
- "Color2": "rose"
380
- },
381
- "EventPersons": []
382
- },
383
- "Person2": {
384
- "PersonId": 0,
385
- "DisplayName": "BYE",
386
- "ClubId": 1,
387
- "ShowData": true,
388
- "Images": [],
389
- "Club": {
390
- "Name": "Acme Fencing Club"
391
- },
392
- "EventPersons": []
393
- },
394
- "Pool": {
395
- "RingName": "DE Bracket"
396
- }
397
- },
398
- {
399
- "TimerStatus": "stopped",
400
- "RefName": "Unassigned",
401
- "BoutId": 3177,
402
- "PoolId": 189,
403
- "EventId": 29,
404
- "Person1Id": 0,
405
- "Person2Id": 0,
406
- "Status": "Scheduled",
407
- "Score1": 0,
408
- "Score2": 0,
409
- "Started": null,
410
- "Ended": null,
411
- "TimeLeft": 0,
412
- "CurrentPass": 0,
413
- "MaxPasses": 0,
414
- "RoundLabel": "Third Place",
415
- "DEBoutId": 8,
416
- "DENextBoutId": null,
417
- "RefereeId": null,
418
- "createdAt": "2024-10-24T20:24:46.000Z",
419
- "updatedAt": "2024-10-24T20:24:46.000Z",
420
- "Person1": {
421
- "PersonId": 0,
422
- "DisplayName": "BYE",
423
- "ClubId": 1,
424
- "ShowData": true,
425
- "Images": [],
426
- "Club": {
427
- "Name": "Acme Fencing Club",
428
- "Color1": "navy",
429
- "Color2": "rose"
430
- },
431
- "EventPersons": []
432
- },
433
- "Person2": {
434
- "PersonId": 0,
435
- "DisplayName": "BYE",
436
- "ClubId": 1,
437
- "ShowData": true,
438
- "Images": [],
439
- "Club": {
440
- "Name": "Acme Fencing Club"
441
- },
442
- "EventPersons": []
443
- },
444
- "Pool": {
445
- "RingName": "DE Bracket"
446
- }
447
- }
448
- ]
449
- }
450
- ],
451
- "event": {
452
- "EventId": 29,
453
- "TournamentId": 63,
454
- "EventName": "Super Fun Smallsword",
455
- "Date": "2024-10-24",
456
- "StartTime": "15:00:00",
457
- "NumberOfRings": 2,
458
- "NumberOfPools": 2,
459
- "PoolSize": 6,
460
- "Flights": 1,
461
- "WeaponId": 11,
462
- "Status": "de",
463
- "Present": 8,
464
- "Absent": 0,
465
- "Removed": 0,
466
- "EventRules": [
467
- {
468
- "EventId": 29,
469
- "RuleId": 1,
470
- "RuleValue": "120",
471
- "Rules": {
472
- "RuleName": "PoolTime",
473
- "Context": "pool"
474
- }
475
- },
476
- {
477
- "EventId": 29,
478
- "RuleId": 2,
479
- "RuleValue": "7",
480
- "Rules": {
481
- "RuleName": "PoolMaxPoints",
482
- "Context": "pool"
483
- }
484
- },
485
- {
486
- "EventId": 29,
487
- "RuleId": 3,
488
- "RuleValue": "120",
489
- "Rules": {
490
- "RuleName": "DETime",
491
- "Context": "de"
492
- }
493
- },
494
- {
495
- "EventId": 29,
496
- "RuleId": 4,
497
- "RuleValue": "7",
498
- "Rules": {
499
- "RuleName": "DEMaxPoints",
500
- "Context": "de"
501
- }
502
- },
503
- {
504
- "EventId": 29,
505
- "RuleId": 5,
506
- "RuleValue": "true",
507
- "Rules": {
508
- "RuleName": "DE3rdFenceOff",
509
- "Context": "de"
510
- }
511
- },
512
- {
513
- "EventId": 29,
514
- "RuleId": 9,
515
- "RuleValue": "Win Percent,Win Count,Indicator,Points Scored",
516
- "Rules": {
517
- "RuleName": "DEPromotionOrder",
518
- "Context": "de"
519
- }
520
- },
521
- {
522
- "EventId": 29,
523
- "RuleId": 10,
524
- "RuleValue": "100%",
525
- "Rules": {
526
- "RuleName": "DENumOfPromotion",
527
- "Context": "de"
528
- }
529
- },
530
- {
531
- "EventId": 29,
532
- "RuleId": 11,
533
- "RuleValue": "M2 - MeyerSquared",
534
- "Rules": {
535
- "RuleName": "PoolSeeding",
536
- "Context": "pool"
537
- }
538
- },
539
- {
540
- "EventId": 29,
541
- "RuleId": 14,
542
- "RuleValue": "64",
543
- "Rules": {
544
- "RuleName": "CutOffNumber",
545
- "Context": "event"
546
- }
547
- }
548
- ],
549
- "Weapon": {
550
- "HRWeaponId": null
551
- }
5
+ PoolId: 189,
6
+ Name: 'Super Fun Smallsword-DE',
7
+ RingName: 'DE Bracket',
8
+ Flight: 1,
9
+ PoolType: 'de',
10
+ EventId: 29,
11
+ Status: 'live',
12
+ Updated: '2024-10-24T20:24:46.000Z',
13
+ Staff: [],
14
+ Bouts: [
15
+ {
16
+ TimerStatus: 'stopped',
17
+ RefName: 'Unassigned',
18
+ BoutId: 3170,
19
+ PoolId: 189,
20
+ EventId: 29,
21
+ Person1Id: 49,
22
+ Person2Id: 89,
23
+ Status: 'Scheduled',
24
+ Score1: 0,
25
+ Score2: 0,
26
+ Started: '2024-10-24T20:42:57.000Z',
27
+ Ended: null,
28
+ TimeLeft: 90,
29
+ CurrentPass: 0,
30
+ MaxPasses: 0,
31
+ RoundLabel: 'Table of 8',
32
+ DEBoutId: 1,
33
+ DENextBoutId: 5,
34
+ RefereeId: 1,
35
+ createdAt: '2024-10-24T20:24:46.000Z',
36
+ updatedAt: '2024-10-24T21:05:17.000Z',
37
+ Person1: {
38
+ PersonId: 49,
39
+ DisplayName: 'Jack Seyler',
40
+ ClubId: 43,
41
+ ShowData: true,
42
+ Images: [],
43
+ Club: {
44
+ Name: 'Ars Gladii',
45
+ Color1: 'green',
46
+ Color2: 'gold'
47
+ },
48
+ EventPersons: [
49
+ {
50
+ DEPosition: 1
51
+ }
52
+ ]
53
+ },
54
+ Person2: {
55
+ PersonId: 89,
56
+ DisplayName: 'Jesse May',
57
+ ClubId: 18,
58
+ ShowData: true,
59
+ Images: [],
60
+ Club: {
61
+ Name: 'Hilt and Helm Pittsburgh Fencing Club'
62
+ },
63
+ EventPersons: [
64
+ {
65
+ DEPosition: 8
66
+ }
67
+ ]
68
+ },
69
+ Pool: {
70
+ RingName: 'DE Bracket'
71
+ }
552
72
  },
553
- "eventRules": [
554
- {
555
- "EventId": 29,
556
- "RuleId": 1,
557
- "RuleValue": "120",
558
- "Rules": {
559
- "RuleName": "PoolTime",
560
- "Context": "pool"
561
- }
73
+ {
74
+ TimerStatus: 'stopped',
75
+ RefName: 'Unassigned',
76
+ BoutId: 3171,
77
+ PoolId: 189,
78
+ EventId: 29,
79
+ Person1Id: 9,
80
+ Person2Id: 111,
81
+ Status: 'Scheduled',
82
+ Score1: 0,
83
+ Score2: 0,
84
+ Started: null,
85
+ Ended: null,
86
+ TimeLeft: 0,
87
+ CurrentPass: 0,
88
+ MaxPasses: 0,
89
+ RoundLabel: 'Table of 8',
90
+ DEBoutId: 2,
91
+ DENextBoutId: 5,
92
+ RefereeId: null,
93
+ createdAt: '2024-10-24T20:24:46.000Z',
94
+ updatedAt: '2024-10-24T20:24:46.000Z',
95
+ Person1: {
96
+ PersonId: 9,
97
+ DisplayName: 'Sean McCoy',
98
+ ClubId: 7,
99
+ ShowData: true,
100
+ Images: [],
101
+ Club: {
102
+ Name: 'Hilt & Heart',
103
+ Color1: 'red',
104
+ Color2: 'blue'
562
105
  },
563
- {
564
- "EventId": 29,
565
- "RuleId": 2,
566
- "RuleValue": "7",
567
- "Rules": {
568
- "RuleName": "PoolMaxPoints",
569
- "Context": "pool"
570
- }
106
+ EventPersons: [
107
+ {
108
+ DEPosition: 5
109
+ }
110
+ ]
111
+ },
112
+ Person2: {
113
+ PersonId: 111,
114
+ DisplayName: 'Aaron Senteney',
115
+ ClubId: 38,
116
+ ShowData: true,
117
+ Images: [],
118
+ Club: {
119
+ Name: 'Steelhead Western Martial Arts'
571
120
  },
572
- {
573
- "EventId": 29,
574
- "RuleId": 3,
575
- "RuleValue": "120",
576
- "Rules": {
577
- "RuleName": "DETime",
578
- "Context": "de"
579
- }
121
+ EventPersons: [
122
+ {
123
+ DEPosition: 4
124
+ }
125
+ ]
126
+ },
127
+ Pool: {
128
+ RingName: 'DE Bracket'
129
+ }
130
+ },
131
+ {
132
+ TimerStatus: 'stopped',
133
+ RefName: 'Unassigned',
134
+ BoutId: 3172,
135
+ PoolId: 189,
136
+ EventId: 29,
137
+ Person1Id: 79,
138
+ Person2Id: 18,
139
+ Status: 'Scheduled',
140
+ Score1: 0,
141
+ Score2: 0,
142
+ Started: null,
143
+ Ended: null,
144
+ TimeLeft: 0,
145
+ CurrentPass: 0,
146
+ MaxPasses: 0,
147
+ RoundLabel: 'Table of 8',
148
+ DEBoutId: 3,
149
+ DENextBoutId: 6,
150
+ RefereeId: null,
151
+ createdAt: '2024-10-24T20:24:46.000Z',
152
+ updatedAt: '2024-10-24T20:24:46.000Z',
153
+ Person1: {
154
+ PersonId: 79,
155
+ DisplayName: 'Tom Testerlou',
156
+ ClubId: 10,
157
+ ShowData: true,
158
+ Images: [],
159
+ Club: {
160
+ Name: 'Columbus United Fencing Club',
161
+ Color1: 'navy',
162
+ Color2: 'rose'
580
163
  },
581
- {
582
- "EventId": 29,
583
- "RuleId": 4,
584
- "RuleValue": "7",
585
- "Rules": {
586
- "RuleName": "DEMaxPoints",
587
- "Context": "de"
588
- }
164
+ EventPersons: [
165
+ {
166
+ DEPosition: 3
167
+ }
168
+ ]
169
+ },
170
+ Person2: {
171
+ PersonId: 18,
172
+ DisplayName: 'Sean Hanson',
173
+ ClubId: 3,
174
+ ShowData: true,
175
+ Images: [],
176
+ Club: {
177
+ Name: 'Sword & Blade of Callie'
589
178
  },
590
- {
591
- "EventId": 29,
592
- "RuleId": 5,
593
- "RuleValue": "true",
594
- "Rules": {
595
- "RuleName": "DE3rdFenceOff",
596
- "Context": "de"
597
- }
179
+ EventPersons: [
180
+ {
181
+ DEPosition: 6
182
+ }
183
+ ]
184
+ },
185
+ Pool: {
186
+ RingName: 'DE Bracket'
187
+ }
188
+ },
189
+ {
190
+ TimerStatus: 'stopped',
191
+ RefName: 'Unassigned',
192
+ BoutId: 3173,
193
+ PoolId: 189,
194
+ EventId: 29,
195
+ Person1Id: 75,
196
+ Person2Id: 63,
197
+ Status: 'Scheduled',
198
+ Score1: 0,
199
+ Score2: 0,
200
+ Started: null,
201
+ Ended: null,
202
+ TimeLeft: 0,
203
+ CurrentPass: 0,
204
+ MaxPasses: 0,
205
+ RoundLabel: 'Table of 8',
206
+ DEBoutId: 4,
207
+ DENextBoutId: 6,
208
+ RefereeId: null,
209
+ createdAt: '2024-10-24T20:24:46.000Z',
210
+ updatedAt: '2024-10-24T20:24:46.000Z',
211
+ Person1: {
212
+ PersonId: 75,
213
+ DisplayName: 'William Handford',
214
+ ClubId: 10,
215
+ ShowData: true,
216
+ Images: [],
217
+ Club: {
218
+ Name: 'Columbus United Fencing Club',
219
+ Color1: 'navy',
220
+ Color2: 'rose'
598
221
  },
599
- {
600
- "EventId": 29,
601
- "RuleId": 9,
602
- "RuleValue": "Win Percent,Win Count,Indicator,Points Scored",
603
- "Rules": {
604
- "RuleName": "DEPromotionOrder",
605
- "Context": "de"
606
- }
222
+ EventPersons: [
223
+ {
224
+ DEPosition: 7
225
+ }
226
+ ]
227
+ },
228
+ Person2: {
229
+ PersonId: 63,
230
+ DisplayName: 'Nate Sirrat',
231
+ ClubId: 23,
232
+ ShowData: true,
233
+ Images: [],
234
+ Club: {
235
+ Name: 'Queen City Sword Guild'
607
236
  },
608
- {
609
- "EventId": 29,
610
- "RuleId": 10,
611
- "RuleValue": "100%",
612
- "Rules": {
613
- "RuleName": "DENumOfPromotion",
614
- "Context": "de"
615
- }
237
+ EventPersons: [
238
+ {
239
+ DEPosition: 2
240
+ }
241
+ ]
242
+ },
243
+ Pool: {
244
+ RingName: 'DE Bracket'
245
+ }
246
+ },
247
+ {
248
+ TimerStatus: 'stopped',
249
+ RefName: 'Unassigned',
250
+ BoutId: 3174,
251
+ PoolId: 189,
252
+ EventId: 29,
253
+ Person1Id: 0,
254
+ Person2Id: 0,
255
+ Status: 'Scheduled',
256
+ Score1: 0,
257
+ Score2: 0,
258
+ Started: null,
259
+ Ended: null,
260
+ TimeLeft: 0,
261
+ CurrentPass: 0,
262
+ MaxPasses: 0,
263
+ RoundLabel: 'Semifinal',
264
+ DEBoutId: 5,
265
+ DENextBoutId: 7,
266
+ RefereeId: null,
267
+ createdAt: '2024-10-24T20:24:46.000Z',
268
+ updatedAt: '2024-10-24T20:24:46.000Z',
269
+ Person1: {
270
+ PersonId: 0,
271
+ DisplayName: 'BYE',
272
+ ClubId: 1,
273
+ ShowData: true,
274
+ Images: [],
275
+ Club: {
276
+ Name: 'Acme Fencing Club',
277
+ Color1: 'navy',
278
+ Color2: 'rose'
616
279
  },
617
- {
618
- "EventId": 29,
619
- "RuleId": 11,
620
- "RuleValue": "M2 - MeyerSquared",
621
- "Rules": {
622
- "RuleName": "PoolSeeding",
623
- "Context": "pool"
624
- }
280
+ EventPersons: []
281
+ },
282
+ Person2: {
283
+ PersonId: 0,
284
+ DisplayName: 'BYE',
285
+ ClubId: 1,
286
+ ShowData: true,
287
+ Images: [],
288
+ Club: {
289
+ Name: 'Acme Fencing Club'
625
290
  },
626
- {
627
- "EventId": 29,
628
- "RuleId": 14,
629
- "RuleValue": "64",
630
- "Rules": {
631
- "RuleName": "CutOffNumber",
632
- "Context": "event"
633
- }
634
- }
635
- ],
636
- "hostingClubColors": {
637
- "Color1": "navy",
638
- "Color2": "rose"
291
+ EventPersons: []
292
+ },
293
+ Pool: {
294
+ RingName: 'DE Bracket'
295
+ }
296
+ },
297
+ {
298
+ TimerStatus: 'stopped',
299
+ RefName: 'Unassigned',
300
+ BoutId: 3175,
301
+ PoolId: 189,
302
+ EventId: 29,
303
+ Person1Id: 0,
304
+ Person2Id: 0,
305
+ Status: 'Scheduled',
306
+ Score1: 0,
307
+ Score2: 0,
308
+ Started: null,
309
+ Ended: null,
310
+ TimeLeft: 0,
311
+ CurrentPass: 0,
312
+ MaxPasses: 0,
313
+ RoundLabel: 'Semifinal',
314
+ DEBoutId: 6,
315
+ DENextBoutId: 7,
316
+ RefereeId: null,
317
+ createdAt: '2024-10-24T20:24:46.000Z',
318
+ updatedAt: '2024-10-24T20:24:46.000Z',
319
+ Person1: {
320
+ PersonId: 0,
321
+ DisplayName: 'BYE',
322
+ ClubId: 1,
323
+ ShowData: true,
324
+ Images: [],
325
+ Club: {
326
+ Name: 'Acme Fencing Club',
327
+ Color1: 'navy',
328
+ Color2: 'rose'
329
+ },
330
+ EventPersons: []
331
+ },
332
+ Person2: {
333
+ PersonId: 0,
334
+ DisplayName: 'BYE',
335
+ ClubId: 1,
336
+ ShowData: true,
337
+ Images: [],
338
+ Club: {
339
+ Name: 'Acme Fencing Club'
340
+ },
341
+ EventPersons: []
342
+ },
343
+ Pool: {
344
+ RingName: 'DE Bracket'
345
+ }
346
+ },
347
+ {
348
+ TimerStatus: 'stopped',
349
+ RefName: 'Unassigned',
350
+ BoutId: 3176,
351
+ PoolId: 189,
352
+ EventId: 29,
353
+ Person1Id: 0,
354
+ Person2Id: 0,
355
+ Status: 'Scheduled',
356
+ Score1: 0,
357
+ Score2: 0,
358
+ Started: null,
359
+ Ended: null,
360
+ TimeLeft: 0,
361
+ CurrentPass: 0,
362
+ MaxPasses: 0,
363
+ RoundLabel: 'Final',
364
+ DEBoutId: 7,
365
+ DENextBoutId: null,
366
+ RefereeId: null,
367
+ createdAt: '2024-10-24T20:24:46.000Z',
368
+ updatedAt: '2024-10-24T20:24:46.000Z',
369
+ Person1: {
370
+ PersonId: 0,
371
+ DisplayName: 'BYE',
372
+ ClubId: 1,
373
+ ShowData: true,
374
+ Images: [],
375
+ Club: {
376
+ Name: 'Acme Fencing Club',
377
+ Color1: 'navy',
378
+ Color2: 'rose'
379
+ },
380
+ EventPersons: []
381
+ },
382
+ Person2: {
383
+ PersonId: 0,
384
+ DisplayName: 'BYE',
385
+ ClubId: 1,
386
+ ShowData: true,
387
+ Images: [],
388
+ Club: {
389
+ Name: 'Acme Fencing Club'
390
+ },
391
+ EventPersons: []
392
+ },
393
+ Pool: {
394
+ RingName: 'DE Bracket'
395
+ }
396
+ },
397
+ {
398
+ TimerStatus: 'stopped',
399
+ RefName: 'Unassigned',
400
+ BoutId: 3177,
401
+ PoolId: 189,
402
+ EventId: 29,
403
+ Person1Id: 0,
404
+ Person2Id: 0,
405
+ Status: 'Scheduled',
406
+ Score1: 0,
407
+ Score2: 0,
408
+ Started: null,
409
+ Ended: null,
410
+ TimeLeft: 0,
411
+ CurrentPass: 0,
412
+ MaxPasses: 0,
413
+ RoundLabel: 'Third Place',
414
+ DEBoutId: 8,
415
+ DENextBoutId: null,
416
+ RefereeId: null,
417
+ createdAt: '2024-10-24T20:24:46.000Z',
418
+ updatedAt: '2024-10-24T20:24:46.000Z',
419
+ Person1: {
420
+ PersonId: 0,
421
+ DisplayName: 'BYE',
422
+ ClubId: 1,
423
+ ShowData: true,
424
+ Images: [],
425
+ Club: {
426
+ Name: 'Acme Fencing Club',
427
+ Color1: 'navy',
428
+ Color2: 'rose'
429
+ },
430
+ EventPersons: []
431
+ },
432
+ Person2: {
433
+ PersonId: 0,
434
+ DisplayName: 'BYE',
435
+ ClubId: 1,
436
+ ShowData: true,
437
+ Images: [],
438
+ Club: {
439
+ Name: 'Acme Fencing Club'
440
+ },
441
+ EventPersons: []
442
+ },
443
+ Pool: {
444
+ RingName: 'DE Bracket'
445
+ }
446
+ }
447
+ ]
448
+ }
449
+ ],
450
+ event: {
451
+ EventId: 29,
452
+ TournamentId: 63,
453
+ EventName: 'Super Fun Smallsword',
454
+ Date: '2024-10-24',
455
+ StartTime: '15:00:00',
456
+ NumberOfRings: 2,
457
+ NumberOfPools: 2,
458
+ PoolSize: 6,
459
+ Flights: 1,
460
+ WeaponId: 11,
461
+ Status: 'de',
462
+ Present: 8,
463
+ Absent: 0,
464
+ Removed: 0,
465
+ EventRules: [
466
+ {
467
+ EventId: 29,
468
+ RuleId: 1,
469
+ RuleValue: '120',
470
+ Rules: {
471
+ RuleName: 'PoolTime',
472
+ Context: 'pool'
473
+ }
474
+ },
475
+ {
476
+ EventId: 29,
477
+ RuleId: 2,
478
+ RuleValue: '7',
479
+ Rules: {
480
+ RuleName: 'PoolMaxPoints',
481
+ Context: 'pool'
639
482
  }
483
+ },
484
+ {
485
+ EventId: 29,
486
+ RuleId: 3,
487
+ RuleValue: '120',
488
+ Rules: {
489
+ RuleName: 'DETime',
490
+ Context: 'de'
491
+ }
492
+ },
493
+ {
494
+ EventId: 29,
495
+ RuleId: 4,
496
+ RuleValue: '7',
497
+ Rules: {
498
+ RuleName: 'DEMaxPoints',
499
+ Context: 'de'
500
+ }
501
+ },
502
+ {
503
+ EventId: 29,
504
+ RuleId: 5,
505
+ RuleValue: 'true',
506
+ Rules: {
507
+ RuleName: 'DE3rdFenceOff',
508
+ Context: 'de'
509
+ }
510
+ },
511
+ {
512
+ EventId: 29,
513
+ RuleId: 9,
514
+ RuleValue: 'Win Percent,Win Count,Indicator,Points Scored',
515
+ Rules: {
516
+ RuleName: 'DEPromotionOrder',
517
+ Context: 'de'
518
+ }
519
+ },
520
+ {
521
+ EventId: 29,
522
+ RuleId: 10,
523
+ RuleValue: '100%',
524
+ Rules: {
525
+ RuleName: 'DENumOfPromotion',
526
+ Context: 'de'
527
+ }
528
+ },
529
+ {
530
+ EventId: 29,
531
+ RuleId: 11,
532
+ RuleValue: 'M2 - MeyerSquared',
533
+ Rules: {
534
+ RuleName: 'PoolSeeding',
535
+ Context: 'pool'
536
+ }
537
+ },
538
+ {
539
+ EventId: 29,
540
+ RuleId: 14,
541
+ RuleValue: '64',
542
+ Rules: {
543
+ RuleName: 'CutOffNumber',
544
+ Context: 'event'
545
+ }
546
+ }
547
+ ],
548
+ Weapon: {
549
+ HRWeaponId: null
550
+ }
551
+ },
552
+ eventRules: [
553
+ {
554
+ EventId: 29,
555
+ RuleId: 1,
556
+ RuleValue: '120',
557
+ Rules: {
558
+ RuleName: 'PoolTime',
559
+ Context: 'pool'
560
+ }
561
+ },
562
+ {
563
+ EventId: 29,
564
+ RuleId: 2,
565
+ RuleValue: '7',
566
+ Rules: {
567
+ RuleName: 'PoolMaxPoints',
568
+ Context: 'pool'
569
+ }
570
+ },
571
+ {
572
+ EventId: 29,
573
+ RuleId: 3,
574
+ RuleValue: '120',
575
+ Rules: {
576
+ RuleName: 'DETime',
577
+ Context: 'de'
578
+ }
579
+ },
580
+ {
581
+ EventId: 29,
582
+ RuleId: 4,
583
+ RuleValue: '7',
584
+ Rules: {
585
+ RuleName: 'DEMaxPoints',
586
+ Context: 'de'
587
+ }
588
+ },
589
+ {
590
+ EventId: 29,
591
+ RuleId: 5,
592
+ RuleValue: 'true',
593
+ Rules: {
594
+ RuleName: 'DE3rdFenceOff',
595
+ Context: 'de'
596
+ }
597
+ },
598
+ {
599
+ EventId: 29,
600
+ RuleId: 9,
601
+ RuleValue: 'Win Percent,Win Count,Indicator,Points Scored',
602
+ Rules: {
603
+ RuleName: 'DEPromotionOrder',
604
+ Context: 'de'
605
+ }
606
+ },
607
+ {
608
+ EventId: 29,
609
+ RuleId: 10,
610
+ RuleValue: '100%',
611
+ Rules: {
612
+ RuleName: 'DENumOfPromotion',
613
+ Context: 'de'
614
+ }
615
+ },
616
+ {
617
+ EventId: 29,
618
+ RuleId: 11,
619
+ RuleValue: 'M2 - MeyerSquared',
620
+ Rules: {
621
+ RuleName: 'PoolSeeding',
622
+ Context: 'pool'
623
+ }
624
+ },
625
+ {
626
+ EventId: 29,
627
+ RuleId: 14,
628
+ RuleValue: '64',
629
+ Rules: {
630
+ RuleName: 'CutOffNumber',
631
+ Context: 'event'
632
+ }
640
633
  }
634
+ ],
635
+ hostingClubColors: {
636
+ Color1: 'navy',
637
+ Color2: 'rose'
638
+ }
639
+ };
641
640
 
642
- export default getDEWithBouts;
641
+ export default getDEWithBouts;