forked from github/plane
9b4aebc385
* chore: show message if dragging unjoined project (#1763) * fix: invalid project selection in create issue modal (#1766) * style: sidebar project list improvement (#1767) * fix: comment reaction mutation (#1768) * fix: user profiles n plus 1 (#1765) * fix: bulk issue import (#1773) * style: profile activity (#1771) * style: profile activity comment log styling * chore: profile feed activity refactor * style: sidebar project list * chore: add non existing states for project entities (#1770) * fix: notification read status being toggled when click on link (#1769) * fix: custom theme persisting after signing out (#1780) * fix: custom theme persistence * chore: remove console logs * fix: build error * fix: change theme from command k --------- Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Co-authored-by: Dakshesh Jain <65905942+dakshesh14@users.noreply.github.com> Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com>
162 lines
4.7 KiB
TypeScript
162 lines
4.7 KiB
TypeScript
import { useState, useEffect } from "react";
|
|
|
|
// next-themes
|
|
import { useTheme } from "next-themes";
|
|
// services
|
|
import userService from "services/user.service";
|
|
// hooks
|
|
import useUser from "hooks/use-user";
|
|
// constants
|
|
import { THEMES_OBJ } from "constants/themes";
|
|
// ui
|
|
import { CustomSelect } from "components/ui";
|
|
// types
|
|
import { ICustomTheme } from "types";
|
|
import { unsetCustomCssVariables } from "helpers/theme.helper";
|
|
|
|
type Props = {
|
|
setPreLoadedData: React.Dispatch<React.SetStateAction<ICustomTheme | null>>;
|
|
customThemeSelectorOptions: boolean;
|
|
setCustomThemeSelectorOptions: React.Dispatch<React.SetStateAction<boolean>>;
|
|
};
|
|
|
|
export const ThemeSwitch: React.FC<Props> = ({
|
|
setPreLoadedData,
|
|
customThemeSelectorOptions,
|
|
setCustomThemeSelectorOptions,
|
|
}) => {
|
|
const [mounted, setMounted] = useState(false);
|
|
|
|
const { theme, setTheme } = useTheme();
|
|
|
|
const { user, mutateUser } = useUser();
|
|
|
|
const updateUserTheme = (newTheme: string) => {
|
|
if (!user) return;
|
|
|
|
setTheme(newTheme);
|
|
|
|
mutateUser((prevData) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
theme: {
|
|
...prevData.theme,
|
|
theme: newTheme,
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
userService.updateUser({
|
|
theme: {
|
|
...user.theme,
|
|
theme: newTheme,
|
|
},
|
|
});
|
|
};
|
|
|
|
// useEffect only runs on the client, so now we can safely show the UI
|
|
useEffect(() => {
|
|
setMounted(true);
|
|
}, []);
|
|
|
|
if (!mounted) return null;
|
|
|
|
const currentThemeObj = THEMES_OBJ.find((t) => t.value === theme);
|
|
|
|
return (
|
|
<CustomSelect
|
|
value={theme}
|
|
label={
|
|
currentThemeObj ? (
|
|
<div className="flex items-center gap-2">
|
|
<div
|
|
className="border-1 relative flex h-4 w-4 rotate-45 transform items-center justify-center rounded-full border"
|
|
style={{
|
|
borderColor: currentThemeObj.icon.border,
|
|
}}
|
|
>
|
|
<div
|
|
className="h-full w-1/2 rounded-l-full"
|
|
style={{
|
|
background: currentThemeObj.icon.color1,
|
|
}}
|
|
/>
|
|
<div
|
|
className="h-full w-1/2 rounded-r-full border-l"
|
|
style={{
|
|
borderLeftColor: currentThemeObj.icon.border,
|
|
background: currentThemeObj.icon.color2,
|
|
}}
|
|
/>
|
|
</div>
|
|
{currentThemeObj.label}
|
|
</div>
|
|
) : (
|
|
"Select your theme"
|
|
)
|
|
}
|
|
onChange={({ value, type }: { value: string; type: string }) => {
|
|
if (value === "custom") {
|
|
if (user?.theme.palette) {
|
|
setPreLoadedData({
|
|
background: user.theme.background !== "" ? user.theme.background : "#0d101b",
|
|
text: user.theme.text !== "" ? user.theme.text : "#c5c5c5",
|
|
primary: user.theme.primary !== "" ? user.theme.primary : "#3f76ff",
|
|
sidebarBackground:
|
|
user.theme.sidebarBackground !== "" ? user.theme.sidebarBackground : "#0d101b",
|
|
sidebarText: user.theme.sidebarText !== "" ? user.theme.sidebarText : "#c5c5c5",
|
|
darkPalette: false,
|
|
palette:
|
|
user.theme.palette !== ",,,,"
|
|
? user.theme.palette
|
|
: "#0d101b,#c5c5c5,#3f76ff,#0d101b,#c5c5c5",
|
|
theme: "custom",
|
|
});
|
|
}
|
|
|
|
if (!customThemeSelectorOptions) setCustomThemeSelectorOptions(true);
|
|
} else {
|
|
if (customThemeSelectorOptions) setCustomThemeSelectorOptions(false);
|
|
unsetCustomCssVariables();
|
|
}
|
|
|
|
updateUserTheme(value);
|
|
document.documentElement.style.setProperty("--color-scheme", type);
|
|
}}
|
|
input
|
|
width="w-full"
|
|
position="right"
|
|
>
|
|
{THEMES_OBJ.map(({ value, label, type, icon }) => (
|
|
<CustomSelect.Option key={value} value={{ value, type }}>
|
|
<div className="flex items-center gap-2">
|
|
<div
|
|
className="border-1 relative flex h-4 w-4 rotate-45 transform items-center justify-center rounded-full border"
|
|
style={{
|
|
borderColor: icon.border,
|
|
}}
|
|
>
|
|
<div
|
|
className="h-full w-1/2 rounded-l-full"
|
|
style={{
|
|
background: icon.color1,
|
|
}}
|
|
/>
|
|
<div
|
|
className="h-full w-1/2 rounded-r-full border-l"
|
|
style={{
|
|
borderLeftColor: icon.border,
|
|
background: icon.color2,
|
|
}}
|
|
/>
|
|
</div>
|
|
{label}
|
|
</div>
|
|
</CustomSelect.Option>
|
|
))}
|
|
</CustomSelect>
|
|
);
|
|
};
|