mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3c2f5d12ed
* chore: add next theme and initial setup * chore: add dark mode colors to layouts * chore: user general setting page theming * chore: dashboard theming * chore: project page theming * chore: workspace setting page theming * chore: my issue page theming * chore: cmdk theming * chore: change hardcode bg and text color to theme * chore: change color name according to the design * style: fix card in the dashboard * style: fix merge conflict design issues * style: add light high contrast and dark high contrast * style: fix cmd k menu color and selection * feat: change theme from cmdk menu * chore: add multiple theme field to custom theme * chore: removed custom theming * fix: build error --------- Co-authored-by: Saheb Giri <iamsahebgiri@gmail.com>
167 lines
5.3 KiB
TypeScript
167 lines
5.3 KiB
TypeScript
import React, { FC, useState, useEffect } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
import Link from "next/link";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// ui
|
|
import { PrimaryButton, Spinner } from "components/ui";
|
|
// icon
|
|
import { LayerDiagonalIcon } from "components/icons";
|
|
// components
|
|
import { NotAuthorizedView, JoinProject } from "components/auth-screens";
|
|
import { CommandPalette } from "components/command-palette";
|
|
// local components
|
|
import Container from "layouts/container";
|
|
import AppSidebar from "layouts/app-layout/app-sidebar";
|
|
import AppHeader from "layouts/app-layout/app-header";
|
|
// types
|
|
import { UserAuth } from "types";
|
|
// fetch-keys
|
|
import { PROJECT_MEMBERS } from "constants/fetch-keys";
|
|
import SettingsNavbar from "layouts/settings-navbar";
|
|
|
|
type Meta = {
|
|
title?: string | null;
|
|
description?: string | null;
|
|
image?: string | null;
|
|
url?: string | null;
|
|
};
|
|
|
|
type AppLayoutProps = {
|
|
meta?: Meta;
|
|
children: React.ReactNode;
|
|
noPadding?: boolean;
|
|
bg?: "primary" | "secondary";
|
|
noHeader?: boolean;
|
|
breadcrumbs?: JSX.Element;
|
|
left?: JSX.Element;
|
|
right?: JSX.Element;
|
|
settingsLayout?: boolean;
|
|
profilePage?: boolean;
|
|
memberType?: UserAuth;
|
|
};
|
|
|
|
const AppLayout: FC<AppLayoutProps> = ({
|
|
meta,
|
|
children,
|
|
noPadding = false,
|
|
bg = "primary",
|
|
noHeader = false,
|
|
breadcrumbs,
|
|
left,
|
|
right,
|
|
settingsLayout = false,
|
|
profilePage = false,
|
|
memberType,
|
|
}) => {
|
|
// states
|
|
const [toggleSidebar, setToggleSidebar] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: projectMembers, mutate: projectMembersMutate } = useSWR(
|
|
workspaceSlug && projectId ? PROJECT_MEMBERS(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.projectMembers(workspaceSlug as string, projectId as string)
|
|
: null,
|
|
{
|
|
shouldRetryOnError: false,
|
|
}
|
|
);
|
|
// flags
|
|
const isMember =
|
|
!projectId ||
|
|
memberType?.isOwner ||
|
|
memberType?.isMember ||
|
|
memberType?.isViewer ||
|
|
memberType?.isGuest;
|
|
|
|
return (
|
|
<Container meta={meta}>
|
|
<CommandPalette />
|
|
<div className="flex h-screen w-full overflow-x-hidden">
|
|
<AppSidebar toggleSidebar={toggleSidebar} setToggleSidebar={setToggleSidebar} />
|
|
{settingsLayout && (memberType?.isGuest || memberType?.isViewer) ? (
|
|
<NotAuthorizedView
|
|
actionButton={
|
|
(memberType?.isViewer || memberType?.isGuest) && projectId ? (
|
|
<Link href={`/${workspaceSlug}/projects/${projectId}/issues`}>
|
|
<PrimaryButton className="flex items-center gap-1">
|
|
<LayerDiagonalIcon height={16} width={16} color="white" /> Go to Issues
|
|
</PrimaryButton>
|
|
</Link>
|
|
) : (
|
|
(memberType?.isViewer || memberType?.isGuest) &&
|
|
workspaceSlug && (
|
|
<Link href={`/${workspaceSlug}`}>
|
|
<PrimaryButton className="flex items-center gap-1">
|
|
<LayerDiagonalIcon height={16} width={16} color="white" /> Go to workspace
|
|
</PrimaryButton>
|
|
</Link>
|
|
)
|
|
)
|
|
}
|
|
type="project"
|
|
/>
|
|
) : (
|
|
<main className="flex h-screen w-full min-w-0 flex-col overflow-y-auto">
|
|
{!noHeader && (
|
|
<AppHeader
|
|
breadcrumbs={breadcrumbs}
|
|
left={left}
|
|
right={right}
|
|
setToggleSidebar={setToggleSidebar}
|
|
/>
|
|
)}
|
|
{projectId && !projectMembers ? (
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
<Spinner />
|
|
</div>
|
|
) : isMember ? (
|
|
<div
|
|
className={`flex w-full flex-grow flex-col ${
|
|
noPadding ? "" : settingsLayout ? "p-8 lg:px-28" : "p-8"
|
|
} ${
|
|
bg === "primary"
|
|
? "bg-brand-base"
|
|
: bg === "secondary"
|
|
? "bg-brand-base"
|
|
: "bg-brand-base"
|
|
}`}
|
|
>
|
|
{settingsLayout && (
|
|
<div className="mb-12 space-y-6">
|
|
<div>
|
|
<h3 className="text-3xl font-semibold text-brand-base">
|
|
{profilePage ? "Profile" : projectId ? "Project" : "Workspace"} Settings
|
|
</h3>
|
|
<p className="mt-1 text-brand-secondary">
|
|
{profilePage
|
|
? "This information will be visible to only you."
|
|
: projectId
|
|
? "This information will be displayed to every member of the project."
|
|
: "This information will be displayed to every member of the workspace."}
|
|
</p>
|
|
</div>
|
|
<SettingsNavbar profilePage={profilePage} />
|
|
</div>
|
|
)}
|
|
{children}
|
|
</div>
|
|
) : (
|
|
<JoinProject />
|
|
)}
|
|
</main>
|
|
)}
|
|
</div>
|
|
</Container>
|
|
);
|
|
};
|
|
|
|
export default AppLayout;
|