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

32 lines
833 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';
2023-04-21 02:58:16 +00:00
import useMessages from 'hooks/useMessages';
2020-08-01 02:05:14 +00:00
2023-07-10 07:33:30 +00:00
export default function ({ disabled }) {
2020-08-01 02:05:14 +00:00
const router = useRouter();
const { id } = router.query;
2023-04-21 02:58:16 +00:00
const { formatMessage, labels } = useMessages();
2020-08-01 02:05:14 +00:00
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-04-21 22:14:30 +00:00
<AppLayout title={`${formatMessage(labels.settings)} - ${formatMessage(labels.websites)}`}>
2023-03-24 17:55:20 +00:00
<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,
},
};
}