mirror of
https://github.com/LukeHagar/dokploy.git
synced 2025-12-09 20:37:45 +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
147 lines
3.3 KiB
TypeScript
147 lines
3.3 KiB
TypeScript
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import { api } from "@/utils/api";
|
|
import { AlertBlock } from "@/components/shared/alert-block";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useEffect } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { PlusIcon } from "lucide-react";
|
|
import { z } from "zod";
|
|
|
|
const AddSecuritychema = z.object({
|
|
username: z.string().min(1, "Username is required"),
|
|
password: z.string().min(1, "Password is required"),
|
|
});
|
|
|
|
type AddSecurity = z.infer<typeof AddSecuritychema>;
|
|
|
|
interface Props {
|
|
applicationId: string;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export const AddSecurity = ({
|
|
applicationId,
|
|
children = <PlusIcon className="h-4 w-4" />,
|
|
}: Props) => {
|
|
const utils = api.useUtils();
|
|
|
|
const { mutateAsync, isLoading, error, isError } =
|
|
api.security.create.useMutation();
|
|
|
|
const form = useForm<AddSecurity>({
|
|
defaultValues: {
|
|
username: "",
|
|
password: "",
|
|
},
|
|
resolver: zodResolver(AddSecuritychema),
|
|
});
|
|
|
|
useEffect(() => {
|
|
form.reset();
|
|
}, [form, form.reset, form.formState.isSubmitSuccessful]);
|
|
|
|
const onSubmit = async (data: AddSecurity) => {
|
|
await mutateAsync({
|
|
applicationId,
|
|
...data,
|
|
})
|
|
.then(async () => {
|
|
toast.success("Security Created");
|
|
await utils.application.one.invalidate({
|
|
applicationId,
|
|
});
|
|
await utils.application.readTraefikConfig.invalidate({
|
|
applicationId,
|
|
});
|
|
})
|
|
.catch(() => {
|
|
toast.error("Error to create the security");
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<Button>{children}</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="max-h-screen overflow-y-auto sm:max-w-lg">
|
|
<DialogHeader>
|
|
<DialogTitle>Security</DialogTitle>
|
|
<DialogDescription>
|
|
Add security to your application
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
{isError && <AlertBlock type="error">{error?.message}</AlertBlock>}
|
|
|
|
<Form {...form}>
|
|
<form
|
|
id="hook-form-add-security"
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="grid w-full gap-4"
|
|
>
|
|
<div className="flex flex-col gap-4">
|
|
<FormField
|
|
control={form.control}
|
|
name="username"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Username</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="test1" {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="test" {...field} />
|
|
</FormControl>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
</form>
|
|
|
|
<DialogFooter>
|
|
<Button
|
|
isLoading={isLoading}
|
|
form="hook-form-add-security"
|
|
type="submit"
|
|
>
|
|
Create
|
|
</Button>
|
|
</DialogFooter>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|