Some checks failed
Branch Build CE / Build Setup (push) Has been cancelled
Branch Build CE / Build-Push Admin Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Web Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Space Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Live Collaboration Docker Image (push) Has been cancelled
Branch Build CE / Build-Push API Server Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Proxy Docker Image (push) Has been cancelled
Branch Build CE / Build-Push AIO Docker Image (push) Has been cancelled
Branch Build CE / Upload Build Assets (push) Has been cancelled
Branch Build CE / Build Release (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Sync Repositories / sync_changes (push) Has been cancelled
Synced from upstream: 8853637e981ed7d8a6cff32bd98e7afe20f54362
86 lines
2.2 KiB
TypeScript
86 lines
2.2 KiB
TypeScript
import { useEffect } from "react";
|
|
import type { Control, FieldArrayWithId, FormState, UseFormWatch } from "react-hook-form";
|
|
import { useFieldArray, useForm } 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,
|
|
};
|
|
};
|