mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
'use client';
|
|
import { useState } from 'react';
|
|
import { Button, Column, Box, Text, Icon, DialogTrigger, Modal, Dialog } from '@umami/react-zen';
|
|
import { useDateRange, useMessages } from '@/components/hooks';
|
|
import { ListCheck } from '@/components/icons';
|
|
import { Panel } from '@/components/common/Panel';
|
|
import { Breakdown } from './Breakdown';
|
|
import { WebsiteControls } from '@/app/(main)/websites/[websiteId]/WebsiteControls';
|
|
import { FieldSelectForm } from '@/app/(main)/websites/[websiteId]/reports/breakdown/FieldSelectForm';
|
|
|
|
export function BreakdownPage({ websiteId }: { websiteId: string }) {
|
|
const {
|
|
dateRange: { startDate, endDate },
|
|
} = useDateRange(websiteId);
|
|
const [fields, setFields] = useState(['path']);
|
|
|
|
return (
|
|
<Column gap>
|
|
<WebsiteControls websiteId={websiteId} />
|
|
<FieldsButton value={fields} onChange={setFields} />
|
|
<Panel height="900px" overflow="auto" allowFullscreen>
|
|
<Breakdown
|
|
websiteId={websiteId}
|
|
startDate={startDate}
|
|
endDate={endDate}
|
|
selectedFields={fields}
|
|
/>
|
|
</Panel>
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
const FieldsButton = ({ value, onChange }) => {
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
return (
|
|
<Box>
|
|
<DialogTrigger>
|
|
<Button>
|
|
<Icon>
|
|
<ListCheck />
|
|
</Icon>
|
|
<Text>Fields</Text>
|
|
</Button>
|
|
<Modal>
|
|
<Dialog title={formatMessage(labels.fields)} style={{ width: 400 }}>
|
|
{({ close }) => (
|
|
<FieldSelectForm selectedFields={value} onChange={onChange} onClose={close} />
|
|
)}
|
|
</Dialog>
|
|
</Modal>
|
|
</DialogTrigger>
|
|
</Box>
|
|
);
|
|
};
|