42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import { Button, Dialog, DialogTrigger, Icon, Modal, Text } from '@umami/react-zen';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useLoginQuery, useMessages, useModified } from '@/components/hooks';
|
|
import { LogOut } from '@/components/icons';
|
|
import { TeamLeaveForm } from './TeamLeaveForm';
|
|
|
|
export function TeamLeaveButton({ teamId, teamName }: { teamId: string; teamName: string }) {
|
|
const { formatMessage, labels } = useMessages();
|
|
const router = useRouter();
|
|
const { user } = useLoginQuery();
|
|
const { touch } = useModified();
|
|
|
|
const handleLeave = async () => {
|
|
touch('teams');
|
|
router.push('/settings/teams');
|
|
};
|
|
|
|
return (
|
|
<DialogTrigger>
|
|
<Button>
|
|
<Icon>
|
|
<LogOut />
|
|
</Icon>
|
|
<Text>{formatMessage(labels.leave)}</Text>
|
|
</Button>
|
|
<Modal>
|
|
<Dialog title={formatMessage(labels.leaveTeam)} style={{ width: 400 }}>
|
|
{({ close }) => (
|
|
<TeamLeaveForm
|
|
teamId={teamId}
|
|
userId={user.id}
|
|
teamName={teamName}
|
|
onSave={handleLeave}
|
|
onClose={close}
|
|
/>
|
|
)}
|
|
</Dialog>
|
|
</Modal>
|
|
</DialogTrigger>
|
|
);
|
|
}
|