mirror of
https://github.com/umami-software/umami.git
synced 2026-02-16 02:25:35 +01:00
- Rewrite messages.ts to plain string key maps (remove MessageDescriptor) - Rewrite useMessages hook to expose t from useTranslations() directly - Rename formatMessage → t across 193 consumer files - Replace custom FormattedMessage component with next-intl t.rich() - Update 52 language files to use rich text tags (<b>, <a>) - Remove all direct imports from @/components/messages in favor of useMessages() Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
1.1 KiB
TypeScript
41 lines
1.1 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 { t, 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>{t(labels.leave)}</Text>
|
|
</Button>
|
|
<Modal>
|
|
<Dialog title={t(labels.leaveTeam)} style={{ width: 400 }}>
|
|
{({ close }) => (
|
|
<TeamLeaveForm
|
|
teamId={teamId}
|
|
userId={user.id}
|
|
teamName={teamName}
|
|
onSave={handleLeave}
|
|
onClose={close}
|
|
/>
|
|
)}
|
|
</Dialog>
|
|
</Modal>
|
|
</DialogTrigger>
|
|
);
|
|
}
|