-
Notifications
You must be signed in to change notification settings - Fork 21
/
tally.js
50 lines (43 loc) · 1.15 KB
/
tally.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
export const makeTallyManger = () => {
let _landingTotal = 0;
let _crashTotal = 0;
const getLandingTotalStorage = () => {
try {
return localStorage.getItem("landingTotal")
? localStorage.getItem("landingTotal")
: 0;
} catch {
return _landingTotal;
}
};
const getCrashTotalStorage = () => {
try {
return localStorage.getItem("crashTotal")
? localStorage.getItem("crashTotal")
: 0;
} catch {
return _crashTotal;
}
};
_landingTotal = parseInt(getLandingTotalStorage());
_crashTotal = parseInt(getCrashTotalStorage());
const storeLanding = () => {
_landingTotal++;
try {
localStorage.setItem("landingTotal", _landingTotal);
} catch {}
};
const storeCrash = () => {
_crashTotal++;
try {
localStorage.setItem("crashTotal", _crashTotal);
} catch {}
};
const updateDisplay = () => {
document.querySelector("#landingTotal").textContent =
getLandingTotalStorage();
document.querySelector("#crashTotal").textContent = getCrashTotalStorage();
};
updateDisplay();
return { storeLanding, storeCrash, updateDisplay };
};