* fix: Logic error in toast fix: Remove useless component * fix: Logout not clearing all stores * Add icons to notification settings * Add eslint rule to enforce spaced comment * Add eslint rule for arrow-body-style * Add eslint rule to enforce self-closing components * Add menu to api key settings Fix: Deleting webhook subscription does not remove from UI Split webhook subscriptions into active and inactive Styling updates
64 lines
1.4 KiB
TypeScript
64 lines
1.4 KiB
TypeScript
import * as React from "react";
|
|
import { NavigationNode } from "@shared/types";
|
|
import Breadcrumb from "~/components/Breadcrumb";
|
|
import { MenuInternalLink } from "~/types";
|
|
import { sharedDocumentPath } from "~/utils/routeHelpers";
|
|
|
|
type Props = {
|
|
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,
|
|
}) => {
|
|
const items: MenuInternalLink[] = React.useMemo(
|
|
() =>
|
|
pathToDocument(sharedTree, documentId)
|
|
.slice(0, -1)
|
|
.map((item) => ({
|
|
...item,
|
|
type: "route",
|
|
to: sharedDocumentPath(shareId, item.url),
|
|
})),
|
|
[sharedTree, shareId, documentId]
|
|
);
|
|
|
|
return <Breadcrumb items={items} children={children} />;
|
|
};
|
|
|
|
export default PublicBreadcrumb;
|