* configured base paths + added development banner * fix typelist site url * added navbar and sidebar badges * configure algolia filters * remove AI assistant * remove unused imports * change navbar text and badge * lint fixes * fix build error * add to api reference rewrites * fix build error * fix build errors in user-guide * fix feedback component * add parent title to pagination * added breadcrumbs component * remove user-guide links * resolve todos * fix details about authentication * change documentation title * lint content
42 lines
945 B
TypeScript
42 lines
945 B
TypeScript
"use client"
|
|
|
|
import {
|
|
Feedback as UiFeedback,
|
|
FeedbackProps as UiFeedbackProps,
|
|
formatReportLink,
|
|
useIsBrowser,
|
|
} from "docs-ui"
|
|
import { usePathname } from "next/navigation"
|
|
import { config } from "../../config"
|
|
import { basePathUrl } from "../../utils/base-path-url"
|
|
import { useMemo } from "react"
|
|
|
|
type FeedbackProps = Omit<UiFeedbackProps, "event" | "pathName">
|
|
|
|
const Feedback = (props: FeedbackProps) => {
|
|
const pathname = usePathname()
|
|
const isBrowser = useIsBrowser()
|
|
|
|
const feedbackPathname = useMemo(() => basePathUrl(pathname), [pathname])
|
|
const reportLink = useMemo(
|
|
() =>
|
|
formatReportLink(
|
|
config.titleSuffix || "",
|
|
isBrowser ? document.title : ""
|
|
),
|
|
[isBrowser]
|
|
)
|
|
|
|
return (
|
|
<UiFeedback
|
|
event="survey"
|
|
pathName={feedbackPathname}
|
|
reportLink={reportLink}
|
|
question="Was this chapter helpful?"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default Feedback
|