mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
06a7bdffd7
* fix: removed parameters `workspace`, `project` & `id` from the patch calls * feat: modified components to work with new pages hooks * feat: modified stores * feat: modified initial component * feat: component implementation changes * feat: store implementation * refactor pages store * feat: updated page store to perform async operations faster * fix: added types for archive and restore pages * feat: implemented archive and restore pages * fix: page creating twice when form submit * feat: updated create-page-modal * feat: updated page form and delete page modal * fix: create page modal not updating isSubmitted prop * feat: list items and list view refactored for pages * feat: refactored project-page-store for inserting computed pagesids * chore: renamed project pages hook * feat: added favourite pages implementation * fix: implemented store for archived pages * fix: project page store for recent pages * fix: issue suggestions breaking pages * fix: issue embeds and suggestions breaking * feat: implemented page store and project page store in page editor * chore: lock file changes * fix: modified page details header to catch mobx updates instead of swr calls * fix: modified usePage hook to fetch page details when reloaded directly on page * fix: fixed deleting pages * fix: removed render on props changed * feat: implemented page store inside page details * fix: role change in pages archives * fix: rerending of pages on tab change * fix: reimplementation of peek overview inside pages * chore: typo fixes * fix: issue suggestion widget selecting wrong issues on click * feat: added labels in pages * fix: deepsource errors fixed * fix: build errors * fix: review comments * fix: removed swr hooks from the `usePage` store hook and refactored `issueEmbed` hook * fix: resolved reviewed comments --------- Co-authored-by: Rahul R <rahulr@Rahuls-MacBook-Pro.local>
77 lines
2.7 KiB
TypeScript
77 lines
2.7 KiB
TypeScript
import { FC } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { FileText, Plus } from "lucide-react";
|
|
// hooks
|
|
import { useApplication, usePage, useProject } from "hooks/store";
|
|
// ui
|
|
import { Breadcrumbs, Button } from "@plane/ui";
|
|
// helpers
|
|
import { renderEmoji } from "helpers/emoji.helper";
|
|
|
|
export interface IPagesHeaderProps {
|
|
showButton?: boolean;
|
|
}
|
|
|
|
export const PageDetailsHeader: FC<IPagesHeaderProps> = observer((props) => {
|
|
const { showButton = false } = props;
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, pageId } = router.query;
|
|
|
|
const { commandPalette: commandPaletteStore } = useApplication();
|
|
const { currentProjectDetails } = useProject();
|
|
|
|
const pageDetails = usePage(pageId as string);
|
|
|
|
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={<FileText className="h-4 w-4 text-custom-text-300" />}
|
|
label="Pages"
|
|
link={`/${workspaceSlug}/projects/${currentProjectDetails?.id}/pages`}
|
|
/>
|
|
<Breadcrumbs.BreadcrumbItem
|
|
type="text"
|
|
icon={<FileText className="h-4 w-4 text-custom-text-300" />}
|
|
label={pageDetails?.name ?? "Page"}
|
|
/>
|
|
</Breadcrumbs>
|
|
</div>
|
|
</div>
|
|
{showButton && (
|
|
<div className="flex items-center gap-2">
|
|
<Button
|
|
variant="primary"
|
|
prependIcon={<Plus />}
|
|
size="sm"
|
|
onClick={() => commandPaletteStore.toggleCreatePageModal(true)}
|
|
>
|
|
Create Page
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|