umami/pages/settings/index.js

27 lines
559 B
JavaScript
Raw Normal View History

2020-08-05 07:45:05 +02:00
import React from 'react';
2020-08-07 11:27:12 +02:00
import Layout from 'components/layout/Layout';
2020-09-27 09:51:29 +02:00
import Settings from 'components/pages/Settings';
2020-08-06 04:04:02 +02:00
import useRequireLogin from 'hooks/useRequireLogin';
2020-08-05 07:45:05 +02:00
2022-10-27 21:14:34 +02:00
export default function SettingsPage({ pageDisabled }) {
2020-08-06 04:04:02 +02:00
const { loading } = useRequireLogin();
2020-08-05 07:45:05 +02:00
2022-10-27 21:14:34 +02:00
if (pageDisabled || loading) {
2020-08-05 07:45:05 +02:00
return null;
}
return (
2022-10-13 01:29:44 +02:00
<Layout>
2020-08-05 07:45:05 +02:00
<Settings />
</Layout>
);
}
2022-10-27 21:14:34 +02:00
export async function getServerSideProps() {
return {
props: {
pageDisabled: !!process.env.DISABLE_UI || !!process.env.isAdminDisabled,
},
};
}