umami/pages/settings/websites/[id]/index.js

27 lines
564 B
JavaScript
Raw Normal View History

2020-08-01 04:05:14 +02:00
import { useRouter } from 'next/router';
2023-01-21 02:12:53 +01:00
import WebsiteSettings from 'components/pages/settings/websites/WebsiteSettings';
import AppLayout from 'components/layout/AppLayout';
2020-08-01 04:05:14 +02:00
2023-02-28 05:03:04 +01:00
export default function WebsiteSettingsPage({ disabled }) {
2020-08-01 04:05:14 +02:00
const router = useRouter();
const { id } = router.query;
2023-02-28 05:03:04 +01:00
if (!id || disabled) {
2020-08-04 03:12:28 +02:00
return null;
}
2020-08-01 04:05:14 +02:00
return (
<AppLayout>
2023-01-21 02:12:53 +01:00
<WebsiteSettings websiteId={id} />
</AppLayout>
2020-08-01 04:05:14 +02:00
);
}
2023-02-28 05:03:04 +01:00
export async function getServerSideProps() {
return {
props: {
disabled: !!process.env.CLOUD_MODE,
},
};
}