umami/pages/settings/index.js

27 lines
559 B
JavaScript
Raw Normal View History

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