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
119
120
121
122
123
124
125
|
import React, { useState } from 'react';
import { Song } from "../../types/song";
import { GuessType } from "../../types/guess";
import { scoreToEmoji } from "../../helpers";
import { Button } from "../Button";
import { MiniYouTubePlayer } from "../MiniYouTubePlayer";
import * as Styled from "./index.styled";
import { theme } from "../../constants";
interface SolutionProps {
didGuess: boolean;
currentTry: number;
todaysSolution: Song;
}
function Solution({
didGuess,
todaysSolution,
currentTry,
}: SolutionProps) {
const todaysDate = new Date();
const christmasSongDay = todaysDate.getFullYear() == 2023 && todaysDate.getMonth() == 11 && todaysDate.getDate() >= 1 && todaysDate.getDate() <= 25
const gifs = ["923701894117982238", "655441669893914664", "919955833264160810"]
const randomGif = gifs[Math.floor(Math.random() * gifs.length)];
return (
<>
<Styled.SongTitle>
Today's song is {todaysSolution.artist} - {todaysSolution.name}
</Styled.SongTitle>
{christmasSongDay &&
<img src={"https://cdn.discordapp.com/emojis/" + randomGif + ".gif?size=44&quality=lossless"}></img>
}
{didGuess &&
<Styled.Tries>
You guessed it in {currentTry} {currentTry === 1 ? 'try' : 'tries'}.
</Styled.Tries>
}
<MiniYouTubePlayer id={todaysSolution.youtubeId} />
</>
);
}
interface ShareButtonProps {
guesses: GuessType[];
variant?: keyof typeof theme;
}
function ShareButton({
guesses,
variant
}:ShareButtonProps) {
const result = scoreToEmoji(guesses);
const [buttonText, setButtonText] = useState('Share Results');
const handleClick = React.useCallback(() => {
// The Windows share sheet is dumb and doesn't have a copy function.
const windowsPlatforms = ['Win32', 'Win64', 'Windows', 'WinCE'];
const onWindows = windowsPlatforms.indexOf(window.navigator.platform) !== -1;
if (navigator.share !== undefined && !onWindows) {
navigator.share({text: result})
} else if (navigator.clipboard !== undefined) {
navigator.clipboard.writeText(result)
setButtonText('Copied!');
} else {
setButtonText('Failed to open share menu or copy');
}
}, [guesses]);
return (
<>
<Button onClick={handleClick} variant={variant}>
{buttonText}
</Button>
</>
)
}
interface Props {
didGuess: boolean;
currentTry: number;
todaysSolution: Song;
guesses: GuessType[];
}
export function Result({
didGuess,
todaysSolution,
guesses,
currentTry,
}: Props) {
const hoursToNextDay = Math.floor(
(new Date(new Date().setHours(24, 0, 0, 0)).getTime() -
new Date().getTime()) /
1000 /
60 /
60
);
if (didGuess) {
const textForTry = ["Perfect!", "Wow!", "Super!", "Congrats!", "Nice!"];
return (
<>
<Styled.ResultTitle>{textForTry[currentTry - 1]}</Styled.ResultTitle>
<Solution todaysSolution={todaysSolution} didGuess={didGuess} currentTry={currentTry} />
<ShareButton guesses={guesses} variant="green" />
<Styled.TimeToNext>
Remember to come back in {hoursToNextDay} hours!
</Styled.TimeToNext>
</>
);
} else {
return (
<>
<Styled.ResultTitle>Unfortunately, thats wrong.</Styled.ResultTitle>
<Solution todaysSolution={todaysSolution} didGuess={didGuess} currentTry={currentTry} />
<ShareButton guesses={guesses} variant="red" />
<Styled.TimeToNext>
Try again in {hoursToNextDay} hours.
</Styled.TimeToNext>
</>
);
}
}
|