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

30 lines
676 B
JavaScript
Raw Normal View History

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