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

27 lines
584 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';
2023-03-24 00:33:10 +01:00
import SettingsLayout from 'components/layout/SettingsLayout';
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 (
2023-03-24 00:33:10 +01:00
<SettingsLayout>
2023-01-21 02:12:53 +01:00
<WebsiteSettings websiteId={id} />
2023-03-24 00:33:10 +01:00
</SettingsLayout>
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,
},
};
}