forked from github/plane
* chore: swap input component with plane/ui package * chore: swap textarea component with plane/ui package * chore: swap button component with plane/ui package * chore: button component revamp * fix: button type fix * chore: secondary button revamp * chore: button props updated * chore: swap loader component with plane/ui package * fix: build error fix * chore: button component refactor * chore: code refactor * chore: swap toggle switch component with plane/ui package * chore: swap spinner component with plane/ui package * chore: swap progress bar componenet with plan/ui package * chore: code refactor
153 lines
4.7 KiB
TypeScript
153 lines
4.7 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
|
|
import { useTheme } from "next-themes";
|
|
|
|
import { useForm } from "react-hook-form";
|
|
|
|
// ui
|
|
import { ColorPickerInput } from "components/core";
|
|
import { Button } from "@plane/ui";
|
|
// types
|
|
import { ICustomTheme } from "types";
|
|
// mobx react lite
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
|
|
type Props = {
|
|
preLoadedData?: Partial<ICustomTheme> | null;
|
|
};
|
|
|
|
const defaultValues: ICustomTheme = {
|
|
background: "#0d101b",
|
|
text: "#c5c5c5",
|
|
primary: "#3f76ff",
|
|
sidebarBackground: "#0d101b",
|
|
sidebarText: "#c5c5c5",
|
|
darkPalette: false,
|
|
palette: "",
|
|
theme: "custom",
|
|
};
|
|
|
|
export const CustomThemeSelector: React.FC<Props> = observer(({ preLoadedData }) => {
|
|
const store: any = useMobxStore();
|
|
const { setTheme } = useTheme();
|
|
|
|
const [darkPalette, setDarkPalette] = useState(false);
|
|
const {
|
|
register,
|
|
formState: { errors, isSubmitting },
|
|
handleSubmit,
|
|
control,
|
|
watch,
|
|
setValue,
|
|
reset,
|
|
} = useForm<ICustomTheme>({
|
|
defaultValues,
|
|
});
|
|
useEffect(() => {
|
|
reset({
|
|
...defaultValues,
|
|
...preLoadedData,
|
|
});
|
|
}, [preLoadedData, reset]);
|
|
|
|
const handleUpdateTheme = async (formData: any) => {
|
|
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}`,
|
|
theme: "custom",
|
|
};
|
|
|
|
setTheme("custom");
|
|
|
|
return store.user
|
|
.updateCurrentUserSettings({ theme: payload })
|
|
.then((response: any) => response)
|
|
.catch((error: any) => error);
|
|
};
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit(handleUpdateTheme)}>
|
|
<div className="space-y-5">
|
|
<h3 className="text-lg font-semibold text-custom-text-100">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-custom-text-200">Background color</h3>
|
|
<ColorPickerInput
|
|
name="background"
|
|
position="right"
|
|
control={control}
|
|
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-custom-text-200">Text color</h3>
|
|
<ColorPickerInput
|
|
name="text"
|
|
control={control}
|
|
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-custom-text-200">Primary(Theme) color</h3>
|
|
<ColorPickerInput
|
|
name="primary"
|
|
error={errors.primary}
|
|
control={control}
|
|
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-custom-text-200">Sidebar background color</h3>
|
|
<ColorPickerInput
|
|
name="sidebarBackground"
|
|
position="right"
|
|
control={control}
|
|
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-custom-text-200">Sidebar text color</h3>
|
|
<ColorPickerInput
|
|
name="sidebarText"
|
|
control={control}
|
|
error={errors.sidebarText}
|
|
watch={watch}
|
|
setValue={setValue}
|
|
register={register}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-5 flex justify-end gap-2">
|
|
<Button variant="primary" type="submit" loading={isSubmitting}>
|
|
{isSubmitting ? "Creating Theme..." : "Set Theme"}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
);
|
|
});
|