62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import { ConfirmationForm } from '@/components/common/ConfirmationForm';
|
|
import { useApi, useMessages, useModified } from '@/components/hooks';
|
|
import { messages } from '@/components/messages';
|
|
import { Button, Icon, Icons, Modal, DialogTrigger, Dialog, Text } from '@umami/react-zen';
|
|
|
|
export function TeamMemberRemoveButton({
|
|
teamId,
|
|
userId,
|
|
userName,
|
|
onSave,
|
|
}: {
|
|
teamId: string;
|
|
userId: string;
|
|
userName: string;
|
|
disabled?: boolean;
|
|
onSave?: () => void;
|
|
}) {
|
|
const { formatMessage, labels } = useMessages();
|
|
const { del, useMutation } = useApi();
|
|
const { mutate, isPending, error } = useMutation({
|
|
mutationFn: () => del(`/teams/${teamId}/users/${userId}`),
|
|
});
|
|
const { touch } = useModified();
|
|
|
|
const handleConfirm = (close: () => void) => {
|
|
mutate(null, {
|
|
onSuccess: () => {
|
|
touch('teams:members');
|
|
onSave?.();
|
|
close();
|
|
},
|
|
});
|
|
};
|
|
|
|
return (
|
|
<DialogTrigger>
|
|
<Button>
|
|
<Icon>
|
|
<Icons.Close />
|
|
</Icon>
|
|
<Text>{formatMessage(labels.remove)}</Text>
|
|
</Button>
|
|
<Modal>
|
|
<Dialog title={formatMessage(labels.removeMember)}>
|
|
{({ close }) => (
|
|
<ConfirmationForm
|
|
message={formatMessage(messages.confirmRemove, {
|
|
target: <b key={messages.confirmRemove.id}>{userName}</b>,
|
|
})}
|
|
isLoading={isPending}
|
|
error={error}
|
|
onConfirm={handleConfirm.bind(null, close)}
|
|
onClose={close}
|
|
buttonLabel={formatMessage(labels.remove)}
|
|
/>
|
|
)}
|
|
</Dialog>
|
|
</Modal>
|
|
</DialogTrigger>
|
|
);
|
|
}
|