2024-01-31 08:33:52 +00:00
|
|
|
"use client";
|
|
|
|
|
2023-11-18 10:47:01 +00:00
|
|
|
import { FC } from "react";
|
2024-01-31 08:33:52 +00:00
|
|
|
import { usePathname } from "next/navigation";
|
2023-11-18 10:47:01 +00:00
|
|
|
// mobx
|
|
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
// ui
|
|
|
|
import { Breadcrumbs } from "@plane/ui";
|
|
|
|
// icons
|
2023-11-20 15:16:49 +00:00
|
|
|
import { Settings } from "lucide-react";
|
2023-11-18 10:47:01 +00:00
|
|
|
|
2024-01-31 08:33:52 +00:00
|
|
|
export const InstanceHeader: FC = observer(() => {
|
|
|
|
const pathName = usePathname();
|
2023-11-18 10:47:01 +00:00
|
|
|
|
2024-01-31 08:33:52 +00:00
|
|
|
const getHeaderTitle = () => {
|
|
|
|
if (pathName === "/") {
|
|
|
|
return "General";
|
|
|
|
}
|
|
|
|
if (pathName === "/ai") {
|
|
|
|
return "Artificial Intelligence";
|
|
|
|
}
|
|
|
|
if (pathName === "/email") {
|
|
|
|
return "Email";
|
|
|
|
}
|
|
|
|
if (pathName === "/authorization") {
|
|
|
|
return "Authorization";
|
|
|
|
}
|
|
|
|
if (pathName === "/image") {
|
|
|
|
return "Image";
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
const title = getHeaderTitle();
|
2023-11-18 10:47:01 +00:00
|
|
|
|
|
|
|
return (
|
2024-02-15 06:51:19 +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 border-b border-custom-sidebar-border-200 bg-custom-sidebar-background-100 p-4">
|
2023-12-10 10:18:10 +00:00
|
|
|
<div className="flex w-full flex-grow items-center gap-2 overflow-ellipsis whitespace-nowrap">
|
2023-11-25 15:53:50 +00:00
|
|
|
{title && (
|
|
|
|
<div>
|
|
|
|
<Breadcrumbs>
|
|
|
|
<Breadcrumbs.BreadcrumbItem
|
|
|
|
type="text"
|
|
|
|
icon={<Settings className="h-4 w-4 text-custom-text-300" />}
|
|
|
|
label="Settings"
|
2024-01-31 08:33:52 +00:00
|
|
|
link="/"
|
2023-11-25 15:53:50 +00:00
|
|
|
/>
|
|
|
|
<Breadcrumbs.BreadcrumbItem type="text" label={title} />
|
|
|
|
</Breadcrumbs>
|
|
|
|
</div>
|
|
|
|
)}
|
2023-11-18 10:47:01 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|