mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
* fix: dashboard layout scroll * feat: dashboard nav style animation * chore: code input font * style: format code * pref: alert component extraction * fix: global font var not found * fix: code path beak line * chore: remove framer-motion * fix: status color
160 lines
3.8 KiB
TypeScript
160 lines
3.8 KiB
TypeScript
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { useForm } from "react-hook-form";
|
|
import { z } from "zod";
|
|
import { AlertBlock } from "@/components/shared/alert-block";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useEffect } from "react";
|
|
import { toast } from "sonner";
|
|
import { Input } from "@/components/ui/input";
|
|
import { AlertTriangle, SquarePen } from "lucide-react";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import { DropdownMenuItem } from "@/components/ui/dropdown-menu";
|
|
import { api } from "@/utils/api";
|
|
|
|
const updateProjectSchema = z.object({
|
|
name: z.string().min(1, {
|
|
message: "Name is required",
|
|
}),
|
|
description: z.string().optional(),
|
|
});
|
|
|
|
type UpdateProject = z.infer<typeof updateProjectSchema>;
|
|
|
|
interface Props {
|
|
projectId: string;
|
|
}
|
|
|
|
export const UpdateProject = ({ projectId }: Props) => {
|
|
const utils = api.useUtils();
|
|
const { mutateAsync, error, isError } = api.project.update.useMutation();
|
|
const { data } = api.project.one.useQuery(
|
|
{
|
|
projectId,
|
|
},
|
|
{
|
|
enabled: !!projectId,
|
|
},
|
|
);
|
|
const form = useForm<UpdateProject>({
|
|
defaultValues: {
|
|
description: data?.description ?? "",
|
|
name: data?.name ?? "",
|
|
},
|
|
resolver: zodResolver(updateProjectSchema),
|
|
});
|
|
useEffect(() => {
|
|
if (data) {
|
|
form.reset({
|
|
description: data.description ?? "",
|
|
name: data.name,
|
|
});
|
|
}
|
|
}, [data, form, form.reset]);
|
|
|
|
const onSubmit = async (formData: UpdateProject) => {
|
|
await mutateAsync({
|
|
name: formData.name,
|
|
projectId: projectId,
|
|
description: formData.description || "",
|
|
})
|
|
.then(() => {
|
|
toast.success("Project updated succesfully");
|
|
utils.project.all.invalidate();
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to update the project");
|
|
})
|
|
.finally(() => {});
|
|
};
|
|
|
|
return (
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<DropdownMenuItem
|
|
className="w-full cursor-pointer space-x-3"
|
|
onSelect={(e) => e.preventDefault()}
|
|
>
|
|
<SquarePen className="size-4" />
|
|
<span>Update</span>
|
|
</DropdownMenuItem>
|
|
</DialogTrigger>
|
|
<DialogContent className="max-h-screen overflow-y-auto sm:max-w-lg">
|
|
<DialogHeader>
|
|
<DialogTitle>Modify project</DialogTitle>
|
|
<DialogDescription>
|
|
Update the details of the project
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
{isError && <AlertBlock type="error">{error?.message}</AlertBlock>}
|
|
|
|
<div className="grid gap-4">
|
|
<div className="grid items-center gap-4">
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
id="hook-form-update-project"
|
|
className="grid w-full gap-4 "
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Name</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="Tesla" {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="description"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Description</FormLabel>
|
|
<FormControl>
|
|
<Textarea
|
|
placeholder="Description about your project..."
|
|
className="resize-none"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<DialogFooter>
|
|
<Button form="hook-form-update-project" type="submit">
|
|
Update
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</Form>
|
|
</div>
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|