forked from github/plane
5b0066140f
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
69 lines
1.8 KiB
TypeScript
69 lines
1.8 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;
|
|
showProfileIssuesFilter?: boolean;
|
|
};
|
|
|
|
const viewerTabs = [
|
|
{
|
|
route: "",
|
|
label: "Summary",
|
|
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> = (props) => {
|
|
const { isAuthorized, showProfileIssuesFilter } = props;
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, userId } = router.query;
|
|
|
|
const tabsList = isAuthorized ? [...viewerTabs, ...adminTabs] : viewerTabs;
|
|
|
|
return (
|
|
<div className="sticky -top-0.5 z-10 flex items-center justify-between gap-4 border-b border-custom-border-300 bg-custom-background-100 px-4 sm:px-5 md:static">
|
|
<div className="flex items-center overflow-x-scroll">
|
|
{tabsList.map((tab) => (
|
|
<Link key={tab.route} href={`/${workspaceSlug}/profile/${userId}/${tab.route}`}>
|
|
<span
|
|
className={`flex whitespace-nowrap border-b-2 p-4 text-sm font-medium outline-none ${
|
|
router.pathname === tab.selected
|
|
? "border-custom-primary-100 text-custom-primary-100"
|
|
: "border-transparent"
|
|
}`}
|
|
>
|
|
{tab.label}
|
|
</span>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
{showProfileIssuesFilter && <ProfileIssuesFilter />}
|
|
</div>
|
|
);
|
|
};
|