Files
outline/app/scenes/Document/components/PublicBreadcrumb.tsx
Apoorv Mishra 1c7bb65c7a Document emoji picker (#4338)
Co-authored-by: Tom Moor <tom.moor@gmail.com>
2023-09-03 06:11:14 -07:00

73 lines
1.6 KiB
TypeScript

import * as React from "react";
import { NavigationNode } from "@shared/types";
import Breadcrumb from "~/components/Breadcrumb";
import EmojiIcon from "~/components/Icons/EmojiIcon";
import { MenuInternalLink } from "~/types";
import { sharedDocumentPath } from "~/utils/routeHelpers";
type Props = {
children?: React.ReactNode;
documentId: string;
shareId: string;
sharedTree: NavigationNode | undefined;
};
function pathToDocument(
sharedTree: NavigationNode | undefined,
documentId: string
) {
let path: NavigationNode[] = [];
const traveler = (
nodes: NavigationNode[],
previousPath: NavigationNode[]
) => {
nodes.forEach((childNode) => {
const newPath = [...previousPath, childNode];
if (childNode.id === documentId) {
path = newPath;
return;
}
return traveler(childNode.children, newPath);
});
};
if (sharedTree) {
traveler([sharedTree], []);
}
return path;
}
const PublicBreadcrumb: React.FC<Props> = ({
documentId,
shareId,
sharedTree,
children,
}: Props) => {
const items: MenuInternalLink[] = React.useMemo(
() =>
pathToDocument(sharedTree, documentId)
.slice(0, -1)
.map((item) => ({
...item,
title: item.emoji ? (
<>
<EmojiIcon emoji={item.emoji} /> {item.title}
</>
) : (
item.title
),
type: "route",
to: sharedDocumentPath(shareId, item.url),
})),
[sharedTree, shareId, documentId]
);
return <Breadcrumb items={items}>{children}</Breadcrumb>;
};
export default PublicBreadcrumb;