docs: move edit date to footer (#11667)
* docs: move edit date to footer * fix build error
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user