2023-10-25 10:18:57 +00:00
|
|
|
// ui
|
2024-03-06 13:09:14 +00:00
|
|
|
import { FC } from "react";
|
|
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
import Link from "next/link";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import { ChevronDown, PanelRight } from "lucide-react";
|
2024-02-08 12:19:26 +00:00
|
|
|
import { Breadcrumbs, CustomMenu } from "@plane/ui";
|
2024-03-19 14:38:35 +00:00
|
|
|
import { BreadcrumbLink } from "@/components/common";
|
2024-01-30 09:52:24 +00:00
|
|
|
// components
|
2024-03-19 14:38:35 +00:00
|
|
|
import { PROFILE_ADMINS_TAB, PROFILE_VIEWER_TAB } from "@/constants/profile";
|
|
|
|
import { cn } from "@/helpers/common.helper";
|
|
|
|
import { useApplication, useUser } from "@/hooks/store";
|
2023-11-03 12:31:49 +00:00
|
|
|
|
2024-02-08 12:19:26 +00:00
|
|
|
type TUserProfileHeader = {
|
2024-03-06 13:09:14 +00:00
|
|
|
type?: string | undefined;
|
|
|
|
};
|
2024-02-08 12:19:26 +00:00
|
|
|
|
|
|
|
export const UserProfileHeader: FC<TUserProfileHeader> = observer((props) => {
|
2024-03-06 13:09:14 +00:00
|
|
|
const { type = undefined } = props;
|
2024-02-08 12:19:26 +00:00
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, userId } = router.query;
|
|
|
|
|
|
|
|
const AUTHORIZED_ROLES = [20, 15, 10];
|
|
|
|
const {
|
|
|
|
membership: { currentWorkspaceRole },
|
|
|
|
} = useUser();
|
|
|
|
|
|
|
|
if (!currentWorkspaceRole) return null;
|
|
|
|
|
|
|
|
const isAuthorized = AUTHORIZED_ROLES.includes(currentWorkspaceRole);
|
|
|
|
const tabsList = isAuthorized ? [...PROFILE_VIEWER_TAB, ...PROFILE_ADMINS_TAB] : PROFILE_VIEWER_TAB;
|
|
|
|
|
|
|
|
const { theme: themStore } = useApplication();
|
|
|
|
|
2024-03-06 13:09:14 +00:00
|
|
|
return (
|
2024-03-18 07:20:33 +00:00
|
|
|
<div className="relative z-10 flex h-[3.75rem] w-full flex-shrink-0 flex-row items-center justify-between gap-x-2 gap-y-4 bg-custom-sidebar-background-100 p-4">
|
2024-03-06 13:09:14 +00:00
|
|
|
<div className="flex w-full flex-grow items-center gap-2 overflow-ellipsis whitespace-nowrap">
|
|
|
|
<div className="flex justify-between w-full">
|
|
|
|
<Breadcrumbs>
|
|
|
|
<Breadcrumbs.BreadcrumbItem
|
|
|
|
type="text"
|
|
|
|
link={<BreadcrumbLink href="/profile" label="Activity Overview" />}
|
|
|
|
/>
|
|
|
|
</Breadcrumbs>
|
|
|
|
<div className="flex gap-4 md:hidden">
|
|
|
|
<CustomMenu
|
|
|
|
maxHeight={"md"}
|
|
|
|
className="flex flex-grow justify-center text-custom-text-200 text-sm"
|
|
|
|
placement="bottom-start"
|
|
|
|
customButton={
|
|
|
|
<div className="flex gap-2 items-center px-2 py-1.5 border border-custom-border-400 rounded-md">
|
|
|
|
<span className="flex flex-grow justify-center text-custom-text-200 text-sm">{type}</span>
|
|
|
|
<ChevronDown className="w-4 h-4 text-custom-text-400" />
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
customButtonClassName="flex flex-grow justify-center text-custom-text-200 text-sm"
|
|
|
|
closeOnSelect
|
|
|
|
>
|
|
|
|
<></>
|
|
|
|
{tabsList.map((tab) => (
|
|
|
|
<CustomMenu.MenuItem className="flex items-center gap-2" key={tab.route}>
|
|
|
|
<Link
|
|
|
|
key={tab.route}
|
|
|
|
href={`/${workspaceSlug}/profile/${userId}/${tab.route}`}
|
|
|
|
className="text-custom-text-300 w-full"
|
|
|
|
>
|
|
|
|
{tab.label}
|
|
|
|
</Link>
|
|
|
|
</CustomMenu.MenuItem>
|
|
|
|
))}
|
|
|
|
</CustomMenu>
|
|
|
|
<button
|
|
|
|
className="transition-all block md:hidden"
|
|
|
|
onClick={() => {
|
|
|
|
themStore.toggleProfileSidebar();
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<PanelRight
|
|
|
|
className={cn(
|
|
|
|
"w-4 h-4 block md:hidden",
|
|
|
|
!themStore.profileSidebarCollapsed ? "text-[#3E63DD]" : "text-custom-text-200"
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</button>
|
|
|
|
</div>
|
2024-02-08 12:19:26 +00:00
|
|
|
</div>
|
2023-10-25 10:18:57 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-06 13:09:14 +00:00
|
|
|
);
|
2024-02-08 12:19:26 +00:00
|
|
|
});
|