mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 21:00:37 -05:00
70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import { Container, Flex, useToast } from "@chakra-ui/react";
|
|
import { t } from "@lingui/macro";
|
|
import { AppProps } from "next/app";
|
|
import { useState } from "react";
|
|
import { SWRConfig } from "swr";
|
|
import Footer from "./Footer";
|
|
import IconNavBar from "./IconNavBar";
|
|
import TopNav from "./TopNav";
|
|
|
|
const Layout = ({ Component, pageProps }: AppProps) => {
|
|
const [errors, setErrors] = useState(new Set<string>());
|
|
const toast = useToast();
|
|
|
|
return (
|
|
<SWRConfig
|
|
value={{
|
|
fetcher: (resource, init) =>
|
|
fetch(resource, init).then(async (res) => {
|
|
const data = await res.text();
|
|
|
|
return JSON.parse(data, reviver);
|
|
}),
|
|
revalidateOnFocus: false,
|
|
revalidateOnReconnect: false,
|
|
onError: (_, key) => {
|
|
if (errors.has(key)) return;
|
|
setErrors(new Set([...errors, key]));
|
|
toast({
|
|
duration: null,
|
|
isClosable: true,
|
|
position: "top-right",
|
|
status: "error",
|
|
description: t`An error occurred`,
|
|
onCloseComplete: () =>
|
|
setErrors(
|
|
new Set(Array.from(errors).filter((error) => error !== key))
|
|
),
|
|
});
|
|
},
|
|
}}
|
|
>
|
|
<TopNav />
|
|
<IconNavBar />
|
|
<Flex flexDirection="column" minH="100vh" pt="1rem">
|
|
<Container maxWidth="100ch">
|
|
<Component {...pageProps} />
|
|
</Container>
|
|
<Footer />
|
|
</Flex>
|
|
</SWRConfig>
|
|
);
|
|
};
|
|
|
|
function reviver(key: any, value: any) {
|
|
if (Array.isArray(value)) {
|
|
return value.map((entry) => {
|
|
if (entry.updatedAt)
|
|
return { ...entry, updatedAt: new Date(entry.updatedAt) };
|
|
|
|
return entry;
|
|
});
|
|
}
|
|
|
|
if (key === "updatedAt") return new Date(value);
|
|
|
|
return value;
|
|
}
|
|
|
|
export default Layout;
|