|
| 1 | +"use client" |
| 2 | + |
| 3 | +import { Button } from '@/components/ui/button' |
| 4 | +import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog' |
| 5 | +import { FormField, FormItem, FormLabel, FormControl, FormMessage, FormDescription, Form } from '@/components/ui/form' |
| 6 | +import { Input } from '@/components/ui/input' |
| 7 | +import { Textarea } from '@/components/ui/textarea' |
| 8 | +import { PropsWithChildren, useRef, useState } from 'react' |
| 9 | +import { useForm } from 'react-hook-form' |
| 10 | +import { zodResolver } from '@hookform/resolvers/zod' |
| 11 | +import { CreateNewWorkshopServiceOrder, createNewWorkshopServiceOrderSchema } from '../schema' |
| 12 | +import { createNewWorkshopServiceOrder } from '../action' |
| 13 | +import { toast } from '@/hooks/use-toast' |
| 14 | +import { Checkbox } from '@/components/ui/checkbox' |
| 15 | +import { useRouter } from 'next/navigation' |
| 16 | +import { CheckIcon } from '@radix-ui/react-icons' |
| 17 | + |
| 18 | +export default function CreateServiceOrderWorkshopDialog({ children }: PropsWithChildren) { |
| 19 | + const ref = useRef<HTMLDivElement>(null) |
| 20 | + const [open, setOpen] = useState(false) |
| 21 | + const form = useForm<CreateNewWorkshopServiceOrder>({ |
| 22 | + resolver: zodResolver(createNewWorkshopServiceOrderSchema), |
| 23 | + defaultValues: { |
| 24 | + automaker: '', |
| 25 | + project: '', |
| 26 | + isIntern: true, |
| 27 | + model: '', |
| 28 | + chassis: '', |
| 29 | + fleet: '', |
| 30 | + vehicleLocation: '', |
| 31 | + keyLocation: '', |
| 32 | + serviceInformations: null, |
| 33 | + deliveryDate: '', |
| 34 | + requestedBy: '' |
| 35 | + }, |
| 36 | + }) |
| 37 | + const router = useRouter() |
| 38 | + async function onSubmit(values: CreateNewWorkshopServiceOrder) { |
| 39 | + await createNewWorkshopServiceOrder(values) |
| 40 | + setOpen(false) |
| 41 | + router.refresh() |
| 42 | + toast({ |
| 43 | + description: ( |
| 44 | + <div className="w-full flex items-center"> |
| 45 | + <CheckIcon className="mr-2 w-4 h-4" /> |
| 46 | + <span className="first-letter:capitalize">Ordem de serviço da oficina criada com sucesso.</span> |
| 47 | + </div> |
| 48 | + ) |
| 49 | + }) |
| 50 | + } |
| 51 | + |
| 52 | + return ( |
| 53 | + <Dialog open={open} onOpenChange={setOpen}> |
| 54 | + <DialogTrigger asChild> |
| 55 | + <div ref={ref}>{children}</div> |
| 56 | + </DialogTrigger> |
| 57 | + <DialogContent className="sm:max-w-[600px] md:max-w-[700px] lg:max-w-[800px] xl:max-w-[900px]"> |
| 58 | + <DialogHeader> |
| 59 | + <DialogTitle>Criar ordem de serviço da oficina</DialogTitle> |
| 60 | + <DialogDescription> |
| 61 | + Insira os detalhes da ordem de serviço abaixo. |
| 62 | + </DialogDescription> |
| 63 | + </DialogHeader> |
| 64 | + <Form {...form}> |
| 65 | + <form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6"> |
| 66 | + <div className="grid grid-cols-1 md:grid-cols-2 gap-4"> |
| 67 | + <FormField |
| 68 | + control={form.control} |
| 69 | + name="automaker" |
| 70 | + render={({ field }) => ( |
| 71 | + <FormItem> |
| 72 | + <FormLabel>Montadora</FormLabel> |
| 73 | + <FormControl> |
| 74 | + <Input placeholder="Automaker" {...field} /> |
| 75 | + </FormControl> |
| 76 | + <FormMessage /> |
| 77 | + </FormItem> |
| 78 | + )} |
| 79 | + /> |
| 80 | + <FormField |
| 81 | + control={form.control} |
| 82 | + name="project" |
| 83 | + render={({ field }) => ( |
| 84 | + <FormItem> |
| 85 | + <FormLabel>Projeto</FormLabel> |
| 86 | + <FormControl> |
| 87 | + <Input placeholder="Project" {...field} /> |
| 88 | + </FormControl> |
| 89 | + <FormMessage /> |
| 90 | + </FormItem> |
| 91 | + )} |
| 92 | + /> |
| 93 | + <FormField |
| 94 | + control={form.control} |
| 95 | + name="model" |
| 96 | + render={({ field }) => ( |
| 97 | + <FormItem> |
| 98 | + <FormLabel>Modelo</FormLabel> |
| 99 | + <FormControl> |
| 100 | + <Input placeholder="Model" {...field} /> |
| 101 | + </FormControl> |
| 102 | + <FormMessage /> |
| 103 | + </FormItem> |
| 104 | + )} |
| 105 | + /> |
| 106 | + <FormField |
| 107 | + control={form.control} |
| 108 | + name="chassis" |
| 109 | + render={({ field }) => ( |
| 110 | + <FormItem> |
| 111 | + <FormLabel>Chassi</FormLabel> |
| 112 | + <FormControl> |
| 113 | + <Input placeholder="Chassis" {...field} /> |
| 114 | + </FormControl> |
| 115 | + <FormMessage /> |
| 116 | + </FormItem> |
| 117 | + )} |
| 118 | + /> |
| 119 | + <FormField |
| 120 | + control={form.control} |
| 121 | + name="fleet" |
| 122 | + render={({ field }) => ( |
| 123 | + <FormItem> |
| 124 | + <FormLabel>Frota</FormLabel> |
| 125 | + <FormControl> |
| 126 | + <Input placeholder="Fleet" {...field} /> |
| 127 | + </FormControl> |
| 128 | + <FormMessage /> |
| 129 | + </FormItem> |
| 130 | + )} |
| 131 | + /> |
| 132 | + <FormField |
| 133 | + control={form.control} |
| 134 | + name="vehicleLocation" |
| 135 | + render={({ field }) => ( |
| 136 | + <FormItem> |
| 137 | + <FormLabel>Localização do veículo</FormLabel> |
| 138 | + <FormControl> |
| 139 | + <Input placeholder="Vehicle Location" {...field} /> |
| 140 | + </FormControl> |
| 141 | + <FormMessage /> |
| 142 | + </FormItem> |
| 143 | + )} |
| 144 | + /> |
| 145 | + <FormField |
| 146 | + control={form.control} |
| 147 | + name="keyLocation" |
| 148 | + render={({ field }) => ( |
| 149 | + <FormItem> |
| 150 | + <FormLabel>Localização da chave</FormLabel> |
| 151 | + <FormControl> |
| 152 | + <Input placeholder="Key Location" {...field} /> |
| 153 | + </FormControl> |
| 154 | + <FormMessage /> |
| 155 | + </FormItem> |
| 156 | + )} |
| 157 | + /> |
| 158 | + <FormField |
| 159 | + control={form.control} |
| 160 | + name="deliveryDate" |
| 161 | + render={({ field }) => ( |
| 162 | + <FormItem className="flex flex-col"> |
| 163 | + <FormLabel>Data de entrega</FormLabel> |
| 164 | + <FormControl> |
| 165 | + <Input type="date" {...field} /> |
| 166 | + </FormControl> |
| 167 | + <FormMessage /> |
| 168 | + </FormItem> |
| 169 | + )} |
| 170 | + /> |
| 171 | + </div> |
| 172 | + <FormField |
| 173 | + control={form.control} |
| 174 | + name="isIntern" |
| 175 | + render={({ field }) => ( |
| 176 | + <FormItem className="flex flex-row items-start space-x-3 space-y-0 rounded-md border p-4"> |
| 177 | + <FormControl> |
| 178 | + <Checkbox |
| 179 | + checked={field.value} |
| 180 | + onCheckedChange={field.onChange} |
| 181 | + /> |
| 182 | + </FormControl> |
| 183 | + <div className="space-y-1 leading-none"> |
| 184 | + <FormLabel> |
| 185 | + Interno |
| 186 | + </FormLabel> |
| 187 | + <FormDescription> |
| 188 | + Marque se o projeto for interno |
| 189 | + </FormDescription> |
| 190 | + </div> |
| 191 | + </FormItem> |
| 192 | + )} |
| 193 | + /> |
| 194 | + <FormField |
| 195 | + control={form.control} |
| 196 | + name="serviceInformations" |
| 197 | + render={({ field }) => ( |
| 198 | + <FormItem> |
| 199 | + <FormLabel>Informações do serviço</FormLabel> |
| 200 | + <FormControl> |
| 201 | + <Textarea |
| 202 | + placeholder="Service Informations" |
| 203 | + {...field} |
| 204 | + value={field.value || ''} |
| 205 | + onChange={(e) => field.onChange(e.target.value || null)} |
| 206 | + /> |
| 207 | + </FormControl> |
| 208 | + <FormMessage /> |
| 209 | + </FormItem> |
| 210 | + )} |
| 211 | + /> |
| 212 | + <Button type="submit">Criar</Button> |
| 213 | + </form> |
| 214 | + </Form> |
| 215 | + </DialogContent> |
| 216 | + </Dialog> |
| 217 | + ) |
| 218 | +} |
0 commit comments