2023-11-02 18:27:44 +00:00
|
|
|
import { ReactElement } from "react";
|
2024-03-06 08:56:34 +00:00
|
|
|
import { observer } from "mobx-react";
|
2023-11-01 08:12:51 +00:00
|
|
|
// layout
|
2024-03-19 14:38:35 +00:00
|
|
|
import { PageHead } from "@/components/core";
|
|
|
|
import { ProjectSettingHeader } from "@/components/headers";
|
|
|
|
import { ProjectSettingStateList } from "@/components/states";
|
|
|
|
import { useProject } from "@/hooks/store";
|
|
|
|
import { AppLayout } from "@/layouts/app-layout";
|
|
|
|
import { ProjectSettingLayout } from "@/layouts/settings-layout";
|
2022-12-20 10:35:21 +00:00
|
|
|
// components
|
2023-01-29 06:55:20 +00:00
|
|
|
// types
|
2024-03-19 14:38:35 +00:00
|
|
|
import { NextPageWithLayout } from "@/lib/types";
|
2024-03-06 08:56:34 +00:00
|
|
|
// hook
|
2022-12-20 10:35:21 +00:00
|
|
|
|
2024-03-06 08:56:34 +00:00
|
|
|
const StatesSettingsPage: NextPageWithLayout = observer(() => {
|
|
|
|
// store
|
|
|
|
const { currentProjectDetails } = useProject();
|
|
|
|
// derived values
|
|
|
|
const pageTitle = currentProjectDetails?.name ? `${currentProjectDetails?.name} - States` : undefined;
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<PageHead title={pageTitle} />
|
|
|
|
<div className="w-full gap-10 overflow-y-auto py-8 pr-9">
|
|
|
|
<div className="flex items-center border-b border-custom-border-100 py-3.5">
|
|
|
|
<h3 className="text-xl font-medium">States</h3>
|
|
|
|
</div>
|
|
|
|
<ProjectSettingStateList />
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
});
|
2022-12-20 10:35:21 +00:00
|
|
|
|
2023-11-02 18:27:44 +00:00
|
|
|
StatesSettingsPage.getLayout = function getLayout(page: ReactElement) {
|
|
|
|
return (
|
|
|
|
<AppLayout withProjectWrapper header={<ProjectSettingHeader title="States Settings" />}>
|
|
|
|
<ProjectSettingLayout>{page}</ProjectSettingLayout>
|
|
|
|
</AppLayout>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default StatesSettingsPage;
|