mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-09 07:55:25 +02:00
228 lines
5.9 KiB
TypeScript
228 lines
5.9 KiB
TypeScript
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { PlusIcon } from "lucide-react";
|
|
import { useEffect, useState } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import { z } from "zod";
|
|
import { AlertBlock } from "@/components/shared/alert-block";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { authClient } from "@/lib/auth-client";
|
|
import { api } from "@/utils/api";
|
|
|
|
const addInvitation = z.object({
|
|
email: z
|
|
.string()
|
|
.min(1, "Email is required")
|
|
.email({ message: "Invalid email" }),
|
|
role: z.enum(["member", "admin"]),
|
|
notificationId: z.string().optional(),
|
|
});
|
|
|
|
type AddInvitation = z.infer<typeof addInvitation>;
|
|
|
|
export const AddInvitation = () => {
|
|
const [open, setOpen] = useState(false);
|
|
const utils = api.useUtils();
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const { data: isCloud } = api.settings.isCloud.useQuery();
|
|
const { data: emailProviders } =
|
|
api.notification.getEmailProviders.useQuery();
|
|
const { mutateAsync: sendInvitation } = api.user.sendInvitation.useMutation();
|
|
const [error, setError] = useState<string | null>(null);
|
|
const { data: activeOrganization } = authClient.useActiveOrganization();
|
|
|
|
const form = useForm<AddInvitation>({
|
|
defaultValues: {
|
|
email: "",
|
|
role: "member",
|
|
notificationId: "",
|
|
},
|
|
resolver: zodResolver(addInvitation),
|
|
});
|
|
useEffect(() => {
|
|
form.reset();
|
|
}, [form, form.formState.isSubmitSuccessful, form.reset]);
|
|
|
|
const onSubmit = async (data: AddInvitation) => {
|
|
setIsLoading(true);
|
|
const result = await authClient.organization.inviteMember({
|
|
email: data.email.toLowerCase(),
|
|
role: data.role,
|
|
organizationId: activeOrganization?.id,
|
|
});
|
|
|
|
if (result.error) {
|
|
setError(result.error.message || "");
|
|
} else {
|
|
if (!isCloud && data.notificationId) {
|
|
await sendInvitation({
|
|
invitationId: result.data.id,
|
|
notificationId: data.notificationId || "",
|
|
})
|
|
.then(() => {
|
|
toast.success("Invitation created and email sent");
|
|
})
|
|
.catch((error: any) => {
|
|
toast.error(error.message);
|
|
});
|
|
} else {
|
|
toast.success("Invitation created");
|
|
}
|
|
setError(null);
|
|
setOpen(false);
|
|
}
|
|
|
|
utils.organization.allInvitations.invalidate();
|
|
setIsLoading(false);
|
|
};
|
|
return (
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogTrigger className="" asChild>
|
|
<Button>
|
|
<PlusIcon className="h-4 w-4" /> Add Invitation
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="sm:max-w-2xl">
|
|
<DialogHeader>
|
|
<DialogTitle>Add Invitation</DialogTitle>
|
|
<DialogDescription>Invite a new user</DialogDescription>
|
|
</DialogHeader>
|
|
{error && <AlertBlock type="error">{error}</AlertBlock>}
|
|
|
|
<Form {...form}>
|
|
<form
|
|
id="hook-form-add-invitation"
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="grid w-full gap-4 "
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="email"
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem>
|
|
<FormLabel>Email</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder={"email@dokploy.com"} {...field} />
|
|
</FormControl>
|
|
<FormDescription>
|
|
This will be the email of the new user
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="role"
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem>
|
|
<FormLabel>Role</FormLabel>
|
|
<Select
|
|
onValueChange={field.onChange}
|
|
defaultValue={field.value}
|
|
>
|
|
<FormControl>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select a role" />
|
|
</SelectTrigger>
|
|
</FormControl>
|
|
<SelectContent>
|
|
<SelectItem value="member">Member</SelectItem>
|
|
<SelectItem value="admin">Admin</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<FormDescription>
|
|
Select the role for the new user
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
|
|
{!isCloud && (
|
|
<FormField
|
|
control={form.control}
|
|
name="notificationId"
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem>
|
|
<FormLabel>Email Provider</FormLabel>
|
|
<Select
|
|
onValueChange={field.onChange}
|
|
defaultValue={field.value}
|
|
>
|
|
<FormControl>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select an email provider" />
|
|
</SelectTrigger>
|
|
</FormControl>
|
|
<SelectContent>
|
|
{emailProviders?.map((provider) => (
|
|
<SelectItem
|
|
key={provider.notificationId}
|
|
value={provider.notificationId}
|
|
>
|
|
{provider.name}
|
|
</SelectItem>
|
|
))}
|
|
<SelectItem value="none" disabled>
|
|
None
|
|
</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<FormDescription>
|
|
Select the email provider to send the invitation
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
)}
|
|
<DialogFooter className="flex w-full flex-row">
|
|
<Button
|
|
isLoading={isLoading}
|
|
form="hook-form-add-invitation"
|
|
type="submit"
|
|
>
|
|
Create
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|