mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
8d15b9e7de
* 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>
87 lines
3.3 KiB
TypeScript
87 lines
3.3 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { Plus } from "lucide-react";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// hooks
|
|
import useLocalStorage from "hooks/use-local-storage";
|
|
// ui
|
|
import { Breadcrumbs, Button, Tooltip, DiceIcon } from "@plane/ui";
|
|
// helper
|
|
import { renderEmoji } from "helpers/emoji.helper";
|
|
// constants
|
|
import { MODULE_VIEW_LAYOUTS } from "constants/module";
|
|
|
|
export const ModulesListHeader: React.FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
// store
|
|
const { project: projectStore, commandPalette: commandPaletteStore } = useMobxStore();
|
|
const { currentProjectDetails } = projectStore;
|
|
|
|
const { storedValue: modulesView, setValue: setModulesView } = useLocalStorage("modules_view", "grid");
|
|
|
|
return (
|
|
<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-border-200 bg-custom-sidebar-background-100 p-4">
|
|
<div className="flex w-full flex-grow items-center gap-2 overflow-ellipsis whitespace-nowrap">
|
|
<div>
|
|
<Breadcrumbs>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
label={currentProjectDetails?.name ?? "Project"}
|
|
icon={
|
|
currentProjectDetails?.emoji ? (
|
|
renderEmoji(currentProjectDetails.emoji)
|
|
) : currentProjectDetails?.icon_prop ? (
|
|
renderEmoji(currentProjectDetails.icon_prop)
|
|
) : (
|
|
<span className="grid h-7 w-7 flex-shrink-0 place-items-center rounded bg-gray-700 uppercase text-white">
|
|
{currentProjectDetails?.name.charAt(0)}
|
|
</span>
|
|
)
|
|
}
|
|
link={`/${workspaceSlug}/projects/${currentProjectDetails?.id}/issues`}
|
|
/>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
icon={<DiceIcon className="h-4 w-4 text-custom-text-300" />}
|
|
label="Modules"
|
|
/>
|
|
</Breadcrumbs>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<div className="flex items-center gap-1 rounded bg-custom-background-80 p-1">
|
|
{MODULE_VIEW_LAYOUTS.map((layout) => (
|
|
<Tooltip key={layout.key} tooltipContent={layout.title}>
|
|
<button
|
|
type="button"
|
|
className={`group grid h-[22px] w-7 place-items-center overflow-hidden rounded transition-all hover:bg-custom-background-100 ${
|
|
modulesView == layout.key ? "bg-custom-background-100 shadow-custom-shadow-2xs" : ""
|
|
}`}
|
|
onClick={() => setModulesView(layout.key)}
|
|
>
|
|
<layout.icon
|
|
strokeWidth={2}
|
|
className={`h-3.5 w-3.5 ${
|
|
modulesView == layout.key ? "text-custom-text-100" : "text-custom-text-200"
|
|
}`}
|
|
/>
|
|
</button>
|
|
</Tooltip>
|
|
))}
|
|
</div>
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
prependIcon={<Plus />}
|
|
onClick={() => commandPaletteStore.toggleCreateModuleModal(true)}
|
|
>
|
|
Add Module
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|