mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 17:15:37 +01:00
28 lines
834 B
TypeScript
28 lines
834 B
TypeScript
import { Button, DialogTrigger, Dialog, Icon, Text, Modal } from '@umami/react-zen';
|
|
import { useMessages } from '@/components/hooks';
|
|
import { GoalEditForm } from './GoalEditForm';
|
|
import { Plus } from '@/components/icons';
|
|
|
|
export function GoalAddButton({ websiteId }: { websiteId: string }) {
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
return (
|
|
<DialogTrigger>
|
|
<Button variant="primary">
|
|
<Icon>
|
|
<Plus />
|
|
</Icon>
|
|
<Text>{formatMessage(labels.goal)}</Text>
|
|
</Button>
|
|
<Modal>
|
|
<Dialog
|
|
variant="modal"
|
|
title={formatMessage(labels.goal)}
|
|
style={{ minHeight: 375, minWidth: 400 }}
|
|
>
|
|
{({ close }) => <GoalEditForm websiteId={websiteId} onClose={close} />}
|
|
</Dialog>
|
|
</Modal>
|
|
</DialogTrigger>
|
|
);
|
|
}
|