2022-02-23 07:47:59 +01:00
|
|
|
import { useEffect } from 'react';
|
|
|
|
import useStore, { setTheme } from 'store/app';
|
2022-08-29 05:20:54 +02:00
|
|
|
import { getItem, setItem } from 'next-basics';
|
2020-09-20 10:33:39 +02:00
|
|
|
import { THEME_CONFIG } from 'lib/constants';
|
2022-02-23 07:47:59 +01:00
|
|
|
|
|
|
|
const selector = state => state.theme;
|
2020-09-20 10:33:39 +02:00
|
|
|
|
2020-10-01 01:27:27 +02:00
|
|
|
export default function useTheme() {
|
2021-04-28 11:12:17 +02:00
|
|
|
const defaultTheme =
|
2021-04-28 11:18:54 +02:00
|
|
|
typeof window !== 'undefined'
|
2021-09-21 13:28:36 +02:00
|
|
|
? window?.matchMedia('(prefers-color-scheme: dark)')?.matches
|
2021-04-28 11:12:17 +02:00
|
|
|
? 'dark'
|
|
|
|
: 'light'
|
|
|
|
: 'light';
|
2022-02-23 07:47:59 +01:00
|
|
|
const theme = useStore(selector) || getItem(THEME_CONFIG) || defaultTheme;
|
2020-09-20 10:33:39 +02:00
|
|
|
|
|
|
|
function saveTheme(value) {
|
|
|
|
setItem(THEME_CONFIG, value);
|
2022-02-23 07:47:59 +01:00
|
|
|
setTheme(value);
|
2020-09-20 10:33:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
document.body.setAttribute('data-theme', theme);
|
|
|
|
}, [theme]);
|
|
|
|
|
2022-08-21 13:30:40 +02:00
|
|
|
useEffect(() => {
|
2023-02-15 11:27:18 +01:00
|
|
|
const url = new URL(window?.location?.href);
|
2022-08-21 13:30:40 +02:00
|
|
|
const theme = url.searchParams.get('theme');
|
|
|
|
|
|
|
|
if (['light', 'dark'].includes(theme)) {
|
|
|
|
saveTheme(theme);
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
2020-09-20 10:33:39 +02:00
|
|
|
return [theme, saveTheme];
|
|
|
|
}
|