forked from github/plane
87abf3ccb1
* style: project settings navigation sidebar added * chore: emoji and image picker close on outside click added * style: project setting general page revamp * style: project setting member page revamp * style: project setting features page revamp * style: project setting state page revamp * style: project setting integrations page revamp * style: project setting estimates page revamp * style: project setting automation page revamp * style: project setting label page revamp * chore: member select improvement for member setting page * chore: toggle switch component improvement * style: project automation setting ui improvement * style: module icon added * style: toggle switch improvement * style: ui and spacing consistency * style: project label setting revamp * style: project state setting ui improvement * chore: integration setting repo select validation * chore: code refactor * fix: build fix
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import React from "react";
|
|
import { useRouter } from "next/router";
|
|
import Link from "next/link";
|
|
|
|
export const SettingsSidebar = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const projectLinks: Array<{
|
|
label: string;
|
|
href: string;
|
|
}> = [
|
|
{
|
|
label: "General",
|
|
href: `/${workspaceSlug}/projects/${projectId}/settings`,
|
|
},
|
|
{
|
|
label: "Members",
|
|
href: `/${workspaceSlug}/projects/${projectId}/settings/members`,
|
|
},
|
|
{
|
|
label: "Features",
|
|
href: `/${workspaceSlug}/projects/${projectId}/settings/features`,
|
|
},
|
|
{
|
|
label: "States",
|
|
href: `/${workspaceSlug}/projects/${projectId}/settings/states`,
|
|
},
|
|
{
|
|
label: "Labels",
|
|
href: `/${workspaceSlug}/projects/${projectId}/settings/labels`,
|
|
},
|
|
{
|
|
label: "Integrations",
|
|
href: `/${workspaceSlug}/projects/${projectId}/settings/integrations`,
|
|
},
|
|
{
|
|
label: "Estimates",
|
|
href: `/${workspaceSlug}/projects/${projectId}/settings/estimates`,
|
|
},
|
|
{
|
|
label: "Automations",
|
|
href: `/${workspaceSlug}/projects/${projectId}/settings/automations`,
|
|
},
|
|
];
|
|
return (
|
|
<div className="flex flex-col gap-2 w-80 px-9">
|
|
<span className="text-xs text-custom-sidebar-text-400 font-semibold">SETTINGS</span>
|
|
<div className="flex flex-col gap-1 w-full">
|
|
{projectLinks.map((link) => (
|
|
<Link key={link.href} href={link.href}>
|
|
<a>
|
|
<div
|
|
className={`px-4 py-2 text-sm font-medium rounded-md ${
|
|
(
|
|
link.label === "Import"
|
|
? router.asPath.includes(link.href)
|
|
: router.asPath === link.href
|
|
)
|
|
? "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"
|
|
}`}
|
|
>
|
|
{link.label}
|
|
</div>
|
|
</a>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|