main-site/components/themeselector.tsx

78 lines
2.5 KiB
TypeScript
Raw Normal View History

import { useUpdateTheme } from "../pages/_app";
import { useContext, useState } from 'react';
2022-12-15 20:23:54 +00:00
import { ThemeContext, DefaultTheme } from "styled-components";
import { darkTheme, lightTheme } from './themes';
2022-12-15 20:23:54 +00:00
import { ThemeDropDown, ThemeDropDownButton, ThemeDropDownOption, ThemeDropDownOptions } from "./styles/themedropdown";
import Themes from '../public/data/themes.json';
export const StyleSelector = () => {
const themes: DefaultTheme[] = Themes.themes;
const updateTheme = useUpdateTheme();
const currentTheme = useContext(ThemeContext);
2022-12-15 20:23:54 +00:00
const [selectedTheme, setSelectedTheme] = useState(themes[currentTheme.themeId]);
2022-12-15 22:41:48 +00:00
if(currentTheme !== selectedTheme) {
setSelectedTheme(currentTheme);
}
2022-12-15 20:23:54 +00:00
const updateThemeWithStorage = (newTheme: DefaultTheme) => {
if (newTheme.themeId === lightTheme.themeId) {
updateLightTheme(newTheme);
}
else {
setSelectedTheme(newTheme);
localStorage.setItem("theme", newTheme.themeId.toString());
updateTheme(newTheme);
}
}
const updateLightTheme = (newTheme: DefaultTheme) => {
if (confirm("Really switch to Light Mode?")) {
setSelectedTheme(newTheme);
localStorage.setItem("theme", newTheme.themeId.toString());
updateTheme(newTheme)
}
}
const [visible, setVisible] = useState(false);
const [buttonFocus, setButtonFocus] = useState(visible);
2022-12-15 20:23:54 +00:00
2022-12-16 21:58:46 +00:00
function handleBlur(event:any) {
if (!event.currentTarget.contains(event.relatedTarget)) {
setButtonFocus(false);
setVisible(false);
2022-12-16 21:58:46 +00:00
}
}
return (
2022-12-16 21:58:46 +00:00
<ThemeDropDown onBlur={(event) => handleBlur(event)}>
<ThemeDropDownButton focus={+buttonFocus} show={+visible} onFocus={() => setButtonFocus(true)} onClick={() => setVisible(visible => !visible)}>{selectedTheme.themeName}
</ThemeDropDownButton>
<ThemeDropDownOptions id="themesDropdown" show={+visible}>
2022-12-15 20:23:54 +00:00
{themes.map((theme) => (
<ThemeDropDownOption active={theme.themeId === selectedTheme.themeId ? 1 : 0} key={theme.themeId} onClick={() => updateThemeWithStorage(theme)}>
2022-12-15 20:23:54 +00:00
{theme.themeName}
</ThemeDropDownOption>
))}
</ThemeDropDownOptions>
</ThemeDropDown>
);
}
export const StyleSelectorPlaceholder = () => {
return (
<ThemeDropDown></ThemeDropDown>
)
}
2022-12-15 20:23:54 +00:00
export function getTheme(themeId: number, themes: DefaultTheme[]): DefaultTheme {
let retTheme: DefaultTheme = darkTheme;
themes.forEach((theme) => {
if (theme.themeId === themeId) { retTheme = theme};
})
return retTheme;
}
export default StyleSelector;