mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { ReactElement } from "react";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { ProjectSettingLayout } from "layouts/settings-layout";
|
|
// components
|
|
import { ProjectSettingHeader } from "components/headers";
|
|
import { EstimatesList } from "components/estimates";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
const EstimatesSettingsPage: NextPageWithLayout = observer(() => {
|
|
const {
|
|
user: { currentProjectRole },
|
|
} = useMobxStore();
|
|
|
|
const isAdmin = currentProjectRole === EUserWorkspaceRoles.ADMIN;
|
|
|
|
return (
|
|
<div className={`w-full overflow-y-auto py-8 pr-9 ${isAdmin ? "" : "pointer-events-none opacity-60"}`}>
|
|
<EstimatesList />
|
|
</div>
|
|
);
|
|
});
|
|
|
|
EstimatesSettingsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectSettingHeader title="Estimates Settings" />} withProjectWrapper>
|
|
<ProjectSettingLayout>{page}</ProjectSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default EstimatesSettingsPage;
|