mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
207 lines
6.4 KiB
TypeScript
207 lines
6.4 KiB
TypeScript
'use client';
|
|
import { Button, Column, Grid, Heading } from '@umami/react-zen';
|
|
import Link from 'next/link';
|
|
import Script from 'next/script';
|
|
import { WebsiteChart } from '@/app/(main)/websites/[websiteId]/WebsiteChart';
|
|
import { PageBody } from '@/components/common/PageBody';
|
|
import { PageHeader } from '@/components/common/PageHeader';
|
|
import { Panel } from '@/components/common/Panel';
|
|
import { useWebsiteQuery } from '@/components/hooks';
|
|
import { EventsChart } from '@/components/metrics/EventsChart';
|
|
|
|
export function TestConsolePage({ websiteId }: { websiteId: string }) {
|
|
const { data } = useWebsiteQuery(websiteId);
|
|
|
|
function handleRunScript() {
|
|
window.umami.track(props => ({
|
|
...props,
|
|
url: '/page-view',
|
|
referrer: 'https://www.google.com',
|
|
}));
|
|
window.umami.track('track-event-no-data');
|
|
window.umami.track('track-event-with-data', {
|
|
test: 'test-data',
|
|
boolean: true,
|
|
booleanError: 'true',
|
|
time: new Date(),
|
|
user: `user${Math.round(Math.random() * 10)}`,
|
|
number: 1,
|
|
number2: Math.random() * 100,
|
|
time2: new Date().toISOString(),
|
|
nested: {
|
|
test: 'test-data',
|
|
number: 1,
|
|
object: {
|
|
test: 'test-data',
|
|
},
|
|
},
|
|
array: [1, 2, 3],
|
|
});
|
|
}
|
|
|
|
function handleRunRevenue() {
|
|
window.umami.track(props => ({
|
|
...props,
|
|
url: '/checkout-cart',
|
|
referrer: 'https://www.google.com',
|
|
}));
|
|
window.umami.track('checkout-cart', {
|
|
revenue: parseFloat((Math.random() * 1000).toFixed(2)),
|
|
currency: 'USD',
|
|
});
|
|
window.umami.track('affiliate-link', {
|
|
revenue: parseFloat((Math.random() * 1000).toFixed(2)),
|
|
currency: 'USD',
|
|
});
|
|
window.umami.track('promotion-link', {
|
|
revenue: parseFloat((Math.random() * 1000).toFixed(2)),
|
|
currency: 'USD',
|
|
});
|
|
window.umami.track('checkout-cart', {
|
|
revenue: parseFloat((Math.random() * 1000).toFixed(2)),
|
|
currency: 'EUR',
|
|
});
|
|
window.umami.track('promotion-link', {
|
|
revenue: parseFloat((Math.random() * 1000).toFixed(2)),
|
|
currency: 'EUR',
|
|
});
|
|
window.umami.track('affiliate-link', {
|
|
item1: {
|
|
productIdentity: 'ABC424',
|
|
revenue: parseFloat((Math.random() * 10000).toFixed(2)),
|
|
currency: 'JPY',
|
|
},
|
|
item2: {
|
|
productIdentity: 'ZYW684',
|
|
revenue: parseFloat((Math.random() * 10000).toFixed(2)),
|
|
currency: 'JPY',
|
|
},
|
|
});
|
|
}
|
|
|
|
function handleRunIdentify() {
|
|
window.umami.identify({
|
|
userId: 123,
|
|
name: 'brian',
|
|
number: Math.random() * 100,
|
|
test: 'test-data',
|
|
boolean: true,
|
|
booleanError: 'true',
|
|
time: new Date(),
|
|
time2: new Date().toISOString(),
|
|
nested: {
|
|
test: 'test-data',
|
|
number: 1,
|
|
object: {
|
|
test: 'test-data',
|
|
},
|
|
},
|
|
array: [1, 2, 3],
|
|
});
|
|
}
|
|
|
|
if (!data) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<PageBody>
|
|
<PageHeader title="Test console">
|
|
<Column>{data.name}</Column>
|
|
</PageHeader>
|
|
<Column gap="6" paddingY="6">
|
|
<Script
|
|
async
|
|
data-website-id={websiteId}
|
|
src={`${process.env.basePath || ''}/script.js`}
|
|
data-cache="true"
|
|
/>
|
|
<Panel>
|
|
<Grid columns="1fr 1fr 1fr" gap>
|
|
<Column gap>
|
|
<Heading>Page links</Heading>
|
|
<div>
|
|
<Link href={`/console/${websiteId}?page=1`}>page one</Link>
|
|
</div>
|
|
<div>
|
|
<Link href={`/console/${websiteId}?page=2 `}>page two</Link>
|
|
</div>
|
|
<div>
|
|
<a href="https://www.google.com" data-umami-event="external-link-direct">
|
|
external link (direct)
|
|
</a>
|
|
</div>
|
|
<div>
|
|
<a
|
|
href="https://www.google.com"
|
|
data-umami-event="external-link-tab"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
external link (tab)
|
|
</a>
|
|
</div>
|
|
</Column>
|
|
<Column gap>
|
|
<Heading>Click events</Heading>
|
|
<Button id="send-event-button" data-umami-event="button-click" variant="primary">
|
|
Send event
|
|
</Button>
|
|
<Button
|
|
id="send-event-data-button"
|
|
data-umami-event="button-click"
|
|
data-umami-event-name="bob"
|
|
data-umami-event-id="123"
|
|
variant="primary"
|
|
>
|
|
Send event with data
|
|
</Button>
|
|
<Button
|
|
id="generate-revenue-button"
|
|
data-umami-event="checkout-cart"
|
|
data-umami-event-revenue={(Math.random() * 10000).toFixed(2).toString()}
|
|
data-umami-event-currency="USD"
|
|
variant="primary"
|
|
>
|
|
Generate revenue data
|
|
</Button>
|
|
<Button
|
|
id="button-with-div-button"
|
|
data-umami-event="button-click"
|
|
data-umami-event-name={'bob'}
|
|
data-umami-event-id="123"
|
|
variant="primary"
|
|
>
|
|
<div>Button with div</div>
|
|
</Button>
|
|
<div data-umami-event="div-click">DIV with attribute</div>
|
|
<div data-umami-event="div-click-one">
|
|
<div data-umami-event="div-click-two">
|
|
<div data-umami-event="div-click-three">Nested DIV</div>
|
|
</div>
|
|
</div>
|
|
</Column>
|
|
<Column gap>
|
|
<Heading>Javascript events</Heading>
|
|
<Button id="manual-button" variant="primary" onClick={handleRunScript}>
|
|
Run script
|
|
</Button>
|
|
<Button id="manual-button" variant="primary" onClick={handleRunIdentify}>
|
|
Run identify
|
|
</Button>
|
|
<Button id="manual-button" variant="primary" onClick={handleRunRevenue}>
|
|
Revenue script
|
|
</Button>
|
|
</Column>
|
|
</Grid>
|
|
</Panel>
|
|
<Heading>Pageviews</Heading>
|
|
<WebsiteChart websiteId={websiteId} />
|
|
<Heading>Events</Heading>
|
|
<Panel>
|
|
<EventsChart websiteId={websiteId} />
|
|
</Panel>
|
|
</Column>
|
|
</PageBody>
|
|
);
|
|
}
|