mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
a36aa4d093
* fix add subgroup issue FED-1101 * fix subgroup by None assignee FED-1100 * fix grouping by asignee or labels FED-1096 * fix create view popup FED-1093 * fix subgroup exception in swimlanes * fix show sub issue filter FED-1102 * use Enums instead of numbers * fix Estimates setting permission for admin * disable access to project settings for viewers and guests * fix project unautorized flicker * add observer to estimates * add permissions to member list
33 lines
997 B
TypeScript
33 lines
997 B
TypeScript
import { FC, ReactNode } from "react";
|
|
// components
|
|
import { ProjectSettingsSidebar } from "./sidebar";
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
import { NotAuthorizedView } from "components/auth-screens";
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
export interface IProjectSettingLayout {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const ProjectSettingLayout: FC<IProjectSettingLayout> = observer((props) => {
|
|
const { children } = props;
|
|
|
|
const {
|
|
user: { currentProjectRole },
|
|
} = useMobxStore();
|
|
|
|
const restrictViewSettings = currentProjectRole && currentProjectRole <= EUserWorkspaceRoles.VIEWER;
|
|
|
|
return restrictViewSettings ? (
|
|
<NotAuthorizedView type="project" />
|
|
) : (
|
|
<div className="flex gap-2 h-full w-full overflow-x-hidden overflow-y-scroll">
|
|
<div className="w-80 pt-8 overflow-y-hidden flex-shrink-0">
|
|
<ProjectSettingsSidebar />
|
|
</div>
|
|
{children}
|
|
</div>
|
|
);
|
|
});
|