umami/pages/settings/websites/index.js

28 lines
670 B
JavaScript
Raw Normal View History

2023-03-24 18:55:20 +01:00
import AppLayout from 'components/layout/AppLayout';
2023-03-23 19:46:49 +01:00
import SettingsLayout from 'components/layout/SettingsLayout';
2023-01-10 08:59:26 +01:00
import WebsitesList from 'components/pages/settings/websites/WebsitesList';
2023-04-21 04:58:16 +02:00
import useMessages from 'hooks/useMessages';
2020-08-05 07:45:05 +02:00
2023-02-28 05:03:04 +01:00
export default function WebsitesPage({ disabled }) {
2023-04-21 04:58:16 +02:00
const { formatMessage, labels } = useMessages();
2023-02-28 05:03:04 +01:00
if (disabled) {
return null;
}
2020-08-05 07:45:05 +02:00
return (
2023-04-21 04:58:16 +02:00
<AppLayout title={formatMessage(labels.websites)}>
2023-03-24 18:55:20 +01:00
<SettingsLayout>
<WebsitesList />
</SettingsLayout>
</AppLayout>
2020-08-05 07:45:05 +02:00
);
}
2023-02-28 05:03:04 +01:00
export async function getServerSideProps() {
return {
props: {
disabled: !!process.env.CLOUD_MODE,
},
};
}