mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 14:49:37 +01:00
85 lines
2.1 KiB
TypeScript
85 lines
2.1 KiB
TypeScript
|
|
import { useEffect } from "react";
|
||
|
|
import { Control, FieldArrayWithId, FormState, useFieldArray, useForm, UseFormWatch } from "react-hook-form";
|
||
|
|
// plane imports
|
||
|
|
import { EUserPermissions } from "@plane/constants";
|
||
|
|
|
||
|
|
type EmailRole = {
|
||
|
|
email: string;
|
||
|
|
role: EUserPermissions;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type InvitationFormValues = {
|
||
|
|
emails: EmailRole[];
|
||
|
|
};
|
||
|
|
|
||
|
|
const SEND_WORKSPACE_INVITATION_MODAL_DEFAULT_VALUES: InvitationFormValues = {
|
||
|
|
emails: [
|
||
|
|
{
|
||
|
|
email: "",
|
||
|
|
role: EUserPermissions.MEMBER,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
|
||
|
|
type TUseWorkspaceInvitationProps = {
|
||
|
|
onSubmit: (data: InvitationFormValues) => Promise<void> | undefined;
|
||
|
|
onClose: () => void;
|
||
|
|
};
|
||
|
|
|
||
|
|
type TUseWorkspaceInvitationReturn = {
|
||
|
|
control: Control<InvitationFormValues>;
|
||
|
|
fields: FieldArrayWithId<InvitationFormValues, "emails", "id">[];
|
||
|
|
formState: FormState<InvitationFormValues>;
|
||
|
|
watch: UseFormWatch<InvitationFormValues>;
|
||
|
|
remove: (index: number) => void;
|
||
|
|
onFormSubmit: () => void;
|
||
|
|
handleClose: () => void;
|
||
|
|
appendField: () => void;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const useWorkspaceInvitationActions = (props: TUseWorkspaceInvitationProps): TUseWorkspaceInvitationReturn => {
|
||
|
|
const { onSubmit, onClose } = props;
|
||
|
|
// form info
|
||
|
|
const { control, reset, watch, handleSubmit, formState } = useForm<InvitationFormValues>({
|
||
|
|
defaultValues: SEND_WORKSPACE_INVITATION_MODAL_DEFAULT_VALUES,
|
||
|
|
});
|
||
|
|
|
||
|
|
const { fields, append, remove } = useFieldArray({
|
||
|
|
control,
|
||
|
|
name: "emails",
|
||
|
|
});
|
||
|
|
|
||
|
|
const handleClose = () => {
|
||
|
|
onClose();
|
||
|
|
const timeout = setTimeout(() => {
|
||
|
|
reset(SEND_WORKSPACE_INVITATION_MODAL_DEFAULT_VALUES);
|
||
|
|
clearTimeout(timeout);
|
||
|
|
}, 350);
|
||
|
|
};
|
||
|
|
|
||
|
|
const appendField = () => {
|
||
|
|
append({ email: "", role: EUserPermissions.MEMBER });
|
||
|
|
};
|
||
|
|
|
||
|
|
const onSubmitForm = async (data: InvitationFormValues) => {
|
||
|
|
await onSubmit(data)?.then(() => {
|
||
|
|
reset(SEND_WORKSPACE_INVITATION_MODAL_DEFAULT_VALUES);
|
||
|
|
});
|
||
|
|
};
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
if (fields.length === 0) append([{ email: "", role: EUserPermissions.MEMBER }]);
|
||
|
|
}, [fields, append]);
|
||
|
|
|
||
|
|
return {
|
||
|
|
control,
|
||
|
|
fields,
|
||
|
|
formState,
|
||
|
|
watch,
|
||
|
|
remove,
|
||
|
|
onFormSubmit: handleSubmit(onSubmitForm),
|
||
|
|
handleClose,
|
||
|
|
appendField,
|
||
|
|
};
|
||
|
|
};
|