mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
cea39c758e
* chore: layout refactor * fix: profile auth issue * chore: project setting layout refactor * chore: workspace layout refactor * chore: profile layout refactor * chore: layout import refactor
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
import Link from "next/link";
|
|
|
|
// components
|
|
import { ProfileIssuesFilter } from "components/profile";
|
|
|
|
type Props = {
|
|
isAuthorized: boolean;
|
|
};
|
|
|
|
const viewerTabs = [
|
|
{
|
|
route: "",
|
|
label: "Overview",
|
|
selected: "/[workspaceSlug]/profile/[userId]",
|
|
},
|
|
];
|
|
|
|
const adminTabs = [
|
|
{
|
|
route: "assigned",
|
|
label: "Assigned",
|
|
selected: "/[workspaceSlug]/profile/[userId]/assigned",
|
|
},
|
|
{
|
|
route: "created",
|
|
label: "Created",
|
|
selected: "/[workspaceSlug]/profile/[userId]/created",
|
|
},
|
|
{
|
|
route: "subscribed",
|
|
label: "Subscribed",
|
|
selected: "/[workspaceSlug]/profile/[userId]/subscribed",
|
|
},
|
|
];
|
|
|
|
export const ProfileNavbar: React.FC<Props> = ({ isAuthorized }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, userId } = router.query;
|
|
|
|
const tabsList = isAuthorized ? [...viewerTabs, ...adminTabs] : viewerTabs;
|
|
|
|
return (
|
|
<div className="sticky -top-0.5 z-[1] md:static px-4 sm:px-5 flex items-center justify-between gap-4 bg-custom-background-100 border-b border-custom-border-300">
|
|
<div className="flex items-center overflow-x-scroll">
|
|
{tabsList.map((tab) => (
|
|
<Link key={tab.route} href={`/${workspaceSlug}/profile/${userId}/${tab.route}`}>
|
|
<a
|
|
className={`border-b-2 p-4 text-sm font-medium outline-none whitespace-nowrap ${
|
|
router.pathname === tab.selected
|
|
? "border-custom-primary-100 text-custom-primary-100"
|
|
: "border-transparent"
|
|
}`}
|
|
>
|
|
{tab.label}
|
|
</a>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
<ProfileIssuesFilter />
|
|
</div>
|
|
);
|
|
};
|