mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
86 lines
2.9 KiB
TypeScript
86 lines
2.9 KiB
TypeScript
import { useEffect, useState, ReactElement } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useTheme } from "next-themes";
|
|
// ui
|
|
import { Spinner, setPromiseToast } from "@plane/ui";
|
|
// components
|
|
import { CustomThemeSelector, ThemeSwitch, PageHead } from "components/core";
|
|
// constants
|
|
import { I_THEME_OPTION, THEME_OPTIONS } from "constants/themes";
|
|
// hooks
|
|
import { useUser } from "hooks/store";
|
|
// layouts
|
|
import { ProfilePreferenceSettingsLayout } from "layouts/settings-layout/profile/preferences";
|
|
// type
|
|
import { NextPageWithLayout } from "lib/types";
|
|
|
|
const ProfilePreferencesThemePage: NextPageWithLayout = observer(() => {
|
|
// states
|
|
const [currentTheme, setCurrentTheme] = useState<I_THEME_OPTION | null>(null);
|
|
// store hooks
|
|
const { currentUser, updateCurrentUserTheme } = useUser();
|
|
// computed
|
|
const userTheme = currentUser?.theme;
|
|
// hooks
|
|
const { setTheme } = useTheme();
|
|
|
|
useEffect(() => {
|
|
if (userTheme) {
|
|
const userThemeOption = THEME_OPTIONS.find((t) => t.value === userTheme?.theme);
|
|
if (userThemeOption) {
|
|
setCurrentTheme(userThemeOption);
|
|
}
|
|
}
|
|
}, [userTheme]);
|
|
|
|
const handleThemeChange = (themeOption: I_THEME_OPTION) => {
|
|
setTheme(themeOption.value);
|
|
const updateCurrentUserThemePromise = updateCurrentUserTheme(themeOption.value);
|
|
|
|
setPromiseToast(updateCurrentUserThemePromise, {
|
|
loading: "Updating theme...",
|
|
success: {
|
|
title: "Success!",
|
|
message: () => "Theme updated successfully!",
|
|
},
|
|
error: {
|
|
title: "Error!",
|
|
message: () => "Failed to Update the theme",
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<PageHead title="Profile - Theme Prefrence" />
|
|
{currentUser ? (
|
|
<div className="mx-auto mt-10 h-full w-full overflow-y-auto px-6 pb-8 md:mt-14 lg:px-20 vertical-scrollbar scrollbar-md">
|
|
<div className="flex items-center border-b border-custom-border-100 pb-3.5">
|
|
<h3 className="text-xl font-medium">Preferences</h3>
|
|
</div>
|
|
<div className="grid grid-cols-12 gap-4 py-6 sm:gap-16">
|
|
<div className="col-span-12 sm:col-span-6">
|
|
<h4 className="text-lg font-semibold text-custom-text-100">Theme</h4>
|
|
<p className="text-sm text-custom-text-200">Select or customize your interface color scheme.</p>
|
|
</div>
|
|
<div className="col-span-12 sm:col-span-6">
|
|
<ThemeSwitch value={currentTheme} onChange={handleThemeChange} />
|
|
</div>
|
|
</div>
|
|
{userTheme?.theme === "custom" && <CustomThemeSelector />}
|
|
</div>
|
|
) : (
|
|
<div className="grid h-full w-full place-items-center px-4 sm:px-0">
|
|
<Spinner />
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
});
|
|
|
|
ProfilePreferencesThemePage.getLayout = function getLayout(page: ReactElement) {
|
|
return <ProfilePreferenceSettingsLayout>{page}</ProfilePreferenceSettingsLayout>;
|
|
};
|
|
|
|
export default ProfilePreferencesThemePage;
|