mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 15:17:23 +01:00
Implements full session recording with rrweb for DOM capture and rrweb-player for playback. Includes: Prisma schema for SessionRecording model, chunked gzip-compressed storage, recorder script built via Rollup, collection API endpoint, recordings list/playback UI pages, website recording settings, and cascade delete support. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
153 lines
3.8 KiB
TypeScript
153 lines
3.8 KiB
TypeScript
import {
|
|
AlignEndHorizontal,
|
|
ChartPie,
|
|
Clock,
|
|
Eye,
|
|
Sheet,
|
|
Tag,
|
|
User,
|
|
UserPlus,
|
|
Video,
|
|
} from '@/components/icons';
|
|
import { Funnel, Lightning, Magnet, Money, Network, Path, Target } from '@/components/svg';
|
|
import { useMessages } from './useMessages';
|
|
import { useNavigation } from './useNavigation';
|
|
|
|
export function useWebsiteNavItems(websiteId: string) {
|
|
const { formatMessage, labels } = useMessages();
|
|
const { pathname, renderUrl } = useNavigation();
|
|
|
|
const renderPath = (path: string) =>
|
|
renderUrl(`/websites/${websiteId}${path}`, {
|
|
event: undefined,
|
|
compare: undefined,
|
|
view: undefined,
|
|
unit: undefined,
|
|
excludeBounce: undefined,
|
|
});
|
|
|
|
const items = [
|
|
{
|
|
label: formatMessage(labels.traffic),
|
|
items: [
|
|
{
|
|
id: 'overview',
|
|
label: formatMessage(labels.overview),
|
|
icon: <Eye />,
|
|
path: renderPath(''),
|
|
},
|
|
{
|
|
id: 'events',
|
|
label: formatMessage(labels.events),
|
|
icon: <Lightning />,
|
|
path: renderPath('/events'),
|
|
},
|
|
{
|
|
id: 'sessions',
|
|
label: formatMessage(labels.sessions),
|
|
icon: <User />,
|
|
path: renderPath('/sessions'),
|
|
},
|
|
{
|
|
id: 'realtime',
|
|
label: formatMessage(labels.realtime),
|
|
icon: <Clock />,
|
|
path: renderPath('/realtime'),
|
|
},
|
|
{
|
|
id: 'compare',
|
|
label: formatMessage(labels.compare),
|
|
icon: <AlignEndHorizontal />,
|
|
path: renderPath('/compare'),
|
|
},
|
|
{
|
|
id: 'breakdown',
|
|
label: formatMessage(labels.breakdown),
|
|
icon: <Sheet />,
|
|
path: renderPath('/breakdown'),
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: formatMessage(labels.behavior),
|
|
items: [
|
|
{
|
|
id: 'goals',
|
|
label: formatMessage(labels.goals),
|
|
icon: <Target />,
|
|
path: renderPath('/goals'),
|
|
},
|
|
{
|
|
id: 'funnel',
|
|
label: formatMessage(labels.funnels),
|
|
icon: <Funnel />,
|
|
path: renderPath('/funnels'),
|
|
},
|
|
{
|
|
id: 'journeys',
|
|
label: formatMessage(labels.journeys),
|
|
icon: <Path />,
|
|
path: renderPath('/journeys'),
|
|
},
|
|
{
|
|
id: 'retention',
|
|
label: formatMessage(labels.retention),
|
|
icon: <Magnet />,
|
|
path: renderPath('/retention'),
|
|
},
|
|
{
|
|
id: 'recordings',
|
|
label: formatMessage(labels.recordings),
|
|
icon: <Video />,
|
|
path: renderPath('/recordings'),
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: formatMessage(labels.audience),
|
|
items: [
|
|
{
|
|
id: 'segments',
|
|
label: formatMessage(labels.segments),
|
|
icon: <ChartPie />,
|
|
path: renderPath('/segments'),
|
|
},
|
|
{
|
|
id: 'cohorts',
|
|
label: formatMessage(labels.cohorts),
|
|
icon: <UserPlus />,
|
|
path: renderPath('/cohorts'),
|
|
},
|
|
],
|
|
},
|
|
{
|
|
label: formatMessage(labels.growth),
|
|
items: [
|
|
{
|
|
id: 'utm',
|
|
label: formatMessage(labels.utm),
|
|
icon: <Tag />,
|
|
path: renderPath('/utm'),
|
|
},
|
|
{
|
|
id: 'revenue',
|
|
label: formatMessage(labels.revenue),
|
|
icon: <Money />,
|
|
path: renderPath('/revenue'),
|
|
},
|
|
{
|
|
id: 'attribution',
|
|
label: formatMessage(labels.attribution),
|
|
icon: <Network />,
|
|
path: renderPath('/attribution'),
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const selectedKey = items
|
|
.flatMap(e => e.items)
|
|
.find(({ path }) => path && pathname.endsWith(path.split('?')[0]))?.id;
|
|
|
|
return { items, selectedKey, renderPath };
|
|
}
|