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
|
import { useRouter } from "next/router";
import { AnimatePresence, motion as m } from "framer-motion";
import NextNProgress from "nextjs-progressbar";
import { SessionProvider } from "next-auth/react";
import "../styles/globals.css";
import "react-toastify/dist/ReactToastify.css";
import "react-loading-skeleton/dist/skeleton.css";
import { SkeletonTheme } from "react-loading-skeleton";
import SearchPalette from "@/components/searchPalette";
import { SearchProvider } from "@/lib/context/isOpenState";
import Head from "next/head";
import { WatchPageProvider } from "@/lib/context/watchPageProvider";
import { ToastContainer, toast } from "react-toastify";
import { useEffect } from "react";
import { unixTimestampToRelativeTime } from "@/utils/getTimes";
export default function App({
Component,
pageProps: { session, ...pageProps },
}) {
const router = useRouter();
useEffect(() => {
async function getBroadcast() {
try {
const res = await fetch("/api/v2/admin/broadcast", {
method: "GET",
headers: {
"Content-Type": "application/json",
"X-Broadcast-Key": "get-broadcast",
},
});
const data = await res.json();
if (
data &&
data?.message !== "No broadcast" &&
data?.message !== "unauthorized"
) {
toast(
`${data.message} ${
data?.startAt ? unixTimestampToRelativeTime(data.startAt) : ""
}`,
{
position: "top-center",
autoClose: false,
closeOnClick: true,
draggable: true,
theme: "colored",
className: "toaster",
style: {
background: "#232329",
color: "#fff",
},
}
);
}
} catch (err) {
console.log(err);
}
}
getBroadcast();
}, []);
return (
<>
<Head>
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no, user-scalable=no, viewport-fit=cover"
/>
</Head>
<SessionProvider session={session}>
<SearchProvider>
<WatchPageProvider>
<AnimatePresence mode="wait">
<SkeletonTheme baseColor="#232329" highlightColor="#2a2a32">
<ToastContainer pauseOnFocusLoss={false} pauseOnHover={false} />
<m.div
key={`route-${router.route}`}
transition={{ duration: 0.5 }}
initial="initialState"
animate="animateState"
exit="exitState"
variants={{
initialState: {
opacity: 0,
},
animateState: {
opacity: 1,
},
exitState: {},
}}
className="z-50 w-screen"
>
<NextNProgress
color="#FF7E2C"
startPosition={0.3}
stopDelayMs={200}
height={3}
showOnShallow={true}
/>
<SearchPalette />
<Component {...pageProps} />
</m.div>
</SkeletonTheme>
</AnimatePresence>
</WatchPageProvider>
</SearchProvider>
</SessionProvider>
</>
);
}
|