import { HeadingComp, HeadingThreeComp, SubheadingComp } from "src/ui/components/heading-component"; import { IMarking } from "src/types/editor-types"; import { Editor } from "@tiptap/react"; import { scrollSummary } from "src/utils/editor-summary-utils"; interface ContentBrowserProps { editor: Editor; markings: IMarking[]; setSidePeekVisible?: (sidePeekState: boolean) => void; } export const ContentBrowser = (props: ContentBrowserProps) => { const { editor, markings, setSidePeekVisible } = props; const handleOnClick = (marking: IMarking) => { scrollSummary(editor, marking); if (setSidePeekVisible) setSidePeekVisible(false); } return (

Table of Contents

{markings.length !== 0 ? ( markings.map((marking) => marking.level === 1 ? ( handleOnClick(marking)} heading={marking.text} /> ) : marking.level === 2 ? ( handleOnClick(marking)} subHeading={marking.text} /> ) : ( handleOnClick(marking)} /> ) ) ) : (

Headings will be displayed here for navigation

)}
); };