mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
40 lines
909 B
JavaScript
40 lines
909 B
JavaScript
import React, { useState, useEffect } from 'react';
|
|
import { useRouter } from 'next/router';
|
|
import Layout from 'components/layout/Layout';
|
|
import WebsiteDetails from 'components/WebsiteDetails';
|
|
import NotFound from 'pages/404';
|
|
import { get } from 'lib/web';
|
|
|
|
export default function SharePage() {
|
|
const [websiteId, setWebsiteId] = useState();
|
|
const [notFound, setNotFound] = useState(false);
|
|
const router = useRouter();
|
|
const { id } = router.query;
|
|
|
|
async function loadData() {
|
|
const website = await get(`/api/share/${id?.[0]}`);
|
|
|
|
if (website) {
|
|
setWebsiteId(website.website_id);
|
|
} else if (typeof window !== 'undefined') {
|
|
setNotFound(true);
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (id) {
|
|
loadData();
|
|
}
|
|
}, [id]);
|
|
|
|
if (!id || notFound) {
|
|
return <NotFound />;
|
|
}
|
|
|
|
return (
|
|
<Layout>
|
|
<WebsiteDetails websiteId={websiteId} />
|
|
</Layout>
|
|
);
|
|
}
|