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
|
import React from "react";
import { DailySolution, getDailyMVSolution } from "../helpers/fetchSolution";
import { useGameState } from "../hooks/useGameState";
import { Header, InfoPopUp, Game, Footer } from "../components";
import * as Styled from "../app.styled";
export function MVPage() {
const [todaysSolution, setTodaysSolution] =
React.useState<DailySolution | null>(null);
const firstRun = localStorage.getItem("firstRun") === null;
React.useEffect(() => {
getDailyMVSolution().then((solution) => setTodaysSolution(solution));
}, []);
const {
guesses,
currentTry,
setSelectedSong,
didGuess,
skip,
guess,
isSubmitting,
} = useGameState({
solution: todaysSolution?.song ?? null,
persist: true,
sessionDate: todaysSolution?.date,
sessionToken: todaysSolution?.sessionToken,
initialSig: todaysSolution?.initialSig,
mode: "dailyMV",
});
const [isInfoPopUpOpen, setIsInfoPopUpOpen] =
React.useState<boolean>(firstRun);
const openInfoPopUp = React.useCallback(() => {
setIsInfoPopUpOpen(true);
}, []);
const closeInfoPopUp = React.useCallback(() => {
if (firstRun) {
localStorage.setItem("firstRun", "false");
}
setIsInfoPopUpOpen(false);
}, [localStorage.getItem("firstRun")]);
if (todaysSolution === null) {
return null;
}
return (
<main>
<Header openInfoPopUp={openInfoPopUp} />
{isInfoPopUpOpen && <InfoPopUp onClose={closeInfoPopUp} gameMode="dailyMV" />}
<Styled.Container>
<Game
guesses={guesses}
didGuess={didGuess}
todaysSolution={todaysSolution.song}
dailyDate={todaysSolution.date}
currentTry={currentTry}
setSelectedSong={setSelectedSong}
skip={skip}
guess={guess}
mode="dailyMV"
isSubmitting={isSubmitting}
/>
</Styled.Container>
<Footer />
</main>
);
}
|