@dcrackel/hematournamentui 1.0.679 → 1.0.682
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/HemaTournamentUI-lib.es.js +340 -319
- package/dist/HemaTournamentUI-lib.umd.js +2 -2
- package/dist/hematournamentui.css +1 -1
- package/package.json +8 -8
- package/src/stories/Organisms/Containers/Tableau/Tableau.vue +23 -10
- package/src/stories/Templates/TournamentManagement/TournamentManagement.vue +60 -44
|
@@ -309,7 +309,7 @@ function up(t, e, n, r, i, o) {
|
|
|
309
309
|
class: U(r.classes)
|
|
310
310
|
}, st(n.label), 3);
|
|
311
311
|
}
|
|
312
|
-
const
|
|
312
|
+
const x8 = /* @__PURE__ */ ie(cp, [["render", up]]), dp = {
|
|
313
313
|
name: "BaseText",
|
|
314
314
|
props: {
|
|
315
315
|
text: {
|
|
@@ -631,7 +631,7 @@ function Cp(t, e, n, r, i, o) {
|
|
|
631
631
|
]))
|
|
632
632
|
]);
|
|
633
633
|
}
|
|
634
|
-
const
|
|
634
|
+
const D8 = /* @__PURE__ */ ie(hp, [["render", Cp]]), Ip = {
|
|
635
635
|
name: "BaseButton",
|
|
636
636
|
components: { BaseText: Ee, BaseIcon: Ke },
|
|
637
637
|
emits: ["buttonClick"],
|
|
@@ -1262,7 +1262,7 @@ function Vp(t, e, n, r, i, o) {
|
|
|
1262
1262
|
_: 1
|
|
1263
1263
|
});
|
|
1264
1264
|
}
|
|
1265
|
-
const
|
|
1265
|
+
const k8 = /* @__PURE__ */ ie(jp, [["render", Vp]]), Xp = {
|
|
1266
1266
|
name: "TitledInput",
|
|
1267
1267
|
components: { BaseIcon: Ke, BaseInput: sr, BaseText: Ee },
|
|
1268
1268
|
props: {
|
|
@@ -11146,7 +11146,7 @@ function lw(t, e, n, r, i, o) {
|
|
|
11146
11146
|
_: 1
|
|
11147
11147
|
});
|
|
11148
11148
|
}
|
|
11149
|
-
const
|
|
11149
|
+
const S8 = /* @__PURE__ */ ie(sw, [["render", lw]]), Gc = {
|
|
11150
11150
|
subpremise: "short_name",
|
|
11151
11151
|
street_number: "short_name",
|
|
11152
11152
|
route: "long_name",
|
|
@@ -12285,7 +12285,7 @@ function my(t, e, n, r, i, o) {
|
|
|
12285
12285
|
], 2)
|
|
12286
12286
|
]);
|
|
12287
12287
|
}
|
|
12288
|
-
const
|
|
12288
|
+
const M8 = /* @__PURE__ */ ie(ly, [["render", my]]), py = {
|
|
12289
12289
|
name: "PoolGrid",
|
|
12290
12290
|
components: { BaseText: Ee },
|
|
12291
12291
|
props: {
|
|
@@ -32016,11 +32016,26 @@ const yO = {
|
|
|
32016
32016
|
handleCancel() {
|
|
32017
32017
|
this.$emit("edit:cancel");
|
|
32018
32018
|
},
|
|
32019
|
-
|
|
32020
|
-
|
|
32019
|
+
transition(t) {
|
|
32020
|
+
const n = {
|
|
32021
|
+
Basic: {
|
|
32022
|
+
NEXT: { to: "Hosting", guard: () => this.validateAllFields() },
|
|
32023
|
+
BACK: { to: "Hosting" }
|
|
32024
|
+
},
|
|
32025
|
+
Hosting: {
|
|
32026
|
+
NEXT: { to: "Basic" },
|
|
32027
|
+
BACK: { to: "Basic" }
|
|
32028
|
+
}
|
|
32029
|
+
}[this.currentTab];
|
|
32030
|
+
if (!n) return;
|
|
32031
|
+
const r = n[t];
|
|
32032
|
+
r && (r.guard && !r.guard() || (this.currentTab = typeof r.to == "function" ? r.to(this.currentTab) : r.to));
|
|
32021
32033
|
},
|
|
32022
32034
|
handleNext() {
|
|
32023
|
-
this.
|
|
32035
|
+
this.transition("NEXT");
|
|
32036
|
+
},
|
|
32037
|
+
handleBack() {
|
|
32038
|
+
this.transition("BACK");
|
|
32024
32039
|
},
|
|
32025
32040
|
handleSubmit() {
|
|
32026
32041
|
this.validateAllFields() && (this.saveButtonLabel = "Saving...", setTimeout(() => {
|
|
@@ -32066,7 +32081,7 @@ function kO(t, e, n, r, i, o) {
|
|
|
32066
32081
|
"onUpdate:tournament": o.updateTournament
|
|
32067
32082
|
}, null, 8, ["tournament", "isNewTournament", "onUpdate:tournament"])) : v("", !0),
|
|
32068
32083
|
i.isNewTournament ? (m(), I("div", xO, [
|
|
32069
|
-
|
|
32084
|
+
i.currentTab === "Basic" ? (m(), X(c, {
|
|
32070
32085
|
key: 0,
|
|
32071
32086
|
class: "w-1/2 ml-1 h-12",
|
|
32072
32087
|
color: "neutral",
|
|
@@ -32074,8 +32089,8 @@ function kO(t, e, n, r, i, o) {
|
|
|
32074
32089
|
size: "sm",
|
|
32075
32090
|
type: "primary",
|
|
32076
32091
|
onButtonClick: o.handleCancel
|
|
32077
|
-
}, null, 8, ["onButtonClick"])),
|
|
32078
|
-
i.currentTab === "
|
|
32092
|
+
}, null, 8, ["onButtonClick"])) : v("", !0),
|
|
32093
|
+
i.currentTab === "Hosting" ? (m(), X(c, {
|
|
32079
32094
|
key: 1,
|
|
32080
32095
|
class: "w-1/2 ml-1 h-12",
|
|
32081
32096
|
color: "neutral",
|
|
@@ -32084,7 +32099,7 @@ function kO(t, e, n, r, i, o) {
|
|
|
32084
32099
|
type: "primary",
|
|
32085
32100
|
onButtonClick: o.handleBack
|
|
32086
32101
|
}, null, 8, ["onButtonClick"])) : v("", !0),
|
|
32087
|
-
|
|
32102
|
+
i.currentTab === "Basic" ? (m(), X(c, {
|
|
32088
32103
|
key: 2,
|
|
32089
32104
|
class: "w-1/2 mr-1 transition-all duration-300 ease-in-out h-12",
|
|
32090
32105
|
color: "neutral",
|
|
@@ -32093,8 +32108,8 @@ function kO(t, e, n, r, i, o) {
|
|
|
32093
32108
|
size: "sm",
|
|
32094
32109
|
type: "primary",
|
|
32095
32110
|
onButtonClick: o.handleNext
|
|
32096
|
-
}, null, 8, ["onButtonClick"])),
|
|
32097
|
-
i.currentTab === "
|
|
32111
|
+
}, null, 8, ["onButtonClick"])) : v("", !0),
|
|
32112
|
+
i.currentTab === "Hosting" ? (m(), X(c, {
|
|
32098
32113
|
key: 3,
|
|
32099
32114
|
class: "w-1/2 mr-1 transition-all duration-300 ease-in-out h-12",
|
|
32100
32115
|
color: "neutral",
|
|
@@ -32118,7 +32133,7 @@ function kO(t, e, n, r, i, o) {
|
|
|
32118
32133
|
]))
|
|
32119
32134
|
]);
|
|
32120
32135
|
}
|
|
32121
|
-
const
|
|
32136
|
+
const O8 = /* @__PURE__ */ ie(yO, [["render", kO]]), SO = {
|
|
32122
32137
|
name: "EventStatusBox",
|
|
32123
32138
|
components: { BaseText: Ee },
|
|
32124
32139
|
props: {
|
|
@@ -32637,7 +32652,7 @@ function vP(t, e, n, r, i, o) {
|
|
|
32637
32652
|
])
|
|
32638
32653
|
]);
|
|
32639
32654
|
}
|
|
32640
|
-
const
|
|
32655
|
+
const P8 = /* @__PURE__ */ ie(gP, [["render", vP]]), wP = "data:image/png;base64,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", yP = {
|
|
32641
32656
|
name: "AdminLeftMenu",
|
|
32642
32657
|
components: { BaseText: Ee, BaseIcon: Ke, BaseButton: He },
|
|
32643
32658
|
props: {
|
|
@@ -32792,7 +32807,7 @@ function NP(t, e, n, r, i, o) {
|
|
|
32792
32807
|
])) : v("", !0)
|
|
32793
32808
|
], 64);
|
|
32794
32809
|
}
|
|
32795
|
-
const
|
|
32810
|
+
const R8 = /* @__PURE__ */ ie(yP, [["render", NP]]), FP = {
|
|
32796
32811
|
name: "ButtonBar",
|
|
32797
32812
|
components: { BaseText: Ee },
|
|
32798
32813
|
props: {
|
|
@@ -33901,7 +33916,7 @@ function X4(t, e, n, r, i, o) {
|
|
|
33901
33916
|
])
|
|
33902
33917
|
]);
|
|
33903
33918
|
}
|
|
33904
|
-
const
|
|
33919
|
+
const z8 = /* @__PURE__ */ ie(F4, [["render", X4]]), Z4 = {
|
|
33905
33920
|
name: "PoolSummary",
|
|
33906
33921
|
components: { ToggleSwitch: Wr, BaseIcon: Ke, BaseButton: He, BaseText: Ee, CounterBox: Ra, EventStatusBox: Qo },
|
|
33907
33922
|
props: {
|
|
@@ -34779,7 +34794,7 @@ function JR(t, e, n, r, i, o) {
|
|
|
34779
34794
|
])
|
|
34780
34795
|
]);
|
|
34781
34796
|
}
|
|
34782
|
-
const
|
|
34797
|
+
const N8 = /* @__PURE__ */ ie(qR, [["render", JR]]), WR = {
|
|
34783
34798
|
name: "StaffCard",
|
|
34784
34799
|
components: { BaseIcon: Ke, ButtonBar: Ec, BaseText: Ee },
|
|
34785
34800
|
props: {
|
|
@@ -35199,7 +35214,7 @@ function Dz(t, e, n, r, i, o) {
|
|
|
35199
35214
|
])
|
|
35200
35215
|
]);
|
|
35201
35216
|
}
|
|
35202
|
-
const
|
|
35217
|
+
const F8 = /* @__PURE__ */ ie(pz, [["render", Dz]]), kz = {
|
|
35203
35218
|
name: "BoutCardWaiting",
|
|
35204
35219
|
components: { BaseText: Ee },
|
|
35205
35220
|
props: {
|
|
@@ -38469,7 +38484,7 @@ function hL(t, e, n, r, i, o) {
|
|
|
38469
38484
|
}, null, 8, ["bout", "eventRules", "hostingClubColors", "show", "onUpdate:closeModal", "onSubmit:bout", "isCountingBackwardsMaxScore"])
|
|
38470
38485
|
]);
|
|
38471
38486
|
}
|
|
38472
|
-
const
|
|
38487
|
+
const L8 = /* @__PURE__ */ ie(KF, [["render", hL]]), fL = {
|
|
38473
38488
|
name: "PoolResultsHeader",
|
|
38474
38489
|
components: { BaseIcon: Ke, BaseButton: He, BaseText: Ee, CounterBox: Ra, EventStatusBox: Qo },
|
|
38475
38490
|
props: {
|
|
@@ -39321,7 +39336,7 @@ function r2(t, e, n, r, i, o) {
|
|
|
39321
39336
|
}, null, 8, ["show", "header-text", "body-text", "onUpdate:show", "onSubmitModal"])
|
|
39322
39337
|
]);
|
|
39323
39338
|
}
|
|
39324
|
-
const
|
|
39339
|
+
const Y8 = /* @__PURE__ */ ie(n2, [["render", r2]]), i2 = {
|
|
39325
39340
|
name: "TableauFencerCard",
|
|
39326
39341
|
components: { BaseText: Ee },
|
|
39327
39342
|
props: {
|
|
@@ -40098,11 +40113,14 @@ const Fm = /* @__PURE__ */ ie(v2, [["render", w2]]), y2 = {
|
|
|
40098
40113
|
}
|
|
40099
40114
|
},
|
|
40100
40115
|
methods: {
|
|
40116
|
+
handleBoutClick(t) {
|
|
40117
|
+
console.log("##### handleBoutClick Bout clicked:", t), t.Status === "Completed" ? this.$emit("action:editBout", t) : this.$emit("action:directingBout", t);
|
|
40118
|
+
},
|
|
40101
40119
|
handleEditBout(t) {
|
|
40102
|
-
this.$emit("action:
|
|
40120
|
+
console.log("handleEditBout!!", t), this.$emit("action:editBout", t);
|
|
40103
40121
|
},
|
|
40104
40122
|
handleDirectorBout(t) {
|
|
40105
|
-
this.$emit("action:
|
|
40123
|
+
console.log("handleDirectorBout!!", t), this.$emit("action:directingBout", t);
|
|
40106
40124
|
},
|
|
40107
40125
|
groupBoutsByRound(t) {
|
|
40108
40126
|
return t.reduce((e, n) => (e[n.RoundLabel] || (e[n.RoundLabel] = []), e[n.RoundLabel].push(n), e), {});
|
|
@@ -40111,11 +40129,11 @@ const Fm = /* @__PURE__ */ ie(v2, [["render", w2]]), y2 = {
|
|
|
40111
40129
|
}, b2 = {
|
|
40112
40130
|
key: 0,
|
|
40113
40131
|
class: "flex flex-col items-center"
|
|
40114
|
-
}, x2 = {
|
|
40132
|
+
}, x2 = ["onClick"], D2 = {
|
|
40115
40133
|
key: 1,
|
|
40116
40134
|
class: "flex w-full overflow-x-auto mt-4 scrollbar-thin"
|
|
40117
|
-
},
|
|
40118
|
-
function
|
|
40135
|
+
}, k2 = { class: "min-w-full flex" }, S2 = { class: "min-w-full flex" };
|
|
40136
|
+
function M2(t, e, n, r, i, o) {
|
|
40119
40137
|
const a = x("BaseText"), l = x("BoutCard"), A = x("TableauColumn");
|
|
40120
40138
|
return m(), I(se, null, [
|
|
40121
40139
|
n.listView ? (m(), I("section", b2, [
|
|
@@ -40134,18 +40152,21 @@ function S2(t, e, n, r, i, o) {
|
|
|
40134
40152
|
key: d.BoutId,
|
|
40135
40153
|
class: "mb-4"
|
|
40136
40154
|
}, [
|
|
40137
|
-
|
|
40138
|
-
|
|
40139
|
-
|
|
40140
|
-
|
|
40141
|
-
|
|
40142
|
-
|
|
40143
|
-
|
|
40155
|
+
f("section", {
|
|
40156
|
+
onClick: (g) => o.handleBoutClick(d)
|
|
40157
|
+
}, [
|
|
40158
|
+
h(l, {
|
|
40159
|
+
bout: d,
|
|
40160
|
+
hostingClubColors: n.hostingClubColors,
|
|
40161
|
+
editMode: !1,
|
|
40162
|
+
reorderMode: !1
|
|
40163
|
+
}, null, 8, ["bout", "hostingClubColors"])
|
|
40164
|
+
], 8, x2)
|
|
40144
40165
|
]))), 128))
|
|
40145
40166
|
]))), 128))
|
|
40146
40167
|
])) : v("", !0),
|
|
40147
|
-
n.listView ? v("", !0) : (m(), I("section",
|
|
40148
|
-
f("div",
|
|
40168
|
+
n.listView ? v("", !0) : (m(), I("section", D2, [
|
|
40169
|
+
f("div", k2, [
|
|
40149
40170
|
(m(!0), I(se, null, ve(o.groupedBouts.winnerBouts, (c, u) => (m(), I("div", { key: u }, [
|
|
40150
40171
|
h(A, {
|
|
40151
40172
|
bouts: c,
|
|
@@ -40159,7 +40180,7 @@ function S2(t, e, n, r, i, o) {
|
|
|
40159
40180
|
}, null, 8, ["bouts", "hostingClubColors", "roundName", "bracketSize", "largeCards", "isCountingBackwardsMaxScore", "onAction:editBout", "onAction:directingBout"])
|
|
40160
40181
|
]))), 128))
|
|
40161
40182
|
]),
|
|
40162
|
-
f("div",
|
|
40183
|
+
f("div", S2, [
|
|
40163
40184
|
(m(!0), I(se, null, ve(o.groupedBouts.loserBouts, (c, u) => (m(), I("div", { key: u }, [
|
|
40164
40185
|
h(A, {
|
|
40165
40186
|
bouts: c,
|
|
@@ -40176,11 +40197,11 @@ function S2(t, e, n, r, i, o) {
|
|
|
40176
40197
|
]))
|
|
40177
40198
|
], 64);
|
|
40178
40199
|
}
|
|
40179
|
-
const
|
|
40200
|
+
const T2 = /* @__PURE__ */ ie(y2, [["render", M2], ["__scopeId", "data-v-db52e5e7"]]), O2 = {
|
|
40180
40201
|
components: {
|
|
40181
40202
|
ServerConnected: Qc,
|
|
40182
40203
|
TableauColumn: Fm,
|
|
40183
|
-
Tableau:
|
|
40204
|
+
Tableau: T2,
|
|
40184
40205
|
EditBoutModal: Rm,
|
|
40185
40206
|
DirectorModal: Pm,
|
|
40186
40207
|
BoutCard: vc,
|
|
@@ -40319,11 +40340,11 @@ const M2 = /* @__PURE__ */ ie(y2, [["render", S2], ["__scopeId", "data-v-266aa5e
|
|
|
40319
40340
|
this.$emit("penalty:remove", t);
|
|
40320
40341
|
}
|
|
40321
40342
|
}
|
|
40322
|
-
},
|
|
40343
|
+
}, P2 = {
|
|
40323
40344
|
key: 0,
|
|
40324
40345
|
class: "w-full flex justify-center items-center"
|
|
40325
|
-
},
|
|
40326
|
-
function
|
|
40346
|
+
}, R2 = { class: "text-center mb-10" }, z2 = ["src"];
|
|
40347
|
+
function N2(t, e, n, r, i, o) {
|
|
40327
40348
|
const a = x("EditEventsTopMenu"), l = x("ToggleHeader"), A = x("Tableau"), c = x("BaseText"), u = x("DirectorModal"), d = x("EditBoutModal");
|
|
40328
40349
|
return m(), I("section", null, [
|
|
40329
40350
|
h(a, {
|
|
@@ -40353,13 +40374,13 @@ function z2(t, e, n, r, i, o) {
|
|
|
40353
40374
|
"onAction:editBout": o.editBout,
|
|
40354
40375
|
"onAction:directingBout": o.directBout
|
|
40355
40376
|
}, null, 8, ["bouts", "hostingClubColors", "bracketSize", "largeCards", "listView", "isCountingBackwardsMaxScore", "onAction:editBout", "onAction:directingBout"]),
|
|
40356
|
-
n.bouts.length < 1 ? (m(), I("div",
|
|
40357
|
-
f("div",
|
|
40377
|
+
n.bouts.length < 1 ? (m(), I("div", P2, [
|
|
40378
|
+
f("div", R2, [
|
|
40358
40379
|
f("img", {
|
|
40359
40380
|
alt: "Small desert scene with wind blowing.",
|
|
40360
40381
|
class: "w-96 mx-auto",
|
|
40361
40382
|
src: i.emptyDesertIcon
|
|
40362
|
-
}, null, 8,
|
|
40383
|
+
}, null, 8, z2),
|
|
40363
40384
|
h(c, {
|
|
40364
40385
|
text: "Nothing to Show Yet!",
|
|
40365
40386
|
size: "lg",
|
|
@@ -40405,7 +40426,7 @@ function z2(t, e, n, r, i, o) {
|
|
|
40405
40426
|
}, null, 8, ["bout", "eventRules", "hostingClubColors", "show", "isCountingBackwardsMaxScore", "onUpdate:closeModal", "onSubmit:bout"])
|
|
40406
40427
|
]);
|
|
40407
40428
|
}
|
|
40408
|
-
const
|
|
40429
|
+
const H8 = /* @__PURE__ */ ie(O2, [["render", N2]]), F2 = {
|
|
40409
40430
|
components: {
|
|
40410
40431
|
EditEventWizard: Vg,
|
|
40411
40432
|
ToggleHeader: za,
|
|
@@ -40458,8 +40479,8 @@ const Y8 = /* @__PURE__ */ ie(T2, [["render", z2]]), N2 = {
|
|
|
40458
40479
|
this.windowWidth = window.innerWidth;
|
|
40459
40480
|
}
|
|
40460
40481
|
}
|
|
40461
|
-
},
|
|
40462
|
-
function
|
|
40482
|
+
}, L2 = { class: "w-full flex flex-row justify-center mt-3" };
|
|
40483
|
+
function Y2(t, e, n, r, i, o) {
|
|
40463
40484
|
const a = x("EditEventsTopMenu"), l = x("EditEventWizard");
|
|
40464
40485
|
return m(), I("section", null, [
|
|
40465
40486
|
h(a, {
|
|
@@ -40467,7 +40488,7 @@ function L2(t, e, n, r, i, o) {
|
|
|
40467
40488
|
tabs: i.tabs(n.userLevel, o.isMobile),
|
|
40468
40489
|
onTabMenuClick: o.handleTabMenuClick
|
|
40469
40490
|
}, null, 8, ["tabs", "onTabMenuClick"]),
|
|
40470
|
-
f("div",
|
|
40491
|
+
f("div", L2, [
|
|
40471
40492
|
h(l, {
|
|
40472
40493
|
event: n.event,
|
|
40473
40494
|
rules: n.rules,
|
|
@@ -40478,7 +40499,7 @@ function L2(t, e, n, r, i, o) {
|
|
|
40478
40499
|
])
|
|
40479
40500
|
]);
|
|
40480
40501
|
}
|
|
40481
|
-
const
|
|
40502
|
+
const q8 = /* @__PURE__ */ ie(F2, [["render", Y2]]), H2 = {
|
|
40482
40503
|
components: {
|
|
40483
40504
|
FencerFinalResultCard: Ca,
|
|
40484
40505
|
FencerPoolResultsCard: zm,
|
|
@@ -40496,24 +40517,24 @@ const H8 = /* @__PURE__ */ ie(N2, [["render", L2]]), Y2 = {
|
|
|
40496
40517
|
emptyDesertIcon: tn
|
|
40497
40518
|
};
|
|
40498
40519
|
}
|
|
40499
|
-
},
|
|
40500
|
-
function
|
|
40520
|
+
}, q2 = { class: "mt-3" }, j2 = { class: "flex flex-col w-full relative" }, K2 = { key: 0 }, U2 = ["src"], G2 = { class: "w-full flex justify-center" }, J2 = { class: "w-96" };
|
|
40521
|
+
function W2(t, e, n, r, i, o) {
|
|
40501
40522
|
const a = x("BaseText"), l = x("FencerFinalResultCard");
|
|
40502
|
-
return m(), I("div",
|
|
40503
|
-
f("div",
|
|
40523
|
+
return m(), I("div", q2, [
|
|
40524
|
+
f("div", j2, [
|
|
40504
40525
|
n.finalResults ? (m(!0), I(se, { key: 1 }, ve(n.finalResults, (A) => (m(), I("div", {
|
|
40505
40526
|
key: A.personId,
|
|
40506
40527
|
class: "flex flex-col py-1"
|
|
40507
40528
|
}, [
|
|
40508
40529
|
h(l, { result: A }, null, 8, ["result"])
|
|
40509
|
-
]))), 128)) : (m(), I("section",
|
|
40530
|
+
]))), 128)) : (m(), I("section", K2, [
|
|
40510
40531
|
f("img", {
|
|
40511
40532
|
alt: "Small desert scene with wind blowing.",
|
|
40512
40533
|
class: "w-96 mx-auto",
|
|
40513
40534
|
src: i.emptyDesertIcon
|
|
40514
|
-
}, null, 8,
|
|
40515
|
-
f("div",
|
|
40516
|
-
f("div",
|
|
40535
|
+
}, null, 8, U2),
|
|
40536
|
+
f("div", G2, [
|
|
40537
|
+
f("div", J2, [
|
|
40517
40538
|
h(a, {
|
|
40518
40539
|
text: "No Results Yet!",
|
|
40519
40540
|
size: "lg",
|
|
@@ -40533,7 +40554,7 @@ function J2(t, e, n, r, i, o) {
|
|
|
40533
40554
|
])
|
|
40534
40555
|
]);
|
|
40535
40556
|
}
|
|
40536
|
-
const
|
|
40557
|
+
const V2 = /* @__PURE__ */ ie(H2, [["render", W2]]), X2 = {
|
|
40537
40558
|
name: "EventFinalResultsHeader",
|
|
40538
40559
|
components: { BaseButton: He, BaseIcon: Ke, BaseText: Ee, CounterBox: Ra, EventStatusBox: Qo },
|
|
40539
40560
|
props: {
|
|
@@ -40555,14 +40576,14 @@ const W2 = /* @__PURE__ */ ie(Y2, [["render", J2]]), V2 = {
|
|
|
40555
40576
|
this.$emit("export:HemaRatings");
|
|
40556
40577
|
}
|
|
40557
40578
|
}
|
|
40558
|
-
},
|
|
40579
|
+
}, Z2 = { class: "hidden md:flex bg-poolSetup py-1 px-4 rounded-xl justify-between items-center shadow border border-dropdownSelect" }, _2 = { class: "flex flex-col pt-2" }, $2 = { class: "flex rounded-xl border border-dropdownSelect my-2 px-4 pt-2 pb-4 bg-neutral w-1/3 shadow" }, eY = { class: "mt-1 w-10 mr-3" }, tY = { class: "w-full" }, nY = ["innerHTML"], rY = { class: "flex flex-col mb-2 mr-10 w-50" }, iY = {
|
|
40559
40580
|
key: 0,
|
|
40560
40581
|
class: "w-52"
|
|
40561
40582
|
};
|
|
40562
|
-
function
|
|
40583
|
+
function oY(t, e, n, r, i, o) {
|
|
40563
40584
|
const a = x("BaseText"), l = x("BaseIcon"), A = x("BaseButton");
|
|
40564
|
-
return m(), I("div",
|
|
40565
|
-
f("section",
|
|
40585
|
+
return m(), I("div", Z2, [
|
|
40586
|
+
f("section", _2, [
|
|
40566
40587
|
h(a, {
|
|
40567
40588
|
text: n.event.EventName,
|
|
40568
40589
|
size: "lg",
|
|
@@ -40577,8 +40598,8 @@ function iY(t, e, n, r, i, o) {
|
|
|
40577
40598
|
}, null, 8, ["text"]),
|
|
40578
40599
|
e[0] || (e[0] = f("span", { class: "h-8" }, null, -1))
|
|
40579
40600
|
]),
|
|
40580
|
-
f("section",
|
|
40581
|
-
f("div",
|
|
40601
|
+
f("section", $2, [
|
|
40602
|
+
f("div", eY, [
|
|
40582
40603
|
h(l, {
|
|
40583
40604
|
"icon-name": "fa-medal",
|
|
40584
40605
|
size: "3xl",
|
|
@@ -40586,7 +40607,7 @@ function iY(t, e, n, r, i, o) {
|
|
|
40586
40607
|
class: ""
|
|
40587
40608
|
})
|
|
40588
40609
|
]),
|
|
40589
|
-
f("div",
|
|
40610
|
+
f("div", tY, [
|
|
40590
40611
|
h(a, {
|
|
40591
40612
|
text: o.headerText,
|
|
40592
40613
|
size: "md",
|
|
@@ -40597,11 +40618,11 @@ function iY(t, e, n, r, i, o) {
|
|
|
40597
40618
|
f("div", {
|
|
40598
40619
|
class: "text-primaryHighlight text-xs",
|
|
40599
40620
|
innerHTML: o.headerBodyText
|
|
40600
|
-
}, null, 8,
|
|
40621
|
+
}, null, 8, nY)
|
|
40601
40622
|
])
|
|
40602
40623
|
]),
|
|
40603
|
-
f("section",
|
|
40604
|
-
n.event.Status !== "completed" ? (m(), I("div",
|
|
40624
|
+
f("section", rY, [
|
|
40625
|
+
n.event.Status !== "completed" ? (m(), I("div", iY)) : v("", !0),
|
|
40605
40626
|
n.event.Status === "completed" ? (m(), X(a, {
|
|
40606
40627
|
key: 1,
|
|
40607
40628
|
text: "Final Results",
|
|
@@ -40623,9 +40644,9 @@ function iY(t, e, n, r, i, o) {
|
|
|
40623
40644
|
])
|
|
40624
40645
|
]);
|
|
40625
40646
|
}
|
|
40626
|
-
const
|
|
40647
|
+
const sY = /* @__PURE__ */ ie(X2, [["render", oY]]), aY = {
|
|
40627
40648
|
name: "EventFinalResult",
|
|
40628
|
-
components: { BaseText: Ee, EventFinalResultsHeader:
|
|
40649
|
+
components: { BaseText: Ee, EventFinalResultsHeader: sY, FinalResultsTable: V2, EditEventsTopMenu: Qn },
|
|
40629
40650
|
props: {
|
|
40630
40651
|
event: {
|
|
40631
40652
|
type: Object,
|
|
@@ -40669,13 +40690,13 @@ const oY = /* @__PURE__ */ ie(V2, [["render", iY]]), sY = {
|
|
|
40669
40690
|
this.windowWidth = window.innerWidth;
|
|
40670
40691
|
}
|
|
40671
40692
|
}
|
|
40672
|
-
},
|
|
40693
|
+
}, lY = { class: "" }, AY = { class: "md:mt-4" }, cY = {
|
|
40673
40694
|
key: 0,
|
|
40674
40695
|
class: "w-full flex justify-center items-center"
|
|
40675
|
-
},
|
|
40676
|
-
function
|
|
40696
|
+
}, uY = { class: "text-center mb-10" }, dY = ["src"];
|
|
40697
|
+
function gY(t, e, n, r, i, o) {
|
|
40677
40698
|
const a = x("EditEventsTopMenu"), l = x("EventFinalResultsHeader"), A = x("FinalResultsTable"), c = x("BaseText");
|
|
40678
|
-
return m(), I("section",
|
|
40699
|
+
return m(), I("section", lY, [
|
|
40679
40700
|
h(a, {
|
|
40680
40701
|
currentTab: "Final",
|
|
40681
40702
|
tabs: i.tabs(n.role, o.isMobile),
|
|
@@ -40685,15 +40706,15 @@ function dY(t, e, n, r, i, o) {
|
|
|
40685
40706
|
event: n.event,
|
|
40686
40707
|
"onExport:HemaRatings": o.handleExportToHemaRatings
|
|
40687
40708
|
}, null, 8, ["event", "onExport:HemaRatings"]),
|
|
40688
|
-
f("div",
|
|
40709
|
+
f("div", AY, [
|
|
40689
40710
|
h(A, { finalResults: n.finalResults }, null, 8, ["finalResults"]),
|
|
40690
|
-
n.finalResults.length < 1 ? (m(), I("div",
|
|
40691
|
-
f("div",
|
|
40711
|
+
n.finalResults.length < 1 ? (m(), I("div", cY, [
|
|
40712
|
+
f("div", uY, [
|
|
40692
40713
|
f("img", {
|
|
40693
40714
|
alt: "Small desert scene with wind blowing.",
|
|
40694
40715
|
class: "w-96 mx-auto",
|
|
40695
40716
|
src: i.emptyDesertIcon
|
|
40696
|
-
}, null, 8,
|
|
40717
|
+
}, null, 8, dY),
|
|
40697
40718
|
h(c, {
|
|
40698
40719
|
text: "Nothing to Show Yet!",
|
|
40699
40720
|
size: "lg",
|
|
@@ -40718,7 +40739,7 @@ function dY(t, e, n, r, i, o) {
|
|
|
40718
40739
|
])
|
|
40719
40740
|
]);
|
|
40720
40741
|
}
|
|
40721
|
-
const
|
|
40742
|
+
const j8 = /* @__PURE__ */ ie(aY, [["render", gY]]), hY = {
|
|
40722
40743
|
name: "KioskCardPC",
|
|
40723
40744
|
components: { BaseIcon: Ke, BaseText: Ee, DropDownMenu: qt, ButtonBar: Ec, BaseButton: He },
|
|
40724
40745
|
emits: ["update:kiosk", "update:ringChange", "update:staffChange", "update:eventChange", "update:selectedType", "update:assignToMe", "update:editKiosk", "remove:kiosk"],
|
|
@@ -40878,35 +40899,35 @@ const q8 = /* @__PURE__ */ ie(sY, [["render", dY]]), gY = {
|
|
|
40878
40899
|
this.$emit("remove:kiosk", this.editableKiosk);
|
|
40879
40900
|
}
|
|
40880
40901
|
}
|
|
40881
|
-
},
|
|
40902
|
+
}, fY = { class: "flex items-center border rounded-lg shadow-md bg-poolBox hover:border-bright p-2 md:p-3" }, mY = { class: "flex ml-2 md:mr-6" }, pY = { class: "flex flex-col w-full justify-start" }, CY = { class: "hidden md:flex w-full justify-between" }, IY = { class: "flex justify-start w-full mt-0.5" }, BY = {
|
|
40882
40903
|
key: 0,
|
|
40883
40904
|
class: "flex w-64"
|
|
40884
|
-
},
|
|
40905
|
+
}, EY = {
|
|
40885
40906
|
key: 1,
|
|
40886
40907
|
class: "w-64"
|
|
40887
|
-
},
|
|
40908
|
+
}, QY = {
|
|
40888
40909
|
key: 2,
|
|
40889
40910
|
class: "flex w-1/2 mx-4"
|
|
40890
|
-
},
|
|
40911
|
+
}, vY = {
|
|
40891
40912
|
key: 1,
|
|
40892
40913
|
class: "w-1/2"
|
|
40893
|
-
},
|
|
40914
|
+
}, wY = {
|
|
40894
40915
|
key: 3,
|
|
40895
40916
|
class: "flex w-1/2 mx-4"
|
|
40896
|
-
},
|
|
40917
|
+
}, yY = { class: "flex justify-end w-full pr-4" }, bY = { class: "flex md:hidden justify-between" }, xY = {
|
|
40897
40918
|
key: 0,
|
|
40898
40919
|
class: "flex"
|
|
40899
|
-
},
|
|
40920
|
+
}, DY = {
|
|
40900
40921
|
key: 1,
|
|
40901
40922
|
class: "flex"
|
|
40902
|
-
},
|
|
40923
|
+
}, kY = {
|
|
40903
40924
|
key: 2,
|
|
40904
40925
|
class: "flex"
|
|
40905
|
-
},
|
|
40906
|
-
function
|
|
40926
|
+
}, SY = { class: "hidden md:block items-center text-center rounded-tr-lg rounded-br-lg px-2" };
|
|
40927
|
+
function MY(t, e, n, r, i, o) {
|
|
40907
40928
|
const a = x("BaseIcon"), l = x("BaseText"), A = x("DropDownMenu"), c = x("ButtonBar"), u = x("BaseButton");
|
|
40908
|
-
return m(), I("div",
|
|
40909
|
-
f("div",
|
|
40929
|
+
return m(), I("div", fY, [
|
|
40930
|
+
f("div", mY, [
|
|
40910
40931
|
h(a, {
|
|
40911
40932
|
"icon-name": o.getIcon,
|
|
40912
40933
|
size: "",
|
|
@@ -40914,8 +40935,8 @@ function SY(t, e, n, r, i, o) {
|
|
|
40914
40935
|
color: o.getIconColorByConnected
|
|
40915
40936
|
}, null, 8, ["icon-name", "color"])
|
|
40916
40937
|
]),
|
|
40917
|
-
f("div",
|
|
40918
|
-
f("div",
|
|
40938
|
+
f("div", pY, [
|
|
40939
|
+
f("div", CY, [
|
|
40919
40940
|
f("div", {
|
|
40920
40941
|
class: U(["flex w-11 md:w-16 rounded-lg justify-center mr-4 mt-1", "bg-" + o.getIconColorByConnected])
|
|
40921
40942
|
}, [
|
|
@@ -40926,8 +40947,8 @@ function SY(t, e, n, r, i, o) {
|
|
|
40926
40947
|
class: "w-40 mt-1.5 text-center"
|
|
40927
40948
|
}, null, 8, ["text"])
|
|
40928
40949
|
], 2),
|
|
40929
|
-
f("div",
|
|
40930
|
-
n.userRole !== "Director" ? (m(), I("div",
|
|
40950
|
+
f("div", IY, [
|
|
40951
|
+
n.userRole !== "Director" ? (m(), I("div", BY, [
|
|
40931
40952
|
h(l, {
|
|
40932
40953
|
text: i.editableKiosk.Type === "ScoreBoard" ? "Ring" : "Name",
|
|
40933
40954
|
size: "md",
|
|
@@ -40942,7 +40963,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
40942
40963
|
width: "w-40",
|
|
40943
40964
|
"onUpdate:selectedItem": o.handleRingChange
|
|
40944
40965
|
}, null, 8, ["label", "items", "selectedItem", "onUpdate:selectedItem"])
|
|
40945
|
-
])) : (m(), I("div",
|
|
40966
|
+
])) : (m(), I("div", EY, [
|
|
40946
40967
|
h(l, {
|
|
40947
40968
|
text: i.localSelectedRing.text,
|
|
40948
40969
|
size: "md",
|
|
@@ -40950,7 +40971,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
40950
40971
|
class: "mt-1.5 text-center px-4"
|
|
40951
40972
|
}, null, 8, ["text"])
|
|
40952
40973
|
])),
|
|
40953
|
-
i.editableKiosk.Type === "ScoreBoard" ? (m(), I("div",
|
|
40974
|
+
i.editableKiosk.Type === "ScoreBoard" ? (m(), I("div", QY, [
|
|
40954
40975
|
n.userRole !== "Director" ? (m(), X(A, {
|
|
40955
40976
|
key: 0,
|
|
40956
40977
|
label: "Assigned To",
|
|
@@ -40959,7 +40980,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
40959
40980
|
alignEnd: !1,
|
|
40960
40981
|
width: "max-w-56",
|
|
40961
40982
|
"onUpdate:selectedItem": o.handleStaffChange
|
|
40962
|
-
}, null, 8, ["items", "selectedItem", "onUpdate:selectedItem"])) : (m(), I("div",
|
|
40983
|
+
}, null, 8, ["items", "selectedItem", "onUpdate:selectedItem"])) : (m(), I("div", vY, [
|
|
40963
40984
|
h(l, {
|
|
40964
40985
|
text: i.localSelectedStaff.text,
|
|
40965
40986
|
size: "md",
|
|
@@ -40968,7 +40989,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
40968
40989
|
}, null, 8, ["text"])
|
|
40969
40990
|
]))
|
|
40970
40991
|
])) : v("", !0),
|
|
40971
|
-
i.editableKiosk.Type === "FlightBoard" ? (m(), I("div",
|
|
40992
|
+
i.editableKiosk.Type === "FlightBoard" ? (m(), I("div", wY, [
|
|
40972
40993
|
h(A, {
|
|
40973
40994
|
label: "Event",
|
|
40974
40995
|
items: o.formattedEvents,
|
|
@@ -40978,7 +40999,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
40978
40999
|
"onUpdate:selectedItem": o.handleEventChange
|
|
40979
41000
|
}, null, 8, ["items", "selectedItem", "onUpdate:selectedItem"])
|
|
40980
41001
|
])) : v("", !0),
|
|
40981
|
-
f("div",
|
|
41002
|
+
f("div", yY, [
|
|
40982
41003
|
n.userRole !== "Director" ? (m(), X(c, {
|
|
40983
41004
|
key: 0,
|
|
40984
41005
|
buttons: o.typeButtons,
|
|
@@ -40996,8 +41017,8 @@ function SY(t, e, n, r, i, o) {
|
|
|
40996
41017
|
])
|
|
40997
41018
|
])
|
|
40998
41019
|
]),
|
|
40999
|
-
f("div",
|
|
41000
|
-
i.editableKiosk.Type === "ScoreBoard" ? (m(), I("div",
|
|
41020
|
+
f("div", bY, [
|
|
41021
|
+
i.editableKiosk.Type === "ScoreBoard" ? (m(), I("div", xY, [
|
|
41001
41022
|
h(l, {
|
|
41002
41023
|
text: i.localSelectedRing.text,
|
|
41003
41024
|
size: "xs",
|
|
@@ -41011,7 +41032,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
41011
41032
|
class: "mt-2 overflow-hidden"
|
|
41012
41033
|
}, null, 8, ["text"])
|
|
41013
41034
|
])) : v("", !0),
|
|
41014
|
-
i.editableKiosk.Type === "FlightBoard" ? (m(), I("div",
|
|
41035
|
+
i.editableKiosk.Type === "FlightBoard" ? (m(), I("div", DY, [
|
|
41015
41036
|
h(l, {
|
|
41016
41037
|
text: i.localSelectedRing.text,
|
|
41017
41038
|
size: "xs",
|
|
@@ -41025,7 +41046,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
41025
41046
|
class: "mt-2 overflow-hidden"
|
|
41026
41047
|
}, null, 8, ["text"])
|
|
41027
41048
|
])) : v("", !0),
|
|
41028
|
-
i.editableKiosk.Type === "Unassigned" ? (m(), I("div",
|
|
41049
|
+
i.editableKiosk.Type === "Unassigned" ? (m(), I("div", kY, [
|
|
41029
41050
|
h(l, {
|
|
41030
41051
|
text: i.localSelectedRing.text,
|
|
41031
41052
|
size: "xs",
|
|
@@ -41048,7 +41069,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
41048
41069
|
}, null, 8, ["onButtonClick"])) : v("", !0)
|
|
41049
41070
|
])
|
|
41050
41071
|
]),
|
|
41051
|
-
f("div",
|
|
41072
|
+
f("div", SY, [
|
|
41052
41073
|
n.userRole !== "Director" ? (m(), X(a, {
|
|
41053
41074
|
key: 0,
|
|
41054
41075
|
iconName: "fa-circle-xmark",
|
|
@@ -41061,7 +41082,7 @@ function SY(t, e, n, r, i, o) {
|
|
|
41061
41082
|
])
|
|
41062
41083
|
]);
|
|
41063
41084
|
}
|
|
41064
|
-
const
|
|
41085
|
+
const TY = /* @__PURE__ */ ie(hY, [["render", MY]]), OY = {
|
|
41065
41086
|
name: "AddDisplay",
|
|
41066
41087
|
components: { BaseIcon: Ke, BaseText: Ee, DropDownMenu: qt, BaseButton: He },
|
|
41067
41088
|
props: {
|
|
@@ -41185,23 +41206,23 @@ const MY = /* @__PURE__ */ ie(gY, [["render", SY]]), TY = {
|
|
|
41185
41206
|
this.$emit("update:cancel");
|
|
41186
41207
|
}
|
|
41187
41208
|
}
|
|
41188
|
-
},
|
|
41209
|
+
}, PY = { class: "p-4 bg-neutral" }, RY = { class: "w-full flex flex-row justify-center mb-8" }, zY = { class: "w-full flex flex-row justify-center my-4" }, NY = { class: "mb-4" }, FY = { class: "h-32" }, LY = {
|
|
41189
41210
|
key: 0,
|
|
41190
41211
|
class: "mb-4"
|
|
41191
|
-
},
|
|
41212
|
+
}, YY = {
|
|
41192
41213
|
key: 1,
|
|
41193
41214
|
class: "mb-4"
|
|
41194
|
-
},
|
|
41215
|
+
}, HY = {
|
|
41195
41216
|
key: 2,
|
|
41196
41217
|
class: "mb-4"
|
|
41197
|
-
},
|
|
41218
|
+
}, qY = {
|
|
41198
41219
|
key: 3,
|
|
41199
41220
|
class: "mb-4"
|
|
41200
|
-
},
|
|
41201
|
-
function
|
|
41221
|
+
}, jY = { class: "flex flex-row justify-center mt-10" }, KY = { class: "w-1/2 ml-1" }, UY = { class: "w-1/2 ml-1" };
|
|
41222
|
+
function GY(t, e, n, r, i, o) {
|
|
41202
41223
|
const a = x("BaseIcon"), l = x("BaseText"), A = x("DropDownMenu"), c = x("BaseButton");
|
|
41203
|
-
return m(), I("div",
|
|
41204
|
-
f("div",
|
|
41224
|
+
return m(), I("div", PY, [
|
|
41225
|
+
f("div", RY, [
|
|
41205
41226
|
f("p", {
|
|
41206
41227
|
class: U(["bg-" + i.iconBackgroundColor, "flex flex-row justify-center h-20 w-20 rounded-full", "border border-" + n.iconBorderColor])
|
|
41207
41228
|
}, [
|
|
@@ -41215,7 +41236,7 @@ function UY(t, e, n, r, i, o) {
|
|
|
41215
41236
|
}, null, 8, ["icon-name", "color"])
|
|
41216
41237
|
], 2)
|
|
41217
41238
|
]),
|
|
41218
|
-
f("div",
|
|
41239
|
+
f("div", zY, [
|
|
41219
41240
|
h(l, {
|
|
41220
41241
|
color: "primaryHighlight",
|
|
41221
41242
|
size: "2xl",
|
|
@@ -41223,7 +41244,7 @@ function UY(t, e, n, r, i, o) {
|
|
|
41223
41244
|
weight: "normal"
|
|
41224
41245
|
})
|
|
41225
41246
|
]),
|
|
41226
|
-
f("div",
|
|
41247
|
+
f("div", NY, [
|
|
41227
41248
|
h(l, {
|
|
41228
41249
|
color: "quinary",
|
|
41229
41250
|
size: "sm",
|
|
@@ -41241,8 +41262,8 @@ function UY(t, e, n, r, i, o) {
|
|
|
41241
41262
|
"onUpdate:selectedItem": o.handleDisplayTypeChange
|
|
41242
41263
|
}, null, 8, ["items", "selected-item", "onUpdate:selectedItem"])
|
|
41243
41264
|
]),
|
|
41244
|
-
f("div",
|
|
41245
|
-
o.selectedDisplayType.text === "ScoreBoard" ? (m(), I("div",
|
|
41265
|
+
f("div", FY, [
|
|
41266
|
+
o.selectedDisplayType.text === "ScoreBoard" ? (m(), I("div", LY, [
|
|
41246
41267
|
h(l, {
|
|
41247
41268
|
color: "quinary",
|
|
41248
41269
|
size: "sm",
|
|
@@ -41260,7 +41281,7 @@ function UY(t, e, n, r, i, o) {
|
|
|
41260
41281
|
"onUpdate:selectedItem": o.handleDisplayNameChange
|
|
41261
41282
|
}, null, 8, ["items", "selected-item", "onUpdate:selectedItem"])
|
|
41262
41283
|
])) : v("", !0),
|
|
41263
|
-
o.selectedDisplayType.text === "FlightBoard" ? (m(), I("div",
|
|
41284
|
+
o.selectedDisplayType.text === "FlightBoard" ? (m(), I("div", YY, [
|
|
41264
41285
|
h(l, {
|
|
41265
41286
|
color: "quinary",
|
|
41266
41287
|
size: "sm",
|
|
@@ -41278,7 +41299,7 @@ function UY(t, e, n, r, i, o) {
|
|
|
41278
41299
|
"onUpdate:selectedItem": o.handleDisplayNameChange
|
|
41279
41300
|
}, null, 8, ["items", "selected-item", "onUpdate:selectedItem"])
|
|
41280
41301
|
])) : v("", !0),
|
|
41281
|
-
o.selectedDisplayType.text === "ScoreBoard" ? (m(), I("div",
|
|
41302
|
+
o.selectedDisplayType.text === "ScoreBoard" ? (m(), I("div", HY, [
|
|
41282
41303
|
h(l, {
|
|
41283
41304
|
color: "quinary",
|
|
41284
41305
|
size: "sm",
|
|
@@ -41295,7 +41316,7 @@ function UY(t, e, n, r, i, o) {
|
|
|
41295
41316
|
width: "w-full",
|
|
41296
41317
|
"onUpdate:selectedItem": o.handleStaffAssignment
|
|
41297
41318
|
}, null, 8, ["items", "selected-item", "onUpdate:selectedItem"])
|
|
41298
|
-
])) : o.selectedDisplayType.text === "FlightBoard" ? (m(), I("div",
|
|
41319
|
+
])) : o.selectedDisplayType.text === "FlightBoard" ? (m(), I("div", qY, [
|
|
41299
41320
|
h(l, {
|
|
41300
41321
|
color: "quinary",
|
|
41301
41322
|
size: "sm",
|
|
@@ -41314,8 +41335,8 @@ function UY(t, e, n, r, i, o) {
|
|
|
41314
41335
|
}, null, 8, ["items", "selected-item", "onUpdate:selectedItem"])
|
|
41315
41336
|
])) : v("", !0)
|
|
41316
41337
|
]),
|
|
41317
|
-
f("div",
|
|
41318
|
-
f("div",
|
|
41338
|
+
f("div", jY, [
|
|
41339
|
+
f("div", KY, [
|
|
41319
41340
|
h(c, {
|
|
41320
41341
|
class: "w-full",
|
|
41321
41342
|
color: "neutral",
|
|
@@ -41325,7 +41346,7 @@ function UY(t, e, n, r, i, o) {
|
|
|
41325
41346
|
onButtonClick: o.handleCancel
|
|
41326
41347
|
}, null, 8, ["onButtonClick"])
|
|
41327
41348
|
]),
|
|
41328
|
-
f("div",
|
|
41349
|
+
f("div", UY, [
|
|
41329
41350
|
h(c, {
|
|
41330
41351
|
class: "w-full transition-all duration-300 ease-in-out",
|
|
41331
41352
|
color: "neutral",
|
|
@@ -41339,9 +41360,9 @@ function UY(t, e, n, r, i, o) {
|
|
|
41339
41360
|
])
|
|
41340
41361
|
]);
|
|
41341
41362
|
}
|
|
41342
|
-
const
|
|
41363
|
+
const JY = /* @__PURE__ */ ie(OY, [["render", GY]]), WY = {
|
|
41343
41364
|
name: "AddDisplayModal",
|
|
41344
|
-
components: { AddDisplay:
|
|
41365
|
+
components: { AddDisplay: JY, BaseIcon: Ke, DirectorCard: Om },
|
|
41345
41366
|
props: {
|
|
41346
41367
|
show: {
|
|
41347
41368
|
type: Boolean,
|
|
@@ -41368,8 +41389,8 @@ const GY = /* @__PURE__ */ ie(TY, [["render", UY]]), JY = {
|
|
|
41368
41389
|
this.$emit("submit:kiosk", t);
|
|
41369
41390
|
}
|
|
41370
41391
|
}
|
|
41371
|
-
},
|
|
41372
|
-
function
|
|
41392
|
+
}, VY = { class: "flex w-full justify-end mt-1" };
|
|
41393
|
+
function XY(t, e, n, r, i, o) {
|
|
41373
41394
|
const a = x("BaseIcon"), l = x("AddDisplay");
|
|
41374
41395
|
return m(), X(mn, {
|
|
41375
41396
|
"enter-active-class": "transition-opacity duration-500",
|
|
@@ -41390,7 +41411,7 @@ function VY(t, e, n, r, i, o) {
|
|
|
41390
41411
|
onClick: e[0] || (e[0] = ot(() => {
|
|
41391
41412
|
}, ["stop"]))
|
|
41392
41413
|
}, [
|
|
41393
|
-
f("div",
|
|
41414
|
+
f("div", VY, [
|
|
41394
41415
|
h(a, {
|
|
41395
41416
|
"icon-name": "fa-circle-xmark",
|
|
41396
41417
|
size: "lg",
|
|
@@ -41412,12 +41433,12 @@ function VY(t, e, n, r, i, o) {
|
|
|
41412
41433
|
_: 1
|
|
41413
41434
|
});
|
|
41414
41435
|
}
|
|
41415
|
-
const
|
|
41436
|
+
const ZY = /* @__PURE__ */ ie(WY, [["render", XY]]), _Y = {
|
|
41416
41437
|
name: "KioskContainer",
|
|
41417
41438
|
components: {
|
|
41418
|
-
AddDisplayModal:
|
|
41439
|
+
AddDisplayModal: ZY,
|
|
41419
41440
|
BaseButton: He,
|
|
41420
|
-
KioskCard:
|
|
41441
|
+
KioskCard: TY,
|
|
41421
41442
|
BaseText: Ee,
|
|
41422
41443
|
emptyDesertIcon: tn
|
|
41423
41444
|
},
|
|
@@ -41505,28 +41526,28 @@ const XY = /* @__PURE__ */ ie(JY, [["render", VY]]), ZY = {
|
|
|
41505
41526
|
this.handleClose(), this.$emit("submit:kiosk", t);
|
|
41506
41527
|
}
|
|
41507
41528
|
}
|
|
41508
|
-
},
|
|
41529
|
+
}, $Y = { class: "mt-0" }, eH = { class: "flex flex-col w-full relative" }, tH = { key: 0 }, nH = ["src"], rH = { class: "w-full flex justify-center" }, iH = { class: "w-96" }, oH = {
|
|
41509
41530
|
key: 1,
|
|
41510
41531
|
class: "flex flex-col"
|
|
41511
|
-
},
|
|
41532
|
+
}, sH = { key: 0 }, aH = {
|
|
41512
41533
|
key: 1,
|
|
41513
41534
|
class: "mt-10"
|
|
41514
|
-
},
|
|
41535
|
+
}, lH = {
|
|
41515
41536
|
key: 2,
|
|
41516
41537
|
class: "mt-10"
|
|
41517
41538
|
};
|
|
41518
|
-
function
|
|
41539
|
+
function AH(t, e, n, r, i, o) {
|
|
41519
41540
|
const a = x("BaseText"), l = x("KioskCard"), A = x("AddDisplayModal");
|
|
41520
|
-
return m(), I("div",
|
|
41521
|
-
f("div",
|
|
41522
|
-
i.localDisplays.length ? v("", !0) : (m(), I("section",
|
|
41541
|
+
return m(), I("div", $Y, [
|
|
41542
|
+
f("div", eH, [
|
|
41543
|
+
i.localDisplays.length ? v("", !0) : (m(), I("section", tH, [
|
|
41523
41544
|
f("img", {
|
|
41524
41545
|
alt: "Small desert scene with wind blowing.",
|
|
41525
41546
|
class: "w-96 mx-auto",
|
|
41526
41547
|
src: i.emptyDesertIcon
|
|
41527
|
-
}, null, 8,
|
|
41528
|
-
f("div",
|
|
41529
|
-
f("div",
|
|
41548
|
+
}, null, 8, nH),
|
|
41549
|
+
f("div", rH, [
|
|
41550
|
+
f("div", iH, [
|
|
41530
41551
|
h(a, {
|
|
41531
41552
|
text: "No Displays Currently!",
|
|
41532
41553
|
size: "lg",
|
|
@@ -41543,8 +41564,8 @@ function lH(t, e, n, r, i, o) {
|
|
|
41543
41564
|
])
|
|
41544
41565
|
])
|
|
41545
41566
|
])),
|
|
41546
|
-
i.localDisplays.length > 0 ? (m(), I("section",
|
|
41547
|
-
o.scoreboards.length > 0 ? (m(), I("div",
|
|
41567
|
+
i.localDisplays.length > 0 ? (m(), I("section", oH, [
|
|
41568
|
+
o.scoreboards.length > 0 ? (m(), I("div", sH, [
|
|
41548
41569
|
h(a, {
|
|
41549
41570
|
text: "Scoreboards",
|
|
41550
41571
|
size: "lg",
|
|
@@ -41573,7 +41594,7 @@ function lH(t, e, n, r, i, o) {
|
|
|
41573
41594
|
}, null, 8, ["displayObject", "assignedTo", "eventDropDown", "staffDropDown", "userRole", "onUpdate:staffChange", "onUpdate:eventChange", "onUpdate:ringChange", "onRemove:kiosk", "onUpdate:assignToMe", "onUpdate:selectedType", "onUpdate:editKiosk"])
|
|
41574
41595
|
]))), 128))
|
|
41575
41596
|
])) : v("", !0),
|
|
41576
|
-
o.flightBoards.length > 0 && n.userRole !== "Director" ? (m(), I("div",
|
|
41597
|
+
o.flightBoards.length > 0 && n.userRole !== "Director" ? (m(), I("div", aH, [
|
|
41577
41598
|
h(a, {
|
|
41578
41599
|
text: "Flight Boards",
|
|
41579
41600
|
size: "lg",
|
|
@@ -41602,7 +41623,7 @@ function lH(t, e, n, r, i, o) {
|
|
|
41602
41623
|
}, null, 8, ["displayObject", "assignedToEvent", "eventDropDown", "staffDropDown", "userRole", "onUpdate:staffChange", "onUpdate:eventChange", "onUpdate:ringChange", "onRemove:kiosk", "onUpdate:assignToMe", "onUpdate:selectedType", "onUpdate:editKiosk"])
|
|
41603
41624
|
]))), 128))
|
|
41604
41625
|
])) : v("", !0),
|
|
41605
|
-
o.unassignedBoards.length > 0 && n.userRole !== "Director" ? (m(), I("div",
|
|
41626
|
+
o.unassignedBoards.length > 0 && n.userRole !== "Director" ? (m(), I("div", lH, [
|
|
41606
41627
|
h(a, {
|
|
41607
41628
|
text: "Unassigned",
|
|
41608
41629
|
size: "lg",
|
|
@@ -41644,10 +41665,10 @@ function lH(t, e, n, r, i, o) {
|
|
|
41644
41665
|
])
|
|
41645
41666
|
]);
|
|
41646
41667
|
}
|
|
41647
|
-
const
|
|
41668
|
+
const cH = /* @__PURE__ */ ie(_Y, [["render", AH]]), uH = {
|
|
41648
41669
|
name: "KioskDisplay",
|
|
41649
41670
|
components: {
|
|
41650
|
-
KioskContainer:
|
|
41671
|
+
KioskContainer: cH,
|
|
41651
41672
|
EditEventsTopMenu: Qn
|
|
41652
41673
|
},
|
|
41653
41674
|
emits: ["remove:kiosk", "update:selectedStaff", "update:selectedEvent", "update:selectedType", "update:ringChange", "submit:kiosk", "update:assignToMe", "tab:menu-click"],
|
|
@@ -41727,7 +41748,7 @@ const AH = /* @__PURE__ */ ie(ZY, [["render", lH]]), cH = {
|
|
|
41727
41748
|
}
|
|
41728
41749
|
}
|
|
41729
41750
|
};
|
|
41730
|
-
function
|
|
41751
|
+
function dH(t, e, n, r, i, o) {
|
|
41731
41752
|
const a = x("EditEventsTopMenu"), l = x("KioskContainer");
|
|
41732
41753
|
return m(), I("section", null, [
|
|
41733
41754
|
h(a, {
|
|
@@ -41751,15 +41772,15 @@ function uH(t, e, n, r, i, o) {
|
|
|
41751
41772
|
e[0] || (e[0] = f("div", { class: "w-full flex justify-end mt-4" }, null, -1))
|
|
41752
41773
|
]);
|
|
41753
41774
|
}
|
|
41754
|
-
const
|
|
41775
|
+
const K8 = /* @__PURE__ */ ie(uH, [["render", dH]]), gH = {
|
|
41755
41776
|
name: "PersonManagementSkeleton"
|
|
41756
|
-
},
|
|
41757
|
-
function
|
|
41758
|
-
return m(), I("section",
|
|
41777
|
+
}, hH = { class: "flex" };
|
|
41778
|
+
function fH(t, e, n, r, i, o) {
|
|
41779
|
+
return m(), I("section", hH, e[0] || (e[0] = [
|
|
41759
41780
|
gs('<div class="rounded-lg p-9 bg-neutral w-full animate-pulse"><div class="w-full flex flex-row justify-center mb-4"><div class="h-8 bg-dropdownSelect rounded w-20"></div></div><div class="w-full flex-row justify-center mb-4 flex drop-shadow"><div class="w-32 h-32 border-2 border-dashed rounded-full bg-dropdownSelect"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-32 mb-2"></div><div class="h-10 bg-dropdownSelect rounded"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-24 mb-2"></div><div class="h-10 bg-dropdownSelect rounded"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-24 mb-2"></div><div class="h-10 bg-dropdownSelect rounded"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-28 mb-2"></div><div class="h-10 bg-dropdownSelect rounded"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-20 mb-2"></div><div class="h-10 bg-dropdownSelect rounded"></div></div><div class="border-b border-dropdownSelect mt-6"><div class="h-6 bg-dropdownSelect rounded w-36 mb-2"></div></div><div class="my-4 w-full"><div class="h-16 bg-dropdownSelect rounded w-full mb-4"></div><div class="h-8 bg-dropdownSelect rounded w-1/2 mb-2"></div><div class="h-8 bg-dropdownSelect rounded w-1/2"></div></div><div class="flex flex-row justify-end mt-8"><div class="h-10 bg-dropdownSelect rounded w-full"></div></div></div>', 1)
|
|
41760
41781
|
]));
|
|
41761
41782
|
}
|
|
41762
|
-
const
|
|
41783
|
+
const mH = /* @__PURE__ */ ie(gH, [["render", fH]]), pH = {
|
|
41763
41784
|
name: "BasicEdit",
|
|
41764
41785
|
emits: ["update:person"],
|
|
41765
41786
|
// Generic emit event
|
|
@@ -41819,12 +41840,12 @@ const fH = /* @__PURE__ */ ie(dH, [["render", hH]]), mH = {
|
|
|
41819
41840
|
this.$emit("update:person", { field: t, value: e });
|
|
41820
41841
|
}
|
|
41821
41842
|
}
|
|
41822
|
-
},
|
|
41823
|
-
function
|
|
41843
|
+
}, CH = { class: "mt-2 min-h-80" }, IH = { class: "flex flex-col mb-4" }, BH = { class: "flex flex-col mb-4" }, EH = { class: "flex flex-col mb-4" }, QH = { class: "flex flex-col mb-4" }, vH = { class: "flex flex-col mb-4" }, wH = { class: "border-b border-dropdownSelect mt-6" }, yH = { class: "my-4 w-full" };
|
|
41844
|
+
function bH(t, e, n, r, i, o) {
|
|
41824
41845
|
const a = x("TitledInput"), l = x("BaseText"), A = x("DropDownMenu"), c = x("Toggle");
|
|
41825
|
-
return m(), I("section",
|
|
41846
|
+
return m(), I("section", CH, [
|
|
41826
41847
|
f("div", null, [
|
|
41827
|
-
f("div",
|
|
41848
|
+
f("div", IH, [
|
|
41828
41849
|
h(a, {
|
|
41829
41850
|
inputValue: n.person.DisplayName || "",
|
|
41830
41851
|
placeholder: "Enter Display Name",
|
|
@@ -41833,7 +41854,7 @@ function yH(t, e, n, r, i, o) {
|
|
|
41833
41854
|
"onUpdate:value": e[0] || (e[0] = (u) => o.emitUpdate("DisplayName", u))
|
|
41834
41855
|
}, null, 8, ["inputValue", "invalid", "title"])
|
|
41835
41856
|
]),
|
|
41836
|
-
f("div",
|
|
41857
|
+
f("div", BH, [
|
|
41837
41858
|
h(a, {
|
|
41838
41859
|
inputValue: o.getLegalName,
|
|
41839
41860
|
placeholder: "Enter Your Legal Name",
|
|
@@ -41842,7 +41863,7 @@ function yH(t, e, n, r, i, o) {
|
|
|
41842
41863
|
"onUpdate:value": e[1] || (e[1] = (u) => o.emitUpdate("LegalName", u))
|
|
41843
41864
|
}, null, 8, ["inputValue", "invalid", "title"])
|
|
41844
41865
|
]),
|
|
41845
|
-
f("div",
|
|
41866
|
+
f("div", EH, [
|
|
41846
41867
|
h(l, {
|
|
41847
41868
|
text: "Club Name",
|
|
41848
41869
|
size: "sm",
|
|
@@ -41858,7 +41879,7 @@ function yH(t, e, n, r, i, o) {
|
|
|
41858
41879
|
dropDownWidth: "w-full"
|
|
41859
41880
|
}, null, 8, ["label", "items", "selectedItem"])
|
|
41860
41881
|
]),
|
|
41861
|
-
f("div",
|
|
41882
|
+
f("div", QH, [
|
|
41862
41883
|
h(l, {
|
|
41863
41884
|
text: "Preferred Pronouns",
|
|
41864
41885
|
size: "sm",
|
|
@@ -41874,7 +41895,7 @@ function yH(t, e, n, r, i, o) {
|
|
|
41874
41895
|
dropDownWidth: "w-full"
|
|
41875
41896
|
}, null, 8, ["label", "items", "selectedItem"])
|
|
41876
41897
|
]),
|
|
41877
|
-
f("div",
|
|
41898
|
+
f("div", vH, [
|
|
41878
41899
|
h(a, {
|
|
41879
41900
|
inputValue: o.getEmail || "",
|
|
41880
41901
|
placeholder: "Enter Your Email",
|
|
@@ -41883,7 +41904,7 @@ function yH(t, e, n, r, i, o) {
|
|
|
41883
41904
|
"onUpdate:value": e[4] || (e[4] = (u) => o.emitUpdate("EmailAddress", u))
|
|
41884
41905
|
}, null, 8, ["inputValue", "invalid", "title"])
|
|
41885
41906
|
]),
|
|
41886
|
-
f("div",
|
|
41907
|
+
f("div", wH, [
|
|
41887
41908
|
h(l, {
|
|
41888
41909
|
color: "quinary",
|
|
41889
41910
|
size: "sm",
|
|
@@ -41892,7 +41913,7 @@ function yH(t, e, n, r, i, o) {
|
|
|
41892
41913
|
"data-testid": "text-registration"
|
|
41893
41914
|
})
|
|
41894
41915
|
]),
|
|
41895
|
-
f("div",
|
|
41916
|
+
f("div", yH, [
|
|
41896
41917
|
h(l, {
|
|
41897
41918
|
color: "quinary",
|
|
41898
41919
|
size: "sm",
|
|
@@ -41917,7 +41938,7 @@ function yH(t, e, n, r, i, o) {
|
|
|
41917
41938
|
])
|
|
41918
41939
|
]);
|
|
41919
41940
|
}
|
|
41920
|
-
const
|
|
41941
|
+
const xH = /* @__PURE__ */ ie(pH, [["render", bH]]), DH = {
|
|
41921
41942
|
name: "Attendance",
|
|
41922
41943
|
components: { BaseIcon: Ke, BaseText: Ee },
|
|
41923
41944
|
props: {
|
|
@@ -41978,15 +41999,15 @@ const bH = /* @__PURE__ */ ie(mH, [["render", yH]]), xH = {
|
|
|
41978
41999
|
}
|
|
41979
42000
|
}
|
|
41980
42001
|
}
|
|
41981
|
-
},
|
|
42002
|
+
}, kH = { class: "flex justify-center w-full pr-4" }, SH = { class: "w-full md:p-2 min-h-80" }, MH = {
|
|
41982
42003
|
key: 0,
|
|
41983
42004
|
class: "text-center mt-4"
|
|
41984
|
-
},
|
|
41985
|
-
function
|
|
42005
|
+
}, TH = { key: 1 }, OH = { class: "flex mr-4 md:mr-0" }, PH = { class: "w-full flex flex-col justify-end md:ml-2" }, RH = { class: "w-full flex ml-2 justify-between border-b" }, zH = { class: "md:ml-14 md:-mt-2 w-full mt-2" }, NH = { class: "grid grid-cols-12 items-center gap-4 px-4 py-2 rounded-lg bg-poolSetup" };
|
|
42006
|
+
function FH(t, e, n, r, i, o) {
|
|
41986
42007
|
const a = x("BaseText"), l = x("BaseIcon");
|
|
41987
|
-
return m(), I("section",
|
|
41988
|
-
f("div",
|
|
41989
|
-
n.attendance.length === 0 ? (m(), I("div",
|
|
42008
|
+
return m(), I("section", kH, [
|
|
42009
|
+
f("div", SH, [
|
|
42010
|
+
n.attendance.length === 0 ? (m(), I("div", MH, [
|
|
41990
42011
|
h(a, {
|
|
41991
42012
|
text: "No Attendance Records",
|
|
41992
42013
|
color: "secondary",
|
|
@@ -41994,14 +42015,14 @@ function NH(t, e, n, r, i, o) {
|
|
|
41994
42015
|
weight: "normal"
|
|
41995
42016
|
})
|
|
41996
42017
|
])) : v("", !0),
|
|
41997
|
-
n.attendance.length > 0 ? (m(), I("section",
|
|
42018
|
+
n.attendance.length > 0 ? (m(), I("section", TH, [
|
|
41998
42019
|
(m(!0), I(se, null, ve(n.attendance, (A) => (m(), I("div", {
|
|
41999
42020
|
key: A.TournamentId,
|
|
42000
42021
|
class: "mb-6"
|
|
42001
42022
|
}, [
|
|
42002
|
-
f("div",
|
|
42003
|
-
f("div",
|
|
42004
|
-
f("div",
|
|
42023
|
+
f("div", OH, [
|
|
42024
|
+
f("div", PH, [
|
|
42025
|
+
f("div", RH, [
|
|
42005
42026
|
h(a, {
|
|
42006
42027
|
text: A.Name,
|
|
42007
42028
|
color: "primary",
|
|
@@ -42018,12 +42039,12 @@ function NH(t, e, n, r, i, o) {
|
|
|
42018
42039
|
])
|
|
42019
42040
|
])
|
|
42020
42041
|
]),
|
|
42021
|
-
f("div",
|
|
42042
|
+
f("div", zH, [
|
|
42022
42043
|
(m(!0), I(se, null, ve(A.Events, (c) => (m(), I("section", {
|
|
42023
42044
|
key: c.EventId,
|
|
42024
42045
|
class: "mt-4 md:pl-4 mb-2 md:w-11/12"
|
|
42025
42046
|
}, [
|
|
42026
|
-
f("div",
|
|
42047
|
+
f("div", NH, [
|
|
42027
42048
|
h(l, {
|
|
42028
42049
|
"icon-name": o.getWeaponIcon(c.Weapon),
|
|
42029
42050
|
iconStyle: "fa-kit",
|
|
@@ -42060,7 +42081,7 @@ function NH(t, e, n, r, i, o) {
|
|
|
42060
42081
|
])
|
|
42061
42082
|
]);
|
|
42062
42083
|
}
|
|
42063
|
-
const
|
|
42084
|
+
const LH = /* @__PURE__ */ ie(DH, [["render", FH]]), YH = {
|
|
42064
42085
|
name: "FencerAdmin",
|
|
42065
42086
|
emits: ["update:person"],
|
|
42066
42087
|
components: { TitledInput: ar, BaseText: Ee, DropDownMenu: qt },
|
|
@@ -42107,12 +42128,12 @@ const FH = /* @__PURE__ */ ie(xH, [["render", NH]]), LH = {
|
|
|
42107
42128
|
this.$emit("update:person", { field: t, value: e });
|
|
42108
42129
|
}
|
|
42109
42130
|
}
|
|
42110
|
-
},
|
|
42111
|
-
function
|
|
42131
|
+
}, HH = { class: "mt-2 min-h-80" }, qH = { class: "flex flex-col mb-4" }, jH = { class: "flex flex-col mb-4" }, KH = { class: "flex flex-col mb-4" };
|
|
42132
|
+
function UH(t, e, n, r, i, o) {
|
|
42112
42133
|
const a = x("TitledInput"), l = x("BaseText"), A = x("DropDownMenu");
|
|
42113
|
-
return m(), I("section",
|
|
42134
|
+
return m(), I("section", HH, [
|
|
42114
42135
|
f("div", null, [
|
|
42115
|
-
f("div",
|
|
42136
|
+
f("div", qH, [
|
|
42116
42137
|
h(a, {
|
|
42117
42138
|
inputValue: o.personId,
|
|
42118
42139
|
inputType: "number",
|
|
@@ -42122,7 +42143,7 @@ function KH(t, e, n, r, i, o) {
|
|
|
42122
42143
|
"aria-disabled": "true"
|
|
42123
42144
|
}, null, 8, ["inputValue"])
|
|
42124
42145
|
]),
|
|
42125
|
-
f("div",
|
|
42146
|
+
f("div", jH, [
|
|
42126
42147
|
h(a, {
|
|
42127
42148
|
inputValue: o.hemaRatingId,
|
|
42128
42149
|
inputType: "number",
|
|
@@ -42131,7 +42152,7 @@ function KH(t, e, n, r, i, o) {
|
|
|
42131
42152
|
"onUpdate:value": e[0] || (e[0] = (c) => o.emitUpdate("HemaRatingsId", c))
|
|
42132
42153
|
}, null, 8, ["inputValue"])
|
|
42133
42154
|
]),
|
|
42134
|
-
f("div",
|
|
42155
|
+
f("div", KH, [
|
|
42135
42156
|
h(l, {
|
|
42136
42157
|
text: "Access Level",
|
|
42137
42158
|
size: "sm",
|
|
@@ -42150,7 +42171,7 @@ function KH(t, e, n, r, i, o) {
|
|
|
42150
42171
|
])
|
|
42151
42172
|
]);
|
|
42152
42173
|
}
|
|
42153
|
-
const
|
|
42174
|
+
const GH = /* @__PURE__ */ ie(YH, [["render", UH]]);
|
|
42154
42175
|
function _d(t, e) {
|
|
42155
42176
|
const i = ({
|
|
42156
42177
|
DisplayName: [
|
|
@@ -42170,16 +42191,16 @@ function _d(t, e) {
|
|
|
42170
42191
|
}[t] || []).find((o) => o.check(e));
|
|
42171
42192
|
return i ? { invalid: !0, message: i.message } : { invalid: !1, message: "" };
|
|
42172
42193
|
}
|
|
42173
|
-
const
|
|
42194
|
+
const JH = {
|
|
42174
42195
|
name: "PersonManagement",
|
|
42175
42196
|
emits: ["submit:person", "delete:person", "update:image"],
|
|
42176
42197
|
components: {
|
|
42177
|
-
FencerAdmin:
|
|
42178
|
-
Attendance:
|
|
42179
|
-
BasicEdit:
|
|
42198
|
+
FencerAdmin: GH,
|
|
42199
|
+
Attendance: LH,
|
|
42200
|
+
BasicEdit: xH,
|
|
42180
42201
|
BaseButton: He,
|
|
42181
42202
|
BaseText: Ee,
|
|
42182
|
-
PersonManagementSkeleton:
|
|
42203
|
+
PersonManagementSkeleton: mH,
|
|
42183
42204
|
EditEventsTopMenu: Qn,
|
|
42184
42205
|
ImageCropper: Ba
|
|
42185
42206
|
},
|
|
@@ -42276,23 +42297,23 @@ const GH = {
|
|
|
42276
42297
|
this.currentTab = t;
|
|
42277
42298
|
}
|
|
42278
42299
|
}
|
|
42279
|
-
},
|
|
42300
|
+
}, WH = { key: 0 }, VH = {
|
|
42280
42301
|
key: 1,
|
|
42281
42302
|
class: "flex px-3 bg-neutral",
|
|
42282
42303
|
id: "person-management"
|
|
42283
|
-
},
|
|
42304
|
+
}, XH = { class: "rounded-lg md:p-9 w-full" }, ZH = { class: "w-full flex flex-row justify-center mb-4" }, _H = { class: "w-full flex-row justify-center mb-4 flex drop-shadow" }, $H = {
|
|
42284
42305
|
key: 4,
|
|
42285
42306
|
class: "flex flex-row justify-end mt-8"
|
|
42286
42307
|
};
|
|
42287
|
-
function
|
|
42308
|
+
function eq(t, e, n, r, i, o) {
|
|
42288
42309
|
const a = x("PersonManagementSkeleton"), l = x("BaseText"), A = x("ImageCropper"), c = x("EditEventsTopMenu"), u = x("BasicEdit"), d = x("FencerAdmin"), g = x("Attendance"), p = x("BaseButton");
|
|
42289
42310
|
return m(), I(se, null, [
|
|
42290
|
-
n.loading ? (m(), I("section",
|
|
42311
|
+
n.loading ? (m(), I("section", WH, [
|
|
42291
42312
|
h(a)
|
|
42292
42313
|
])) : v("", !0),
|
|
42293
|
-
n.loading ? v("", !0) : (m(), I("section",
|
|
42294
|
-
f("div",
|
|
42295
|
-
f("div",
|
|
42314
|
+
n.loading ? v("", !0) : (m(), I("section", VH, [
|
|
42315
|
+
f("div", XH, [
|
|
42316
|
+
f("div", ZH, [
|
|
42296
42317
|
h(l, {
|
|
42297
42318
|
color: "primaryHighlight",
|
|
42298
42319
|
size: "2xl",
|
|
@@ -42300,7 +42321,7 @@ function $H(t, e, n, r, i, o) {
|
|
|
42300
42321
|
weight: "normal"
|
|
42301
42322
|
}, null, 8, ["text"])
|
|
42302
42323
|
]),
|
|
42303
|
-
f("div",
|
|
42324
|
+
f("div", _H, [
|
|
42304
42325
|
h(A, {
|
|
42305
42326
|
urlToImage: o.getImageURL,
|
|
42306
42327
|
uploadImageName: n.uploadImageName,
|
|
@@ -42345,7 +42366,7 @@ function $H(t, e, n, r, i, o) {
|
|
|
42345
42366
|
key: 3,
|
|
42346
42367
|
attendance: n.attendance
|
|
42347
42368
|
}, null, 8, ["attendance"])) : v("", !0),
|
|
42348
|
-
o.showButtons ? (m(), I("div",
|
|
42369
|
+
o.showButtons ? (m(), I("div", $H, [
|
|
42349
42370
|
n.userLevel === "Admin" ? (m(), X(p, {
|
|
42350
42371
|
key: 0,
|
|
42351
42372
|
class: "mr-8",
|
|
@@ -42368,15 +42389,15 @@ function $H(t, e, n, r, i, o) {
|
|
|
42368
42389
|
]))
|
|
42369
42390
|
], 64);
|
|
42370
42391
|
}
|
|
42371
|
-
const
|
|
42392
|
+
const U8 = /* @__PURE__ */ ie(JH, [["render", eq]]), tq = {
|
|
42372
42393
|
name: "ClubManagementSkeleton"
|
|
42373
|
-
},
|
|
42374
|
-
function
|
|
42375
|
-
return m(), I("section",
|
|
42394
|
+
}, nq = { class: "flex" };
|
|
42395
|
+
function rq(t, e, n, r, i, o) {
|
|
42396
|
+
return m(), I("section", nq, e[0] || (e[0] = [
|
|
42376
42397
|
gs('<div class="rounded-lg p-9 bg-neutral w-full animate-pulse"><div class="w-full flex flex-row justify-center mb-4"><div class="h-8 bg-dropdownSelect rounded w-1/4"></div></div><div class="w-full flex-row justify-center mb-4 flex drop-shadow"><div class="w-32 h-32 border-2 border-dashed rounded-full bg-dropdownSelect"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-24 mb-2"></div><div class="h-10 bg-dropdownSelect rounded"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-28 mb-2"></div><div class="h-10 bg-dropdownSelect rounded"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-24 mb-2"></div><div class="h-64 bg-dropdownSelect rounded"></div></div><div class="flex flex-col mb-4"><div class="h-6 bg-dropdownSelect rounded w-24 mb-2"></div><div class="h-10 bg-dropdownSelect rounded"></div></div><div class="flex flex-row justify-end mt-8"><div class="h-10 bg-dropdownSelect rounded w-full"></div></div></div>', 1)
|
|
42377
42398
|
]));
|
|
42378
42399
|
}
|
|
42379
|
-
const
|
|
42400
|
+
const iq = /* @__PURE__ */ ie(tq, [["render", rq]]), oq = {
|
|
42380
42401
|
name: "ClubColorPicker",
|
|
42381
42402
|
components: { BaseText: Ee, DropDownMenu: qt },
|
|
42382
42403
|
props: {
|
|
@@ -42430,10 +42451,10 @@ const rq = /* @__PURE__ */ ie(eq, [["render", nq]]), iq = {
|
|
|
42430
42451
|
return this.colorOptions.find((e) => e.link === t) || { text: "Select a color", link: "" };
|
|
42431
42452
|
}
|
|
42432
42453
|
}
|
|
42433
|
-
},
|
|
42434
|
-
function
|
|
42454
|
+
}, sq = { class: "flex flex-col mb-4" };
|
|
42455
|
+
function aq(t, e, n, r, i, o) {
|
|
42435
42456
|
const a = x("BaseText"), l = x("DropDownMenu");
|
|
42436
|
-
return m(), I("div",
|
|
42457
|
+
return m(), I("div", sq, [
|
|
42437
42458
|
h(a, {
|
|
42438
42459
|
text: o.getColor,
|
|
42439
42460
|
size: "sm",
|
|
@@ -42449,9 +42470,9 @@ function sq(t, e, n, r, i, o) {
|
|
|
42449
42470
|
}, null, 8, ["items", "selectedItem", "onUpdate:selectedItem"])
|
|
42450
42471
|
]);
|
|
42451
42472
|
}
|
|
42452
|
-
const
|
|
42473
|
+
const lq = /* @__PURE__ */ ie(oq, [["render", aq]]), Aq = {
|
|
42453
42474
|
name: "ClubBasic",
|
|
42454
|
-
components: { ClubColorPicker:
|
|
42475
|
+
components: { ClubColorPicker: lq, TitledInput: ar, BaseText: Ee, TextBoxEditor: Ic, FindLocation: Bc },
|
|
42455
42476
|
emits: ["add:newAddress", "update:club"],
|
|
42456
42477
|
props: {
|
|
42457
42478
|
club: {
|
|
@@ -42480,11 +42501,11 @@ const aq = /* @__PURE__ */ ie(iq, [["render", sq]]), lq = {
|
|
|
42480
42501
|
this.$emit("update:club", { field: t, value: e });
|
|
42481
42502
|
}
|
|
42482
42503
|
}
|
|
42483
|
-
},
|
|
42484
|
-
function
|
|
42504
|
+
}, cq = { class: "flex flex-col mb-4" }, uq = { class: "flex flex-col mb-4" }, dq = { class: "flex flex-col mb-4" }, gq = { class: "flex flex-col mb-4" }, hq = { class: "flex flex-col mb-4" }, fq = { class: "flex flex-col mb-4" };
|
|
42505
|
+
function mq(t, e, n, r, i, o) {
|
|
42485
42506
|
const a = x("TitledInput"), l = x("BaseText"), A = x("FindLocation"), c = x("TextBoxEditor"), u = x("ClubColorPicker");
|
|
42486
42507
|
return m(), I(se, null, [
|
|
42487
|
-
f("div",
|
|
42508
|
+
f("div", cq, [
|
|
42488
42509
|
h(a, {
|
|
42489
42510
|
inputValue: n.club.Name || "",
|
|
42490
42511
|
invalid: n.validation.Name.invalid,
|
|
@@ -42493,7 +42514,7 @@ function fq(t, e, n, r, i, o) {
|
|
|
42493
42514
|
"onUpdate:value": e[0] || (e[0] = (d) => o.emitUpdate("Name", d))
|
|
42494
42515
|
}, null, 8, ["inputValue", "invalid", "title"])
|
|
42495
42516
|
]),
|
|
42496
|
-
f("div",
|
|
42517
|
+
f("div", uq, [
|
|
42497
42518
|
h(a, {
|
|
42498
42519
|
inputValue: n.club.ShortName || "",
|
|
42499
42520
|
invalid: n.validation.ShortName.invalid,
|
|
@@ -42502,7 +42523,7 @@ function fq(t, e, n, r, i, o) {
|
|
|
42502
42523
|
"onUpdate:value": e[1] || (e[1] = (d) => o.emitUpdate("ShortName", d))
|
|
42503
42524
|
}, null, 8, ["inputValue", "invalid", "title"])
|
|
42504
42525
|
]),
|
|
42505
|
-
f("div",
|
|
42526
|
+
f("div", dq, [
|
|
42506
42527
|
h(a, {
|
|
42507
42528
|
inputValue: n.club.TagLine || "",
|
|
42508
42529
|
placeholder: "Enter Tag Line",
|
|
@@ -42510,7 +42531,7 @@ function fq(t, e, n, r, i, o) {
|
|
|
42510
42531
|
"onUpdate:value": e[2] || (e[2] = (d) => o.emitUpdate("TagLine", d))
|
|
42511
42532
|
}, null, 8, ["inputValue"])
|
|
42512
42533
|
]),
|
|
42513
|
-
f("div",
|
|
42534
|
+
f("div", gq, [
|
|
42514
42535
|
h(l, {
|
|
42515
42536
|
invalid: n.validation.Address.invalid,
|
|
42516
42537
|
text: n.validation.Address.invalid ? `Address - ${n.validation.Address.message}` : "Address",
|
|
@@ -42527,7 +42548,7 @@ function fq(t, e, n, r, i, o) {
|
|
|
42527
42548
|
"onUpdate:location": e[3] || (e[3] = (d) => o.emitUpdate("Location", d))
|
|
42528
42549
|
}, null, 8, ["locations", "placeholder", "invalid", "onSubmit:addNewAddress"])
|
|
42529
42550
|
]),
|
|
42530
|
-
f("div",
|
|
42551
|
+
f("div", hq, [
|
|
42531
42552
|
h(l, {
|
|
42532
42553
|
color: "primaryHighlight",
|
|
42533
42554
|
size: "sm",
|
|
@@ -42541,7 +42562,7 @@ function fq(t, e, n, r, i, o) {
|
|
|
42541
42562
|
"onUpdate:editorContent": e[4] || (e[4] = (d) => o.emitUpdate("Description", d))
|
|
42542
42563
|
}, null, 8, ["initialContent"])
|
|
42543
42564
|
]),
|
|
42544
|
-
f("div",
|
|
42565
|
+
f("div", fq, [
|
|
42545
42566
|
h(u, {
|
|
42546
42567
|
club: n.club,
|
|
42547
42568
|
isPrimary: !0,
|
|
@@ -42555,7 +42576,7 @@ function fq(t, e, n, r, i, o) {
|
|
|
42555
42576
|
])
|
|
42556
42577
|
], 64);
|
|
42557
42578
|
}
|
|
42558
|
-
const
|
|
42579
|
+
const pq = /* @__PURE__ */ ie(Aq, [["render", mq]]);
|
|
42559
42580
|
function $d(t, e) {
|
|
42560
42581
|
const n = /[^a-zA-Z0-9\s]/, o = ({
|
|
42561
42582
|
Name: [
|
|
@@ -42574,12 +42595,12 @@ function $d(t, e) {
|
|
|
42574
42595
|
}[t] || []).find((a) => a.check(e));
|
|
42575
42596
|
return o ? { invalid: !0, message: o.message } : { invalid: !1, message: "" };
|
|
42576
42597
|
}
|
|
42577
|
-
const
|
|
42598
|
+
const Cq = {
|
|
42578
42599
|
name: "ClubManagement",
|
|
42579
42600
|
emits: ["submit:club", "add:newAddress", "delete:club", "update:selectedClub"],
|
|
42580
42601
|
components: {
|
|
42581
|
-
ClubBasic:
|
|
42582
|
-
ClubManagementSkeleton:
|
|
42602
|
+
ClubBasic: pq,
|
|
42603
|
+
ClubManagementSkeleton: iq,
|
|
42583
42604
|
BaseText: Ee,
|
|
42584
42605
|
ImageCropper: Ba,
|
|
42585
42606
|
TitledInput: ar,
|
|
@@ -42695,19 +42716,19 @@ const pq = {
|
|
|
42695
42716
|
}), !Object.values(this.validation).some((e) => e.invalid);
|
|
42696
42717
|
}
|
|
42697
42718
|
}
|
|
42698
|
-
},
|
|
42719
|
+
}, Iq = { key: 0 }, Bq = {
|
|
42699
42720
|
key: 1,
|
|
42700
42721
|
class: "flex"
|
|
42701
|
-
},
|
|
42702
|
-
function
|
|
42722
|
+
}, Eq = { class: "rounded-lg md:p-9 bg-neutral w-full" }, Qq = { class: "w-full flex flex-row justify-center mb-4" }, vq = { class: "w-full flex-row justify-center mb-4 flex drop-shadow" }, wq = { class: "flex flex-row justify-end mt-8" };
|
|
42723
|
+
function yq(t, e, n, r, i, o) {
|
|
42703
42724
|
const a = x("ClubManagementSkeleton"), l = x("BaseText"), A = x("ImageCropper"), c = x("ClubBasic"), u = x("BaseButton");
|
|
42704
42725
|
return m(), I(se, null, [
|
|
42705
|
-
n.loading ? (m(), I("section",
|
|
42726
|
+
n.loading ? (m(), I("section", Iq, [
|
|
42706
42727
|
h(a)
|
|
42707
42728
|
])) : v("", !0),
|
|
42708
|
-
n.loading ? v("", !0) : (m(), I("section",
|
|
42709
|
-
f("div",
|
|
42710
|
-
f("div",
|
|
42729
|
+
n.loading ? v("", !0) : (m(), I("section", Bq, [
|
|
42730
|
+
f("div", Eq, [
|
|
42731
|
+
f("div", Qq, [
|
|
42711
42732
|
h(l, {
|
|
42712
42733
|
color: "primaryHighlight",
|
|
42713
42734
|
size: "2xl",
|
|
@@ -42715,7 +42736,7 @@ function wq(t, e, n, r, i, o) {
|
|
|
42715
42736
|
weight: "normal"
|
|
42716
42737
|
}, null, 8, ["text"])
|
|
42717
42738
|
]),
|
|
42718
|
-
f("div",
|
|
42739
|
+
f("div", vq, [
|
|
42719
42740
|
h(A, {
|
|
42720
42741
|
urlToImage: o.getImageURL,
|
|
42721
42742
|
uploadImageName: n.uploadImageName,
|
|
@@ -42741,7 +42762,7 @@ function wq(t, e, n, r, i, o) {
|
|
|
42741
42762
|
"onAdd:newAddress": o.handleAddNewAddress,
|
|
42742
42763
|
"onUpdate:club": o.updateClub
|
|
42743
42764
|
}, null, 8, ["locations", "validation", "club", "onAdd:newAddress", "onUpdate:club"]),
|
|
42744
|
-
f("div",
|
|
42765
|
+
f("div", wq, [
|
|
42745
42766
|
n.userLevel === "Admin" ? (m(), X(u, {
|
|
42746
42767
|
key: 0,
|
|
42747
42768
|
class: "mr-8",
|
|
@@ -42764,7 +42785,7 @@ function wq(t, e, n, r, i, o) {
|
|
|
42764
42785
|
]))
|
|
42765
42786
|
], 64);
|
|
42766
42787
|
}
|
|
42767
|
-
const
|
|
42788
|
+
const G8 = /* @__PURE__ */ ie(Cq, [["render", yq]]), bq = "data:image/png;base64,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", xq = {
|
|
42768
42789
|
name: "TournamentAssignments",
|
|
42769
42790
|
components: { BaseIcon: Ke, BaseText: Ee, BaseButton: He },
|
|
42770
42791
|
props: {
|
|
@@ -42790,7 +42811,7 @@ const U8 = /* @__PURE__ */ ie(pq, [["render", wq]]), yq = "data:image/png;base64
|
|
|
42790
42811
|
methods: {
|
|
42791
42812
|
getTournamentArtworkURL(t) {
|
|
42792
42813
|
var e;
|
|
42793
|
-
return ((e = t.Images) == null ? void 0 : e.URL) ||
|
|
42814
|
+
return ((e = t.Images) == null ? void 0 : e.URL) || bq;
|
|
42794
42815
|
},
|
|
42795
42816
|
formatEventDate(t, e) {
|
|
42796
42817
|
const n = /* @__PURE__ */ new Date(`${t}T${e}`), r = { weekday: "long", hour: "numeric", minute: "2-digit", hour12: !0 };
|
|
@@ -42883,20 +42904,20 @@ const U8 = /* @__PURE__ */ ie(pq, [["render", wq]]), yq = "data:image/png;base64
|
|
|
42883
42904
|
this.$emit("refreshAssignments");
|
|
42884
42905
|
}
|
|
42885
42906
|
}
|
|
42886
|
-
},
|
|
42907
|
+
}, Dq = { class: "w-full md:p-4" }, kq = { class: "w-full flex justify-between" }, Sq = { class: "flex" }, Mq = {
|
|
42887
42908
|
key: 0,
|
|
42888
42909
|
class: "text-center mt-10"
|
|
42889
|
-
},
|
|
42910
|
+
}, Tq = { key: 1 }, Oq = { class: "flex mr-4 md:mr-0" }, Pq = { class: "hidden md:flex w-14 h-20 flex-col pt-5" }, Rq = ["src"], zq = { class: "w-full flex flex-col h-14 justify-end md:ml-2" }, Nq = { class: "w-full flex ml-2 justify-between border-b" }, Fq = { class: "md:ml-14 md:-mt-2 w-full mt-2" }, Lq = { class: "flex-grow flex justify-between items-center bg-poolSetup px-4 py-2 rounded-lg" }, Yq = { class: "flex items-center space-x-4" }, Hq = { class: "hidden md:flex" }, qq = { class: "w-12 md:flex bg-poolSetup ml-2 px-4 py-2 rounded-lg" }, jq = {
|
|
42890
42911
|
key: 0,
|
|
42891
42912
|
class: "w-12 ml-1"
|
|
42892
|
-
},
|
|
42913
|
+
}, Kq = {
|
|
42893
42914
|
key: 1,
|
|
42894
42915
|
class: "w-12 ml-1"
|
|
42895
42916
|
};
|
|
42896
|
-
function
|
|
42917
|
+
function Uq(t, e, n, r, i, o) {
|
|
42897
42918
|
const a = x("BaseText"), l = x("BaseButton"), A = x("BaseIcon");
|
|
42898
|
-
return m(), I("div",
|
|
42899
|
-
f("div",
|
|
42919
|
+
return m(), I("div", Dq, [
|
|
42920
|
+
f("div", kq, [
|
|
42900
42921
|
h(a, {
|
|
42901
42922
|
text: "Assignments",
|
|
42902
42923
|
color: "primary",
|
|
@@ -42905,7 +42926,7 @@ function Kq(t, e, n, r, i, o) {
|
|
|
42905
42926
|
weight: "bold",
|
|
42906
42927
|
class: "pt-2"
|
|
42907
42928
|
}),
|
|
42908
|
-
f("div",
|
|
42929
|
+
f("div", Sq, [
|
|
42909
42930
|
h(l, {
|
|
42910
42931
|
iconName: "fa-arrow-rotate-right",
|
|
42911
42932
|
iconLeft: !0,
|
|
@@ -42932,7 +42953,7 @@ function Kq(t, e, n, r, i, o) {
|
|
|
42932
42953
|
}, null, 8, ["selected"])
|
|
42933
42954
|
])
|
|
42934
42955
|
]),
|
|
42935
|
-
o.filteredAssignments.length === 0 ? (m(), I("div",
|
|
42956
|
+
o.filteredAssignments.length === 0 ? (m(), I("div", Mq, [
|
|
42936
42957
|
h(a, {
|
|
42937
42958
|
text: "No Current Assignments",
|
|
42938
42959
|
color: "secondary",
|
|
@@ -42940,21 +42961,21 @@ function Kq(t, e, n, r, i, o) {
|
|
|
42940
42961
|
weight: "normal"
|
|
42941
42962
|
})
|
|
42942
42963
|
])) : v("", !0),
|
|
42943
|
-
o.filteredAssignments.length > 0 ? (m(), I("section",
|
|
42964
|
+
o.filteredAssignments.length > 0 ? (m(), I("section", Tq, [
|
|
42944
42965
|
(m(!0), I(se, null, ve(o.filteredAssignments, (c) => (m(), I("div", {
|
|
42945
42966
|
key: c.TournamentId,
|
|
42946
42967
|
class: "mb-6"
|
|
42947
42968
|
}, [
|
|
42948
|
-
f("div",
|
|
42949
|
-
f("div",
|
|
42969
|
+
f("div", Oq, [
|
|
42970
|
+
f("div", Pq, [
|
|
42950
42971
|
f("img", {
|
|
42951
42972
|
src: o.getTournamentArtworkURL(c),
|
|
42952
42973
|
alt: "Tournament Artwork",
|
|
42953
42974
|
class: "w-14 h-14 rounded-lg object-cover"
|
|
42954
|
-
}, null, 8,
|
|
42975
|
+
}, null, 8, Rq)
|
|
42955
42976
|
]),
|
|
42956
|
-
f("div",
|
|
42957
|
-
f("div",
|
|
42977
|
+
f("div", zq, [
|
|
42978
|
+
f("div", Nq, [
|
|
42958
42979
|
h(a, {
|
|
42959
42980
|
text: c.Name,
|
|
42960
42981
|
color: "primary",
|
|
@@ -42971,13 +42992,13 @@ function Kq(t, e, n, r, i, o) {
|
|
|
42971
42992
|
])
|
|
42972
42993
|
])
|
|
42973
42994
|
]),
|
|
42974
|
-
f("div",
|
|
42995
|
+
f("div", Fq, [
|
|
42975
42996
|
(m(!0), I(se, null, ve(c.Events, (u) => (m(), I("section", {
|
|
42976
42997
|
key: u.EventId,
|
|
42977
42998
|
class: "md:pl-4 mb-2 flex md:w-11/12"
|
|
42978
42999
|
}, [
|
|
42979
|
-
f("div",
|
|
42980
|
-
f("div",
|
|
43000
|
+
f("div", Lq, [
|
|
43001
|
+
f("div", Yq, [
|
|
42981
43002
|
h(A, {
|
|
42982
43003
|
iconName: o.getRoleIcon(u),
|
|
42983
43004
|
iconStyle: o.getIconStyle(u),
|
|
@@ -42992,7 +43013,7 @@ function Kq(t, e, n, r, i, o) {
|
|
|
42992
43013
|
class: "text-xs md:text-sm"
|
|
42993
43014
|
}, null, 8, ["text"])
|
|
42994
43015
|
]),
|
|
42995
|
-
f("span",
|
|
43016
|
+
f("span", Hq, [
|
|
42996
43017
|
h(a, {
|
|
42997
43018
|
text: o.formatEventDate(u.Date, u.StartTime),
|
|
42998
43019
|
color: "primary",
|
|
@@ -43002,7 +43023,7 @@ function Kq(t, e, n, r, i, o) {
|
|
|
43002
43023
|
}, null, 8, ["text"])
|
|
43003
43024
|
])
|
|
43004
43025
|
]),
|
|
43005
|
-
f("div",
|
|
43026
|
+
f("div", qq, [
|
|
43006
43027
|
h(A, {
|
|
43007
43028
|
iconName: o.getStatusIcon(u),
|
|
43008
43029
|
size: "md",
|
|
@@ -43010,7 +43031,7 @@ function Kq(t, e, n, r, i, o) {
|
|
|
43010
43031
|
class: U(o.getIconClass(u))
|
|
43011
43032
|
}, null, 8, ["iconName", "class"])
|
|
43012
43033
|
]),
|
|
43013
|
-
o.shouldShowButton(u) && i.showCurrent ? (m(), I("div",
|
|
43034
|
+
o.shouldShowButton(u) && i.showCurrent ? (m(), I("div", jq, [
|
|
43014
43035
|
o.shouldShowButton(u) ? (m(), X(l, {
|
|
43015
43036
|
key: 0,
|
|
43016
43037
|
iconName: "fa-right-from-line",
|
|
@@ -43022,14 +43043,14 @@ function Kq(t, e, n, r, i, o) {
|
|
|
43022
43043
|
class: "h-10 w-10 pr-4"
|
|
43023
43044
|
}, null, 8, ["onButtonClick"])) : v("", !0)
|
|
43024
43045
|
])) : v("", !0),
|
|
43025
|
-
!o.shouldShowButton(u) && i.showCurrent ? (m(), I("span",
|
|
43046
|
+
!o.shouldShowButton(u) && i.showCurrent ? (m(), I("span", Kq)) : v("", !0)
|
|
43026
43047
|
]))), 128))
|
|
43027
43048
|
])
|
|
43028
43049
|
]))), 128))
|
|
43029
43050
|
])) : v("", !0)
|
|
43030
43051
|
]);
|
|
43031
43052
|
}
|
|
43032
|
-
const
|
|
43053
|
+
const J8 = /* @__PURE__ */ ie(xq, [["render", Uq]]), Gq = {
|
|
43033
43054
|
name: "PenaltyFencerCard",
|
|
43034
43055
|
components: { BaseButton: He, BaseIcon: Ke, BaseText: Ee },
|
|
43035
43056
|
emits: ["handleConfirmRemoval", "penalty:removal"],
|
|
@@ -43093,29 +43114,29 @@ const G8 = /* @__PURE__ */ ie(bq, [["render", Kq]]), Uq = {
|
|
|
43093
43114
|
t.PersonId = this.personPenalties.PersonId, this.$emit("penalty:removal", t);
|
|
43094
43115
|
}
|
|
43095
43116
|
}
|
|
43096
|
-
},
|
|
43117
|
+
}, Jq = { class: "hidden md:block mr-4" }, Wq = {
|
|
43097
43118
|
key: 0,
|
|
43098
43119
|
class: "w-9 h-9 rounded-xl bg-dropdownSelect flex items-center justify-center"
|
|
43099
|
-
},
|
|
43120
|
+
}, Vq = ["src"], Xq = { class: "flex flex-col w-1/2 md:w-4/12 justify-start" }, Zq = { class: "flex flex-row ml-auto space-x-4" }, _q = {
|
|
43100
43121
|
key: 0,
|
|
43101
43122
|
class: "flex items-center"
|
|
43102
|
-
},
|
|
43123
|
+
}, $q = {
|
|
43103
43124
|
key: 1,
|
|
43104
43125
|
class: "flex items-center"
|
|
43105
|
-
},
|
|
43126
|
+
}, e8 = {
|
|
43106
43127
|
key: 2,
|
|
43107
43128
|
class: "flex items-center ml-2"
|
|
43108
|
-
},
|
|
43129
|
+
}, t8 = {
|
|
43109
43130
|
key: 3,
|
|
43110
43131
|
class: "flex items-center ml-2"
|
|
43111
|
-
},
|
|
43132
|
+
}, n8 = { class: "ml-4" }, r8 = {
|
|
43112
43133
|
key: 0,
|
|
43113
43134
|
class: "border-t border-dropdownSelect md:p-3"
|
|
43114
|
-
},
|
|
43135
|
+
}, i8 = { class: "flex flex-row justify-between" }, o8 = { class: "flex flex-row" }, s8 = { class: "flex flex-row" }, a8 = { class: "flex flex-col md:flex-row justify-between my-1" }, l8 = { class: "flex flex-row" }, A8 = { class: "flex flex-row" }, c8 = {
|
|
43115
43136
|
key: 0,
|
|
43116
43137
|
class: "md:-mt-5 mx-auto"
|
|
43117
43138
|
};
|
|
43118
|
-
function
|
|
43139
|
+
function u8(t, e, n, r, i, o) {
|
|
43119
43140
|
const a = x("BaseText"), l = x("BaseIcon"), A = x("BaseButton");
|
|
43120
43141
|
return m(), I(se, null, [
|
|
43121
43142
|
n.personPenalties ? (m(), I("div", {
|
|
@@ -43123,8 +43144,8 @@ function c8(t, e, n, r, i, o) {
|
|
|
43123
43144
|
class: "flex items-center border-b border-dropdownSelect bg-white hover:border-bright px-4 py-4",
|
|
43124
43145
|
onClick: e[0] || (e[0] = (...c) => o.toggleDetails && o.toggleDetails(...c))
|
|
43125
43146
|
}, [
|
|
43126
|
-
f("div",
|
|
43127
|
-
o.portraitURL ? v("", !0) : (m(), I("div",
|
|
43147
|
+
f("div", Jq, [
|
|
43148
|
+
o.portraitURL ? v("", !0) : (m(), I("div", Wq, [
|
|
43128
43149
|
h(a, {
|
|
43129
43150
|
text: "",
|
|
43130
43151
|
size: "sm",
|
|
@@ -43137,9 +43158,9 @@ function c8(t, e, n, r, i, o) {
|
|
|
43137
43158
|
src: o.portraitURL,
|
|
43138
43159
|
alt: "Portrait",
|
|
43139
43160
|
class: "w-9 h-9 rounded-xl"
|
|
43140
|
-
}, null, 8,
|
|
43161
|
+
}, null, 8, Vq)) : v("", !0)
|
|
43141
43162
|
]),
|
|
43142
|
-
f("div",
|
|
43163
|
+
f("div", Xq, [
|
|
43143
43164
|
h(a, {
|
|
43144
43165
|
text: n.personPenalties.DisplayName,
|
|
43145
43166
|
size: "md",
|
|
@@ -43148,8 +43169,8 @@ function c8(t, e, n, r, i, o) {
|
|
|
43148
43169
|
class: "text-sm md:text-lg"
|
|
43149
43170
|
}, null, 8, ["text"])
|
|
43150
43171
|
]),
|
|
43151
|
-
f("div",
|
|
43152
|
-
o.yellowCardCount > 0 ? (m(), I("div",
|
|
43172
|
+
f("div", Zq, [
|
|
43173
|
+
o.yellowCardCount > 0 ? (m(), I("div", _q, [
|
|
43153
43174
|
h(l, {
|
|
43154
43175
|
"icon-name": "fa-square",
|
|
43155
43176
|
size: "lg",
|
|
@@ -43163,7 +43184,7 @@ function c8(t, e, n, r, i, o) {
|
|
|
43163
43184
|
class: "ml-2"
|
|
43164
43185
|
}, null, 8, ["text"])
|
|
43165
43186
|
])) : v("", !0),
|
|
43166
|
-
o.redCardCount > 0 ? (m(), I("div",
|
|
43187
|
+
o.redCardCount > 0 ? (m(), I("div", $q, [
|
|
43167
43188
|
h(l, {
|
|
43168
43189
|
"icon-name": "fa-square",
|
|
43169
43190
|
size: "lg",
|
|
@@ -43177,14 +43198,14 @@ function c8(t, e, n, r, i, o) {
|
|
|
43177
43198
|
class: "ml-2"
|
|
43178
43199
|
}, null, 8, ["text"])
|
|
43179
43200
|
])) : v("", !0),
|
|
43180
|
-
o.blackCardCount > 0 ? (m(), I("div",
|
|
43201
|
+
o.blackCardCount > 0 ? (m(), I("div", e8, [
|
|
43181
43202
|
h(l, {
|
|
43182
43203
|
"icon-name": "fa-square",
|
|
43183
43204
|
size: "lg",
|
|
43184
43205
|
color: "black"
|
|
43185
43206
|
})
|
|
43186
43207
|
])) : v("", !0),
|
|
43187
|
-
o.medicalCount > 0 ? (m(), I("div",
|
|
43208
|
+
o.medicalCount > 0 ? (m(), I("div", t8, [
|
|
43188
43209
|
h(l, {
|
|
43189
43210
|
"icon-name": "fa-plus-circle",
|
|
43190
43211
|
size: "lg",
|
|
@@ -43192,7 +43213,7 @@ function c8(t, e, n, r, i, o) {
|
|
|
43192
43213
|
})
|
|
43193
43214
|
])) : v("", !0)
|
|
43194
43215
|
]),
|
|
43195
|
-
f("button",
|
|
43216
|
+
f("button", n8, [
|
|
43196
43217
|
h(l, {
|
|
43197
43218
|
"icon-name": "fa-chevron-down",
|
|
43198
43219
|
size: "lg",
|
|
@@ -43203,13 +43224,13 @@ function c8(t, e, n, r, i, o) {
|
|
|
43203
43224
|
])) : v("", !0),
|
|
43204
43225
|
h(mn, { name: "fade-in-down" }, {
|
|
43205
43226
|
default: Te(() => [
|
|
43206
|
-
i.localShowDetails ? (m(), I("div",
|
|
43227
|
+
i.localShowDetails ? (m(), I("div", r8, [
|
|
43207
43228
|
(m(!0), I(se, null, ve(n.personPenalties.Penalties, (c) => (m(), I("div", {
|
|
43208
43229
|
key: c.BoutId,
|
|
43209
43230
|
class: "flex flex-col p-2 border-b my-2"
|
|
43210
43231
|
}, [
|
|
43211
|
-
f("div",
|
|
43212
|
-
f("div",
|
|
43232
|
+
f("div", i8, [
|
|
43233
|
+
f("div", o8, [
|
|
43213
43234
|
h(l, {
|
|
43214
43235
|
"icon-name": i.penaltyIcons[c.PenaltyType],
|
|
43215
43236
|
size: "md",
|
|
@@ -43223,7 +43244,7 @@ function c8(t, e, n, r, i, o) {
|
|
|
43223
43244
|
class: "-mt-0.5 ml-2 text-sm md:text-md"
|
|
43224
43245
|
}, null, 8, ["text"])
|
|
43225
43246
|
]),
|
|
43226
|
-
f("div",
|
|
43247
|
+
f("div", s8, [
|
|
43227
43248
|
h(a, {
|
|
43228
43249
|
text: n.eventName,
|
|
43229
43250
|
size: "sm",
|
|
@@ -43247,8 +43268,8 @@ function c8(t, e, n, r, i, o) {
|
|
|
43247
43268
|
}, null, 8, ["text"])
|
|
43248
43269
|
])
|
|
43249
43270
|
]),
|
|
43250
|
-
f("div",
|
|
43251
|
-
f("div",
|
|
43271
|
+
f("div", a8, [
|
|
43272
|
+
f("div", l8, [
|
|
43252
43273
|
h(a, {
|
|
43253
43274
|
text: "Notes:",
|
|
43254
43275
|
size: "sm",
|
|
@@ -43265,7 +43286,7 @@ function c8(t, e, n, r, i, o) {
|
|
|
43265
43286
|
class: "ml-2"
|
|
43266
43287
|
}, null, 8, ["text"])) : v("", !0)
|
|
43267
43288
|
]),
|
|
43268
|
-
f("div",
|
|
43289
|
+
f("div", A8, [
|
|
43269
43290
|
h(a, {
|
|
43270
43291
|
text: "Issued By:",
|
|
43271
43292
|
size: "sm",
|
|
@@ -43282,7 +43303,7 @@ function c8(t, e, n, r, i, o) {
|
|
|
43282
43303
|
}, null, 8, ["text"])
|
|
43283
43304
|
])
|
|
43284
43305
|
]),
|
|
43285
|
-
o.shouldShowConfirmButton(c) ? (m(), I("div",
|
|
43306
|
+
o.shouldShowConfirmButton(c) ? (m(), I("div", c8, [
|
|
43286
43307
|
h(A, {
|
|
43287
43308
|
label: "Confirm Removal of Fencer",
|
|
43288
43309
|
size: "sm",
|
|
@@ -43298,7 +43319,7 @@ function c8(t, e, n, r, i, o) {
|
|
|
43298
43319
|
})
|
|
43299
43320
|
], 64);
|
|
43300
43321
|
}
|
|
43301
|
-
const
|
|
43322
|
+
const d8 = /* @__PURE__ */ ie(Gq, [["render", u8], ["__scopeId", "data-v-507c44cb"]]), g8 = {
|
|
43302
43323
|
name: "PenaltySummary",
|
|
43303
43324
|
components: { BaseText: Ee, EventStatusBox: Qo },
|
|
43304
43325
|
props: {
|
|
@@ -43349,12 +43370,12 @@ const u8 = /* @__PURE__ */ ie(Uq, [["render", c8], ["__scopeId", "data-v-507c44c
|
|
|
43349
43370
|
return !isNaN(t) && t !== null && t !== void 0;
|
|
43350
43371
|
}
|
|
43351
43372
|
}
|
|
43352
|
-
},
|
|
43353
|
-
function
|
|
43373
|
+
}, h8 = { class: "flex flex-col md:flex-row md:bg-poolSetup py-1 px-2 md:px-4 md:rounded-xl justify-between md:shadow md:border border-dropdownSelect" }, f8 = { class: "hidden md:flex flex-col pt-2" }, m8 = { class: "flex flex-row space-x-4 items-center" };
|
|
43374
|
+
function p8(t, e, n, r, i, o) {
|
|
43354
43375
|
var A;
|
|
43355
43376
|
const a = x("BaseText"), l = x("EventStatusBox");
|
|
43356
|
-
return m(), I("div",
|
|
43357
|
-
f("section",
|
|
43377
|
+
return m(), I("div", h8, [
|
|
43378
|
+
f("section", f8, [
|
|
43358
43379
|
h(a, {
|
|
43359
43380
|
text: ((A = n.event) == null ? void 0 : A.EventName) || "Unknown Event",
|
|
43360
43381
|
size: "",
|
|
@@ -43363,7 +43384,7 @@ function m8(t, e, n, r, i, o) {
|
|
|
43363
43384
|
class: "text-sm md:text-lg"
|
|
43364
43385
|
}, null, 8, ["text"])
|
|
43365
43386
|
]),
|
|
43366
|
-
f("section",
|
|
43387
|
+
f("section", m8, [
|
|
43367
43388
|
h(l, {
|
|
43368
43389
|
"status-count": o.safeYellowCards,
|
|
43369
43390
|
"status-label": "Yellow",
|
|
@@ -43387,8 +43408,8 @@ function m8(t, e, n, r, i, o) {
|
|
|
43387
43408
|
])
|
|
43388
43409
|
]);
|
|
43389
43410
|
}
|
|
43390
|
-
const
|
|
43391
|
-
components: { PenaltySummary:
|
|
43411
|
+
const C8 = /* @__PURE__ */ ie(g8, [["render", p8]]), I8 = {
|
|
43412
|
+
components: { PenaltySummary: C8, BaseText: Ee, EditEventsTopMenu: Qn, PenaltyFencerCard: d8 },
|
|
43392
43413
|
emits: ["tab:menu-click", "penalty:removal"],
|
|
43393
43414
|
props: {
|
|
43394
43415
|
event: {
|
|
@@ -43438,14 +43459,14 @@ const p8 = /* @__PURE__ */ ie(d8, [["render", m8]]), C8 = {
|
|
|
43438
43459
|
this.$emit("penalty:removal", t);
|
|
43439
43460
|
}
|
|
43440
43461
|
}
|
|
43441
|
-
},
|
|
43462
|
+
}, B8 = {
|
|
43442
43463
|
key: 0,
|
|
43443
43464
|
class: "mb-10"
|
|
43444
|
-
},
|
|
43465
|
+
}, E8 = {
|
|
43445
43466
|
key: 1,
|
|
43446
43467
|
class: "mb-10"
|
|
43447
|
-
},
|
|
43448
|
-
function
|
|
43468
|
+
}, Q8 = ["src"], v8 = { class: "flex justify-center" };
|
|
43469
|
+
function w8(t, e, n, r, i, o) {
|
|
43449
43470
|
const a = x("EditEventsTopMenu"), l = x("PenaltySummary"), A = x("PenaltyFencerCard"), c = x("BaseText");
|
|
43450
43471
|
return m(), I("section", null, [
|
|
43451
43472
|
h(a, {
|
|
@@ -43461,7 +43482,7 @@ function v8(t, e, n, r, i, o) {
|
|
|
43461
43482
|
medicalCalls: o.totalMedicalCalls
|
|
43462
43483
|
}, null, 8, ["event", "yellowCards", "redCards", "blackCards", "medicalCalls"]),
|
|
43463
43484
|
e[0] || (e[0] = f("div", { class: "md:p-4" }, null, -1)),
|
|
43464
|
-
n.penalties.length > 0 ? (m(), I("div",
|
|
43485
|
+
n.penalties.length > 0 ? (m(), I("div", B8, [
|
|
43465
43486
|
(m(!0), I(se, null, ve(n.penalties, (u, d) => (m(), I("div", { key: d }, [
|
|
43466
43487
|
h(A, {
|
|
43467
43488
|
eventName: "This is a event",
|
|
@@ -43470,13 +43491,13 @@ function v8(t, e, n, r, i, o) {
|
|
|
43470
43491
|
}, null, 8, ["personPenalties", "onPenalty:removal"])
|
|
43471
43492
|
]))), 128))
|
|
43472
43493
|
])) : v("", !0),
|
|
43473
|
-
!Array.isArray(n.penalties) || n.penalties.length === 0 ? (m(), I("div",
|
|
43494
|
+
!Array.isArray(n.penalties) || n.penalties.length === 0 ? (m(), I("div", E8, [
|
|
43474
43495
|
f("img", {
|
|
43475
43496
|
alt: "Small desert scene with wind blowing.",
|
|
43476
43497
|
class: "w-60 mt-8 mx-auto",
|
|
43477
43498
|
src: i.emptyDesertIcon
|
|
43478
|
-
}, null, 8,
|
|
43479
|
-
f("div",
|
|
43499
|
+
}, null, 8, Q8),
|
|
43500
|
+
f("div", v8, [
|
|
43480
43501
|
h(c, {
|
|
43481
43502
|
color: "primaryHighlight",
|
|
43482
43503
|
size: "lg",
|
|
@@ -43488,42 +43509,42 @@ function v8(t, e, n, r, i, o) {
|
|
|
43488
43509
|
])) : v("", !0)
|
|
43489
43510
|
]);
|
|
43490
43511
|
}
|
|
43491
|
-
const
|
|
43512
|
+
const W8 = /* @__PURE__ */ ie(I8, [["render", w8]]);
|
|
43492
43513
|
export {
|
|
43493
43514
|
Cw as AddressAutocomplete,
|
|
43494
|
-
|
|
43495
|
-
|
|
43515
|
+
R8 as AdminLeftMenu,
|
|
43516
|
+
J8 as Assignment,
|
|
43496
43517
|
He as BaseButton,
|
|
43497
43518
|
Ke as BaseIcon,
|
|
43498
43519
|
sr as BaseInput,
|
|
43499
43520
|
po as BaseModal,
|
|
43500
43521
|
Ap as BaseRadioGroup,
|
|
43501
|
-
|
|
43522
|
+
x8 as BaseTag,
|
|
43502
43523
|
Ee as BaseText,
|
|
43503
|
-
|
|
43504
|
-
|
|
43505
|
-
|
|
43524
|
+
H8 as Bracket,
|
|
43525
|
+
D8 as Breadcrumb,
|
|
43526
|
+
G8 as ClubManagement,
|
|
43506
43527
|
Jg as DatePicker,
|
|
43507
43528
|
qt as DropDownMenu,
|
|
43508
|
-
|
|
43529
|
+
q8 as EditEventInfo,
|
|
43509
43530
|
Vg as EditEventWizard,
|
|
43510
|
-
|
|
43511
|
-
|
|
43512
|
-
|
|
43531
|
+
z8 as EventAttendance,
|
|
43532
|
+
j8 as EventFinalResults,
|
|
43533
|
+
S8 as EventWizardModal,
|
|
43513
43534
|
Dp as FilterAndSortBar,
|
|
43514
43535
|
Rp as FilterUpcomingPast,
|
|
43515
|
-
|
|
43536
|
+
M8 as GridContainer,
|
|
43516
43537
|
Ba as ImageCropper,
|
|
43517
|
-
|
|
43518
|
-
|
|
43519
|
-
|
|
43520
|
-
|
|
43521
|
-
|
|
43538
|
+
K8 as KioskDisplay,
|
|
43539
|
+
P8 as ListEvents,
|
|
43540
|
+
k8 as LoadingModal,
|
|
43541
|
+
W8 as PenaltyReport,
|
|
43542
|
+
U8 as PersonManagement,
|
|
43522
43543
|
Xg as PoolGrid,
|
|
43523
|
-
|
|
43524
|
-
|
|
43525
|
-
|
|
43526
|
-
|
|
43544
|
+
L8 as PoolLive,
|
|
43545
|
+
N8 as PoolManagement,
|
|
43546
|
+
Y8 as PoolResults,
|
|
43547
|
+
F8 as StaffList,
|
|
43527
43548
|
Ic as TextBoxEditor,
|
|
43528
|
-
|
|
43549
|
+
O8 as TournamentManagement
|
|
43529
43550
|
};
|