-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.js
118 lines (106 loc) · 3.92 KB
/
setup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import { setUpPlayingArea } from "./js/playing-area.js";
import { setUpDetailsPanel } from "./js/details/details-panel.js";
import { setUpToggles } from "./js/toggles.js";
import { setUpShots } from "./js/shots/shot.js";
import { setUpTable } from "./js/table/table.js";
import { setUpCSVDownloadUpload } from "./js/csv.js";
import { setUpLegend, shotTypeLegend } from "./js/shots/legend.js";
import { select2Dropdown } from "./js/details/widgets/widgets-special.js";
import { cfgOtherSetup } from "./js/details/config-details.js";
import { customCardSetup } from "./js/custom-setups/card-setup.js";
import { customConfigSetup } from "./js/custom-setups/config-setup.js";
export let sport;
export let dataStorage;
export let cfgSportCustomSetup;
export let cfgSportA;
export let cfgSportGoalCoords;
export let cfgSportScoringArea;
export let getDefaultSetup;
export let cfgDefaultEnable;
export let perimeterId;
export function indexSetup() {
d3.json("/supported-sports.json").then((data) => {
const customSports = _.filter(data.sports, "needsCustomSetup");
for (const s of customSports) {
customCardSetup(s);
}
});
}
export function setCfgSportGoalCoords(newGoalCoords) {
cfgSportGoalCoords = newGoalCoords;
}
export function setup(s) {
sport = s;
dataStorage = localDataStorage(sport);
d3.json("/supported-sports.json").then((data) => {
let sportData = _.find(data.sports, { id: sport });
cfgSportCustomSetup = false;
if (sportData.needsCustomSetup) {
sportData = customConfigSetup(sportData);
cfgSportCustomSetup = true;
}
cfgSportA = sportData.appearance;
cfgSportGoalCoords = sportData.goalCoords;
cfgSportScoringArea = sportData.scoringArea;
perimeterId = sportData.perimeter;
getDefaultSetup = function () {
const details = _.cloneDeep(sportData.defaultDetails);
return {
details: details,
...cfgOtherSetup,
twoPointEnable:
_.some(details, { type: "x", id: "x2" }) &&
_.some(details, { type: "y", id: "y2" }),
};
};
cfgDefaultEnable = sportData.defaultEnable;
setUpPlayingArea();
setUpDetailsPanel();
setUpToggles();
setUpTable();
setUpShots();
setUpCSVDownloadUpload();
setUpLegend();
d3.select("h1")
.attr("href", "./")
.on("click", () => {
window.location = "./";
});
function decode(a) {
return a.replace(/[a-zA-Z]/g, function (c) {
return String.fromCharCode(
(c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13)
? c
: c - 26
);
});
}
// https://www.ionos.com/digitalguide/e-mail/e-mail-security/protecting-your-email-address-how-to-do-it/
// ROT13 encryption for email
function decode(a) {
return a.replace(/[a-zA-Z]/g, function (c) {
return String.fromCharCode(
(c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13)
? c
: c - 26
);
});
}
d3.select("#email").on("click", function () {
const y = "znvygb:[email protected]";
d3.select(this)
.attr("href", decode(y))
.on("click", () => {});
});
$(document).ready(function () {
select2Dropdown();
$("#shot-type-select").on("change", function (e) {
// update legend
shotTypeLegend();
// https://stackoverflow.com/a/54047075
// do not delete new options
$(this).find("option").removeAttr("data-select2-tag");
});
});
});
}