2022-03-06 19:46:59 -05:00
|
|
|
import '../styles/globals.css'
|
|
|
|
import { GeistProvider, CssBaseline } from '@geist-ui/core'
|
|
|
|
import { useState } from 'react'
|
|
|
|
import type { AppProps as NextAppProps } from "next/app";
|
|
|
|
|
|
|
|
export type ThemeProps = {
|
|
|
|
theme: "light" | "dark" | string,
|
|
|
|
changeTheme: () => void
|
|
|
|
}
|
|
|
|
|
|
|
|
type AppProps<P = any> = {
|
|
|
|
pageProps: P;
|
|
|
|
} & Omit<NextAppProps<P>, "pageProps">;
|
|
|
|
|
|
|
|
export type DriftProps = ThemeProps
|
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }: AppProps<ThemeProps>) {
|
|
|
|
const [themeType, setThemeType] = useState<string>(typeof window !== 'undefined' ? localStorage.getItem('drift-theme') || 'light' : 'light')
|
2022-03-07 19:42:47 -05:00
|
|
|
|
2022-03-06 19:46:59 -05:00
|
|
|
const changeTheme = () => {
|
|
|
|
const newTheme = themeType === 'dark' ? 'light' : 'dark'
|
|
|
|
localStorage.setItem('drift-theme', newTheme)
|
2022-03-07 19:42:47 -05:00
|
|
|
setThemeType(last => (last === 'dark' ? 'light' : 'dark'))
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<GeistProvider themeType={themeType} >
|
|
|
|
<CssBaseline />
|
|
|
|
<Component {...pageProps} theme={themeType} changeTheme={changeTheme} />
|
2022-03-07 21:36:36 -05:00
|
|
|
</GeistProvider>
|
2022-03-06 19:46:59 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyApp
|