mirror of
https://github.com/fosrl/pangolin.git
synced 2025-09-01 07:20:06 +02:00
179 lines
8.9 KiB
TypeScript
179 lines
8.9 KiB
TypeScript
"use client";
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { ChevronDownIcon } from "@radix-ui/react-icons";
|
|
import { useForm } from "react-hook-form";
|
|
import { z } from "zod";
|
|
|
|
import { cn } from "@/lib/utils";
|
|
import { toast } from "@/hooks/useToast";
|
|
import { Button, buttonVariants } from "@/components/ui/button";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
|
|
import { useSiteContext } from "@app/hooks/useSiteContext";
|
|
|
|
const appearanceFormSchema = z.object({
|
|
theme: z.enum(["light", "dark"], {
|
|
required_error: "Please select a theme.",
|
|
}),
|
|
font: z.enum(["inter", "manrope", "system"], {
|
|
invalid_type_error: "Select a font",
|
|
required_error: "Please select a font.",
|
|
}),
|
|
});
|
|
|
|
type AppearanceFormValues = z.infer<typeof appearanceFormSchema>;
|
|
|
|
// This can come from your database or API.
|
|
const defaultValues: Partial<AppearanceFormValues> = {
|
|
theme: "light",
|
|
};
|
|
|
|
export function AppearanceForm() {
|
|
const site = useSiteContext();
|
|
|
|
console.log(site);
|
|
|
|
const form = useForm<AppearanceFormValues>({
|
|
resolver: zodResolver(appearanceFormSchema),
|
|
defaultValues,
|
|
});
|
|
|
|
function onSubmit(data: AppearanceFormValues) {
|
|
toast({
|
|
title: "You submitted the following values:",
|
|
description: (
|
|
<pre className="mt-2 w-[340px] rounded-md bg-slate-950 p-4">
|
|
<code className="text-white">
|
|
{JSON.stringify(data, null, 2)}
|
|
</code>
|
|
</pre>
|
|
),
|
|
});
|
|
}
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="font"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Font</FormLabel>
|
|
<div className="relative w-max">
|
|
<FormControl>
|
|
<select
|
|
className={cn(
|
|
buttonVariants({
|
|
variant: "outline",
|
|
}),
|
|
"w-[200px] appearance-none font-normal"
|
|
)}
|
|
{...field}
|
|
>
|
|
<option value="inter">Inter</option>
|
|
<option value="manrope">Manrope</option>
|
|
<option value="system">System</option>
|
|
</select>
|
|
</FormControl>
|
|
<ChevronDownIcon className="absolute right-3 top-2.5 h-4 w-4 opacity-50" />
|
|
</div>
|
|
<FormDescription>
|
|
Set the font you want to use in the dashboard.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="theme"
|
|
render={({ field }) => (
|
|
<FormItem className="space-y-1">
|
|
<FormLabel>Theme</FormLabel>
|
|
<FormDescription>
|
|
Select the theme for the dashboard.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
<RadioGroup
|
|
onValueChange={field.onChange}
|
|
defaultValue={field.value}
|
|
className="grid max-w-md grid-cols-2 gap-8 pt-2"
|
|
>
|
|
<FormItem>
|
|
<FormLabel className="[&:has([data-state=checked])>div]:border-primary">
|
|
<FormControl>
|
|
<RadioGroupItem
|
|
value="light"
|
|
className="sr-only"
|
|
/>
|
|
</FormControl>
|
|
<div className="items-center rounded-md border-2 border-muted p-1 hover:border-accent">
|
|
<div className="space-y-2 rounded-sm bg-[#ecedef] p-2">
|
|
<div className="space-y-2 rounded-md bg-white p-2 shadow-sm">
|
|
<div className="h-2 w-[80px] rounded-lg bg-[#ecedef]" />
|
|
<div className="h-2 w-[100px] rounded-lg bg-[#ecedef]" />
|
|
</div>
|
|
<div className="flex items-center space-x-2 rounded-md bg-white p-2 shadow-sm">
|
|
<div className="h-4 w-4 rounded-full bg-[#ecedef]" />
|
|
<div className="h-2 w-[100px] rounded-lg bg-[#ecedef]" />
|
|
</div>
|
|
<div className="flex items-center space-x-2 rounded-md bg-white p-2 shadow-sm">
|
|
<div className="h-4 w-4 rounded-full bg-[#ecedef]" />
|
|
<div className="h-2 w-[100px] rounded-lg bg-[#ecedef]" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<span className="block w-full p-2 text-center font-normal">
|
|
Light
|
|
</span>
|
|
</FormLabel>
|
|
</FormItem>
|
|
<FormItem>
|
|
<FormLabel className="[&:has([data-state=checked])>div]:border-primary">
|
|
<FormControl>
|
|
<RadioGroupItem
|
|
value="dark"
|
|
className="sr-only"
|
|
/>
|
|
</FormControl>
|
|
<div className="items-center rounded-md border-2 border-muted bg-popover p-1 hover:bg-accent hover:text-accent-foreground">
|
|
<div className="space-y-2 rounded-sm bg-slate-950 p-2">
|
|
<div className="space-y-2 rounded-md bg-slate-800 p-2 shadow-sm">
|
|
<div className="h-2 w-[80px] rounded-lg bg-slate-400" />
|
|
<div className="h-2 w-[100px] rounded-lg bg-slate-400" />
|
|
</div>
|
|
<div className="flex items-center space-x-2 rounded-md bg-slate-800 p-2 shadow-sm">
|
|
<div className="h-4 w-4 rounded-full bg-slate-400" />
|
|
<div className="h-2 w-[100px] rounded-lg bg-slate-400" />
|
|
</div>
|
|
<div className="flex items-center space-x-2 rounded-md bg-slate-800 p-2 shadow-sm">
|
|
<div className="h-4 w-4 rounded-full bg-slate-400" />
|
|
<div className="h-2 w-[100px] rounded-lg bg-slate-400" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<span className="block w-full p-2 text-center font-normal">
|
|
Dark
|
|
</span>
|
|
</FormLabel>
|
|
</FormItem>
|
|
</RadioGroup>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<Button type="submit">Update preferences</Button>
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|