umami/pages/realtime/[id]/index.js
2023-05-11 17:27:37 +01:00

27 lines
885 B
JavaScript

import { useRouter } from 'next/router';
import AppLayout from 'components/layout/AppLayout';
import RealtimeDashboard from 'components/pages/realtime/RealtimeDashboard';
import useMessages from 'hooks/useMessages';
import useApi from 'hooks/useApi';
export default function RealtimeDetailsPage() {
const router = useRouter();
const { id: websiteId } = router.query;
const { formatMessage, labels } = useMessages();
const { get, useQuery } = useApi();
const { data: website } = useQuery(['websites', websiteId], () =>
websiteId ? get(`/websites/${websiteId}`, { enabled: !!websiteId }) : null,
);
const title = `${formatMessage(labels.realtime)}${website?.name ? ` - ${website.name}` : ''}`;
if (!websiteId) {
return null;
}
return (
<AppLayout title={title}>
<RealtimeDashboard key={websiteId} websiteId={websiteId} />
</AppLayout>
);
}