mirror of
https://github.com/umami-software/umami.git
synced 2026-02-20 04:25:39 +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>
29 lines
838 B
TypeScript
29 lines
838 B
TypeScript
import { Button, Dialog, DialogTrigger, Icon, Modal, Text, useToast } from '@umami/react-zen';
|
|
import { useMessages } from '@/components/hooks';
|
|
import { LockKeyhole } from '@/components/icons';
|
|
import { PasswordEditForm } from './PasswordEditForm';
|
|
|
|
export function PasswordChangeButton() {
|
|
const { t, labels, messages } = useMessages();
|
|
const { toast } = useToast();
|
|
|
|
const handleSave = () => {
|
|
toast(t(messages.saved));
|
|
};
|
|
|
|
return (
|
|
<DialogTrigger>
|
|
<Button>
|
|
<Icon>
|
|
<LockKeyhole />
|
|
</Icon>
|
|
<Text>{t(labels.changePassword)}</Text>
|
|
</Button>
|
|
<Modal>
|
|
<Dialog title={t(labels.changePassword)} style={{ width: 400 }}>
|
|
{({ close }) => <PasswordEditForm onSave={handleSave} onClose={close} />}
|
|
</Dialog>
|
|
</Modal>
|
|
</DialogTrigger>
|
|
);
|
|
}
|