2023-03-24 18:55:20 +01:00
|
|
|
import AppLayout from 'components/layout/AppLayout';
|
2023-03-24 00:33:10 +01:00
|
|
|
import SettingsLayout from 'components/layout/SettingsLayout';
|
2023-01-25 16:42:46 +01:00
|
|
|
import TeamSettings from 'components/pages/settings/teams/TeamSettings';
|
2022-12-27 01:57:59 +01:00
|
|
|
import { useRouter } from 'next/router';
|
2023-04-21 04:58:16 +02:00
|
|
|
import useMessages from 'hooks/useMessages';
|
2022-12-27 01:57:59 +01:00
|
|
|
|
2023-02-28 05:03:04 +01:00
|
|
|
export default function TeamDetailPage({ disabled }) {
|
2022-12-27 01:57:59 +01:00
|
|
|
const router = useRouter();
|
|
|
|
const { id } = router.query;
|
2023-04-21 04:58:16 +02:00
|
|
|
const { formatMessage, labels } = useMessages();
|
2022-12-27 01:57:59 +01:00
|
|
|
|
2023-02-28 05:03:04 +01:00
|
|
|
if (!id || disabled) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-12-27 01:57:59 +01:00
|
|
|
return (
|
2023-04-22 00:14:30 +02:00
|
|
|
<AppLayout title={`${formatMessage(labels.settings)} - ${formatMessage(labels.teams)}`}>
|
2023-03-24 18:55:20 +01:00
|
|
|
<SettingsLayout>
|
|
|
|
<TeamSettings teamId={id} />
|
|
|
|
</SettingsLayout>
|
|
|
|
</AppLayout>
|
2022-12-27 01:57:59 +01:00
|
|
|
);
|
|
|
|
}
|
2023-02-28 05:03:04 +01:00
|
|
|
|
|
|
|
export async function getServerSideProps() {
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
disabled: !!process.env.CLOUD_MODE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|