import { FC } from "react"; import { observer } from "mobx-react"; import { useRouter } from "next/router"; import { FileText } from "lucide-react"; // hooks // ui import { Breadcrumbs, Button } from "@plane/ui"; // helpers import { BreadcrumbLink } from "@/components/common"; // components import { ProjectLogo } from "@/components/project"; import { useCommandPalette, usePage, useProject } from "@/hooks/store"; export interface IPagesHeaderProps { showButton?: boolean; } export const PageDetailsHeader: FC = observer((props) => { const { showButton = false } = props; // router const router = useRouter(); const { workspaceSlug, pageId } = router.query; // store hooks const { toggleCreatePageModal } = useCommandPalette(); const { currentProjectDetails } = useProject(); const { name } = usePage(pageId?.toString() ?? ""); return (
) } /> } /> } /> } /> } /> } />
{showButton && (
)}
); });