forked from github/plane
65 lines
1.8 KiB
TypeScript
65 lines
1.8 KiB
TypeScript
import React from "react";
|
|
import { useRouter } from "next/router";
|
|
import Link from "next/link";
|
|
// icons
|
|
import { GridViewIcon, AssignmentClipboardIcon, TickMarkIcon, SettingIcon } from "components/icons";
|
|
// hooks
|
|
import useTheme from "hooks/use-theme";
|
|
|
|
const workspaceLinks = (workspaceSlug: string) => [
|
|
{
|
|
icon: GridViewIcon,
|
|
name: "Dashboard",
|
|
href: `/${workspaceSlug}`,
|
|
},
|
|
{
|
|
icon: AssignmentClipboardIcon,
|
|
name: "Projects",
|
|
href: `/${workspaceSlug}/projects`,
|
|
},
|
|
{
|
|
icon: TickMarkIcon,
|
|
name: "My Issues",
|
|
href: `/${workspaceSlug}/me/my-issues`,
|
|
},
|
|
{
|
|
icon: SettingIcon,
|
|
name: "Settings",
|
|
href: `/${workspaceSlug}/settings`,
|
|
},
|
|
];
|
|
|
|
export const WorkspaceSidebarMenu: React.FC = () => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// theme context
|
|
const { collapsed: sidebarCollapse } = useTheme();
|
|
|
|
return (
|
|
<div className="flex w-full flex-col items-start justify-start gap-2 px-5 py-1">
|
|
{workspaceLinks(workspaceSlug as string).map((link, index) => (
|
|
<Link key={index} href={link.href}>
|
|
<a
|
|
className={`${
|
|
link.href === router.asPath
|
|
? "bg-indigo-50 text-gray-900"
|
|
: "text-gray-500 hover:bg-indigo-50 hover:text-gray-900 focus:bg-indigo-50"
|
|
} group flex w-full items-center gap-3 rounded-md p-2 text-base font-medium outline-none ${
|
|
sidebarCollapse ? "justify-center" : ""
|
|
}`}
|
|
>
|
|
<link.icon
|
|
className={`${
|
|
link.href === router.asPath ? "text-gray-900" : "text-gray-600"
|
|
} h-5 w-5 flex-shrink-0 group-hover:text-gray-900`}
|
|
aria-hidden="true"
|
|
/>
|
|
{!sidebarCollapse && link.name}
|
|
</a>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
);
|
|
};
|