docs: move edit date to footer (#11667)

* docs: move edit date to footer

* fix build error
This commit is contained in:
Shahed Nasser
2025-02-28 16:27:42 +02:00
committed by GitHub
parent 228b7b608d
commit bf67f69f45
23 changed files with 183 additions and 121 deletions
@@ -4,6 +4,7 @@ import { usePathname } from "next/navigation"
import { useMemo } from "react"
import { EditButton as UiEditButton } from "docs-ui"
import { filesMap } from "../../generated/files-map.mjs"
import { generatedEditDates } from "../../generated/edit-dates.mjs"
const EditButton = () => {
const pathname = usePathname()
@@ -12,11 +13,19 @@ const EditButton = () => {
[pathname]
)
const editDate = useMemo(
() =>
(generatedEditDates as Record<string, string>)[
`app${pathname.replace(/\/$/, "")}/page.mdx`
],
[pathname]
)
if (!filePath) {
return <></>
}
return <UiEditButton filePath={filePath.filePath} />
return <UiEditButton filePath={filePath.filePath} editDate={editDate} />
}
export default EditButton