import { Route, createBrowserRouter, createRoutesFromElements, RouterProvider, redirect, } from "react-router-dom"; import MainLayout from "./MainLayout"; import Home from "./Home"; import DocsLayout from "./DocsLayout"; import ErrorBoundary from "./ErrorHandler"; import DynamicLayout from "./DynamicLayout"; import { Code } from "./components/LoadedCode"; import DocsIntroduction, { tableOfContents as docsIntroductionToc, } from "./docs/introduction.mdx"; import DocsInstallation, { tableOfContents as docsInstallationToc, } from "./docs/installation.mdx"; import { HeadingContext } from "./HeadingContext"; import React, { ForwardedRef, forwardRef, useContext, useEffect, useRef, } from "react"; function buildThresholdList() { const thresholds: number[] = []; const numSteps = 20; for (let i = 1.0; i <= numSteps; i++) { const ratio = i / numSteps; thresholds.push(ratio); } thresholds.push(0); return thresholds; } function HashedHeaders(Level: `h${1 | 2 | 3 | 4 | 5 | 6}`) { return (prop: any, ref: ForwardedRef) => { const internalRef = useRef(null); const [_, setActiveHeadings] = useContext(HeadingContext); useEffect(() => { const observer = new IntersectionObserver( ([{ target, intersectionRatio }]) => { if (intersectionRatio > 0.5) { setActiveHeadings((prev) => [...prev, target.id]); } else { setActiveHeadings((prev) => prev.filter((id) => id !== target.id)); } }, { root: null, rootMargin: "0px", threshold: buildThresholdList(), } ); if (internalRef.current) { observer.observe(internalRef.current); } return () => { observer.disconnect(); }; }, [internalRef.current]); return ( { internalRef.current = el; if (typeof ref === "function") { ref(el); } else if (el && ref) { ref.current = el; } }} /> ); }; } const overrideComponents = { pre: forwardRef((props, ref) => { const { props: { children, className } } = React.cloneElement(React.Children.only(props.children)); const language = (typeof className !== "string" || !className.includes("language-") ? "typescript" : /language-([a-z]+)/.exec(className)![1]) ?? "typescript" return {children as string}; }), code: forwardRef((props: any, ref) => ( )), table: forwardRef((props: any, ref) => (
)), h1: forwardRef(HashedHeaders("h1")), h2: forwardRef(HashedHeaders("h2")), h3: forwardRef(HashedHeaders("h3")), h4: forwardRef(HashedHeaders("h4")), h5: forwardRef(HashedHeaders("h5")), h6: forwardRef(HashedHeaders("h6")), }; const docsModules = import.meta.glob("./docs/components/*.mdx"); const routes = Object.keys(docsModules).map((path) => { const sfPath = path.split("/").pop()?.replace(".mdx", ""); return ( { const { default: C, tableOfContents } = await import( `./docs/components/${sfPath}.mdx` ); return { Component: () => ( ), }; }} /> ); }); const router = createBrowserRouter( createRoutesFromElements( } errorElement={}> } /> }> redirect("/docs/introduction")} /> } /> } /> redirect( `/docs/components/${Object.keys(docsModules)[0] .split("/") .pop() ?.replace(".mdx", "")}` ) } /> {routes} ) ); function App() { return ; } export default App;