* fix: remove constants and services * fix: formatting * chore: merge helpers and layouts * fix: workspace disbale flag handling
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { Outlet } from "react-router";
|
|
import { AuthenticationWrapper } from "@/lib/wrappers/authentication-wrapper";
|
|
import { WorkspaceContentWrapper } from "@/plane-web/components/workspace/content-wrapper";
|
|
import { AppRailVisibilityProvider } from "@/plane-web/hooks/app-rail";
|
|
import { GlobalModals } from "@/plane-web/components/common/modal/global";
|
|
import { WorkspaceAuthWrapper } from "@/layouts/auth-layout/workspace-wrapper";
|
|
import type { Route } from "./+types/layout";
|
|
|
|
export default function WorkspaceLayout(props: Route.ComponentProps) {
|
|
const { workspaceSlug } = props.params;
|
|
|
|
return (
|
|
<AuthenticationWrapper>
|
|
<WorkspaceAuthWrapper>
|
|
<AppRailVisibilityProvider>
|
|
<WorkspaceContentWrapper>
|
|
<GlobalModals workspaceSlug={workspaceSlug} />
|
|
<Outlet />
|
|
</WorkspaceContentWrapper>
|
|
</AppRailVisibilityProvider>
|
|
</WorkspaceAuthWrapper>
|
|
</AuthenticationWrapper>
|
|
);
|
|
}
|