mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-16 09:41:31 +10:00
122 lines
3.3 KiB
TypeScript
122 lines
3.3 KiB
TypeScript
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { t } from "@lingui/macro";
|
|
import { awardSchema, defaultAward } from "@reactive-resume/schema";
|
|
import {
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
Input,
|
|
RichInput,
|
|
} from "@reactive-resume/ui";
|
|
import { useForm } from "react-hook-form";
|
|
import { z } from "zod";
|
|
|
|
import { AiActions } from "@/client/components/ai-actions";
|
|
|
|
import { SectionDialog } from "../sections/shared/section-dialog";
|
|
import { URLInput } from "../sections/shared/url-input";
|
|
|
|
const formSchema = awardSchema;
|
|
|
|
type FormValues = z.infer<typeof formSchema>;
|
|
|
|
export const AwardsDialog = () => {
|
|
const form = useForm<FormValues>({
|
|
defaultValues: defaultAward,
|
|
resolver: zodResolver(formSchema),
|
|
});
|
|
|
|
return (
|
|
<SectionDialog<FormValues> id="awards" form={form} defaultValues={defaultAward}>
|
|
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
|
<FormField
|
|
name="title"
|
|
control={form.control}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t({ message: "Title", context: "Name of the Award" })}</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
name="awarder"
|
|
control={form.control}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t`Awarder`}</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
name="date"
|
|
control={form.control}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t`Date`}</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
{...field}
|
|
placeholder={t({
|
|
message: "March 2023",
|
|
comment: "The month and year should be uniform across all languages.",
|
|
})}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
name="url"
|
|
control={form.control}
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t`Website`}</FormLabel>
|
|
<FormControl>
|
|
<URLInput {...field} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
name="summary"
|
|
control={form.control}
|
|
render={({ field }) => (
|
|
<FormItem className="sm:col-span-2">
|
|
<FormLabel>{t`Summary`}</FormLabel>
|
|
<FormControl>
|
|
<RichInput
|
|
{...field}
|
|
content={field.value}
|
|
footer={(editor) => (
|
|
<AiActions value={editor.getText()} onChange={editor.commands.setContent} />
|
|
)}
|
|
onChange={(value) => {
|
|
field.onChange(value);
|
|
}}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
</SectionDialog>
|
|
);
|
|
};
|