umami/src/app/(main)/websites/[websiteId]/WebsiteTabs.tsx
2025-07-13 21:10:59 -07:00

64 lines
1.7 KiB
TypeScript

import { Tabs, TabList, Tab, Icon, Text, Row } from '@umami/react-zen';
import { useWebsite } from '@/components/hooks/useWebsite';
import { useMessages, useNavigation } from '@/components/hooks';
import { Clock, Eye, Lightning, User, ChartPie } from '@/components/icons';
export function WebsiteTabs() {
const website = useWebsite();
const { pathname, renderUrl } = useNavigation();
const { formatMessage, labels } = useMessages();
const links = [
{
id: 'overview',
label: formatMessage(labels.overview),
icon: <Eye />,
path: '',
},
{
id: 'events',
label: formatMessage(labels.events),
icon: <Lightning />,
path: '/events',
},
{
id: 'sessions',
label: formatMessage(labels.sessions),
icon: <User />,
path: '/sessions',
},
{
id: 'realtime',
label: formatMessage(labels.realtime),
icon: <Clock />,
path: '/realtime',
},
{
id: 'reports',
label: formatMessage(labels.reports),
icon: <ChartPie />,
path: '/reports',
},
];
const selectedKey = links.find(({ path }) => path && pathname.includes(path))?.id || 'overview';
return (
<Row marginBottom="6">
<Tabs selectedKey={selectedKey}>
<TabList>
{links.map(({ id, label, icon, path }) => {
return (
<Tab key={id} id={id} href={renderUrl(`/websites/${website.id}${path}`)}>
<Row alignItems="center" gap>
<Icon>{icon}</Icon>
<Text>{label}</Text>
</Row>
</Tab>
);
})}
</TabList>
</Tabs>
</Row>
);
}