mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
168 lines
4.9 KiB
TypeScript
168 lines
4.9 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
|
|
import { useTheme } from "next-themes";
|
|
|
|
import { useForm } from "react-hook-form";
|
|
|
|
// hooks
|
|
import useUser from "hooks/use-user";
|
|
// ui
|
|
import { PrimaryButton } from "components/ui";
|
|
import { ColorPickerInput } from "components/core";
|
|
// services
|
|
import userService from "services/user.service";
|
|
// helper
|
|
import { applyTheme } from "helpers/theme.helper";
|
|
// types
|
|
import { ICustomTheme } from "types";
|
|
|
|
type Props = {
|
|
preLoadedData?: Partial<ICustomTheme> | null;
|
|
};
|
|
|
|
const defaultValues: ICustomTheme = {
|
|
background: "#fff7f7",
|
|
text: "#ffc9c9",
|
|
primary: "#fe5050",
|
|
sidebarBackground: "#ffffff",
|
|
sidebarText: "#000000",
|
|
darkPalette: false,
|
|
palette: "",
|
|
};
|
|
|
|
export const CustomThemeSelector: React.FC<Props> = ({ preLoadedData }) => {
|
|
const [darkPalette, setDarkPalette] = useState(false);
|
|
|
|
const {
|
|
register,
|
|
formState: { errors, isSubmitting },
|
|
handleSubmit,
|
|
watch,
|
|
setValue,
|
|
reset,
|
|
} = useForm<ICustomTheme>({
|
|
defaultValues,
|
|
});
|
|
|
|
const { setTheme } = useTheme();
|
|
const { mutateUser } = useUser();
|
|
|
|
const handleFormSubmit = async (formData: ICustomTheme) => {
|
|
const payload: ICustomTheme = {
|
|
background: formData.background,
|
|
text: formData.text,
|
|
primary: formData.primary,
|
|
sidebarBackground: formData.sidebarBackground,
|
|
sidebarText: formData.sidebarText,
|
|
darkPalette: darkPalette,
|
|
palette: `${formData.background},${formData.text},${formData.primary},${formData.sidebarBackground},${formData.sidebarText}`,
|
|
};
|
|
|
|
await userService
|
|
.updateUser({
|
|
theme: payload,
|
|
})
|
|
.then((res) => {
|
|
mutateUser((prevData) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return { ...prevData, ...res };
|
|
}, false);
|
|
|
|
applyTheme(payload.palette, darkPalette);
|
|
setTheme("custom");
|
|
})
|
|
.catch((err) => console.log(err));
|
|
};
|
|
|
|
const handleUpdateTheme = async (formData: any) => {
|
|
await handleFormSubmit({ ...formData, darkPalette });
|
|
};
|
|
|
|
useEffect(() => {
|
|
reset({
|
|
...defaultValues,
|
|
...preLoadedData,
|
|
});
|
|
}, [preLoadedData, reset]);
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(handleUpdateTheme)}>
|
|
<div className="space-y-5">
|
|
<h3 className="text-lg font-semibold text-brand-base">Customize your theme</h3>
|
|
<div className="space-y-4">
|
|
<div className="grid grid-cols-1 gap-x-6 gap-y-4 sm:grid-cols-2 md:grid-cols-3">
|
|
<div className="flex flex-col items-start gap-2">
|
|
<h3 className="text-left text-sm font-medium text-brand-secondary">
|
|
Background color
|
|
</h3>
|
|
<ColorPickerInput
|
|
name="background"
|
|
error={errors.background}
|
|
watch={watch}
|
|
setValue={setValue}
|
|
register={register}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col items-start gap-2">
|
|
<h3 className="text-left text-sm font-medium text-brand-secondary">Text color</h3>
|
|
<ColorPickerInput
|
|
name="text"
|
|
error={errors.text}
|
|
watch={watch}
|
|
setValue={setValue}
|
|
register={register}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col items-start gap-2">
|
|
<h3 className="text-left text-sm font-medium text-brand-secondary">
|
|
Primary(Theme) color
|
|
</h3>
|
|
<ColorPickerInput
|
|
name="primary"
|
|
error={errors.primary}
|
|
watch={watch}
|
|
setValue={setValue}
|
|
register={register}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col items-start gap-2">
|
|
<h3 className="text-left text-sm font-medium text-brand-secondary">
|
|
Sidebar background color
|
|
</h3>
|
|
<ColorPickerInput
|
|
name="sidebarBackground"
|
|
error={errors.sidebarBackground}
|
|
watch={watch}
|
|
setValue={setValue}
|
|
register={register}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex flex-col items-start gap-2">
|
|
<h3 className="text-left text-sm font-medium text-brand-secondary">
|
|
Sidebar text color
|
|
</h3>
|
|
<ColorPickerInput
|
|
name="sidebarText"
|
|
error={errors.sidebarText}
|
|
watch={watch}
|
|
setValue={setValue}
|
|
register={register}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-5 flex justify-end gap-2">
|
|
<PrimaryButton type="submit" loading={isSubmitting}>
|
|
{isSubmitting ? "Creating Theme..." : "Set Theme"}
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
);
|
|
};
|