umami/pages/share/[...id].js

25 lines
603 B
JavaScript
Raw Normal View History

import React from 'react';
2020-08-15 10:17:15 +02:00
import { useRouter } from 'next/router';
import Layout from 'components/layout/Layout';
2020-09-27 09:51:29 +02:00
import WebsiteDetails from 'components/pages/WebsiteDetails';
import useFetch from 'hooks/useFetch';
2020-08-15 10:17:15 +02:00
export default function SharePage() {
const router = useRouter();
const { id } = router.query;
const shareId = id?.[0];
2020-10-09 21:39:03 +02:00
const { data } = useFetch(`/api/share/${shareId}`, { disabled: !shareId });
2020-08-15 10:17:15 +02:00
if (!data) {
return null;
2020-08-15 10:17:15 +02:00
}
const { websiteId, token } = data;
2020-08-15 10:17:15 +02:00
return (
<Layout>
<WebsiteDetails websiteId={websiteId} token={token} />
2020-08-15 10:17:15 +02:00
</Layout>
);
}