mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e4084fe156
* chore: move all workspace, project and profile links constants into their own constants file. * chore: sidebar menu links improvement.
64 lines
2.4 KiB
TypeScript
64 lines
2.4 KiB
TypeScript
import React from "react";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useApplication, useUser } from "hooks/store";
|
|
// components
|
|
import { NotificationPopover } from "components/notifications";
|
|
// ui
|
|
import { Tooltip } from "@plane/ui";
|
|
// constants
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
import { SIDEBAR_MENU_ITEMS } from "constants/dashboard";
|
|
|
|
export const WorkspaceSidebarMenu = observer(() => {
|
|
// store hooks
|
|
const { theme: themeStore } = useApplication();
|
|
const {
|
|
membership: { currentWorkspaceRole },
|
|
} = useUser();
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// computed
|
|
const workspaceMemberInfo = currentWorkspaceRole || EUserWorkspaceRoles.GUEST;
|
|
|
|
return (
|
|
<div className="w-full cursor-pointer space-y-2 p-4">
|
|
{SIDEBAR_MENU_ITEMS.map(
|
|
(link) =>
|
|
workspaceMemberInfo >= link.access && (
|
|
<Link key={link.key} href={`/${workspaceSlug}${link.href}`}>
|
|
<span className="block w-full my-1">
|
|
<Tooltip
|
|
tooltipContent={link.label}
|
|
position="right"
|
|
className="ml-2"
|
|
disabled={!themeStore?.sidebarCollapsed}
|
|
>
|
|
<div
|
|
className={`group flex w-full items-center gap-2.5 rounded-md px-3 py-2 text-sm font-medium outline-none ${
|
|
link.highlight(router.asPath, `/${workspaceSlug}`)
|
|
? "bg-custom-primary-100/10 text-custom-primary-100"
|
|
: "text-custom-sidebar-text-200 hover:bg-custom-sidebar-background-80 focus:bg-custom-sidebar-background-80"
|
|
} ${themeStore?.sidebarCollapsed ? "justify-center" : ""}`}
|
|
>
|
|
{<link.Icon className="h-4 w-4" />}
|
|
{!themeStore?.sidebarCollapsed && link.label}
|
|
{!themeStore?.sidebarCollapsed && link.key === "active-cycles" && (
|
|
<span className="flex items-center justify-center px-3.5 py-0.5 text-xs leading-4 rounded-xl text-orange-500 bg-orange-500/20">
|
|
Beta
|
|
</span>
|
|
)}
|
|
</div>
|
|
</Tooltip>
|
|
</span>
|
|
</Link>
|
|
)
|
|
)}
|
|
<NotificationPopover />
|
|
</div>
|
|
);
|
|
});
|