docs: fix api-reference with proxy (#7952)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import "../../globals.css"
|
||||
import "../../../globals.css"
|
||||
import Navbar from "@/components/Navbar"
|
||||
import Providers from "../../../providers"
|
||||
import Providers from "../../../../providers"
|
||||
import { WideLayout } from "docs-ui"
|
||||
import { Inter, Roboto_Mono } from "next/font/google"
|
||||
import clsx from "clsx"
|
||||
|
Before Width: | Height: | Size: 253 KiB After Width: | Height: | Size: 253 KiB |
@@ -1,7 +1,7 @@
|
||||
import AreaProvider from "@/providers/area"
|
||||
import AdminContentV2 from "../../_mdx/admin.mdx"
|
||||
import StoreContentV2 from "../../_mdx/store.mdx"
|
||||
import ClientLibrariesV2 from "../../_mdx/client-libraries.mdx"
|
||||
import AdminContentV2 from "../../../_mdx/admin.mdx"
|
||||
import StoreContentV2 from "../../../_mdx/store.mdx"
|
||||
import ClientLibrariesV2 from "../../../_mdx/client-libraries.mdx"
|
||||
import Section from "@/components/Section"
|
||||
import Tags from "@/components/Tags"
|
||||
import type { Area } from "@/types/openapi"
|
||||
|
Before Width: | Height: | Size: 253 KiB After Width: | Height: | Size: 253 KiB |
@@ -1,12 +1,12 @@
|
||||
import OpenAPIParser from "@readme/openapi-parser"
|
||||
import algoliasearch from "algoliasearch"
|
||||
import type { ExpandedDocument, Operation } from "../../../types/openapi"
|
||||
import type { ExpandedDocument, Operation } from "../../../../types/openapi"
|
||||
import path from "path"
|
||||
import getPathsOfTag from "../../../utils/get-paths-of-tag"
|
||||
import getSectionId from "../../../utils/get-section-id"
|
||||
import getPathsOfTag from "../../../../utils/get-paths-of-tag"
|
||||
import getSectionId from "../../../../utils/get-section-id"
|
||||
import { NextResponse } from "next/server"
|
||||
import { JSDOM } from "jsdom"
|
||||
import getUrl from "../../../utils/get-url"
|
||||
import getUrl from "../../../../utils/get-url"
|
||||
import { capitalize } from "docs-ui"
|
||||
|
||||
export async function GET() {
|
||||
@@ -1,9 +1,9 @@
|
||||
import { NextResponse } from "next/server"
|
||||
import { SchemaObject } from "../../../types/openapi"
|
||||
import { SchemaObject } from "../../../../types/openapi"
|
||||
import path from "path"
|
||||
import { existsSync, promises as fs } from "fs"
|
||||
import { parseDocument } from "yaml"
|
||||
import dereference from "../../../utils/dereference"
|
||||
import dereference from "../../../../utils/dereference"
|
||||
|
||||
export async function GET(request: Request) {
|
||||
const { searchParams } = new URL(request.url)
|
||||
@@ -9,7 +9,11 @@ const DownloadFull = () => {
|
||||
|
||||
return (
|
||||
<Button variant="secondary">
|
||||
<Link href={`/api/download/${area}`} download target="_blank">
|
||||
<Link
|
||||
href={`${process.env.NEXT_PUBLIC_BASE_PATH}/download/${area}`}
|
||||
download
|
||||
target="_blank"
|
||||
>
|
||||
Download openapi.yaml
|
||||
</Link>
|
||||
</Button>
|
||||
|
||||
@@ -31,8 +31,8 @@ const Navbar = () => {
|
||||
return (
|
||||
<UiNavbar
|
||||
logo={{
|
||||
light: basePathUrl("/images/logo-icon.png"),
|
||||
dark: basePathUrl("/images/logo-icon-dark.png"),
|
||||
light: "/images/logo-icon.png",
|
||||
dark: "/images/logo-icon-dark.png",
|
||||
}}
|
||||
items={navbarItems}
|
||||
mobileMenuButton={{
|
||||
|
||||
@@ -43,7 +43,7 @@ const TagPaths = ({ tag, className }: TagPathsProps) => {
|
||||
paths: PathsObject
|
||||
}>(
|
||||
!Object.keys(paths).length
|
||||
? basePathUrl(`/api/tag?tagName=${tagSlugName}&area=${area}`)
|
||||
? basePathUrl(`/tag?tagName=${tagSlugName}&area=${area}`)
|
||||
: null,
|
||||
swrFetcher,
|
||||
{
|
||||
|
||||
@@ -58,7 +58,7 @@ const TagSection = ({ tag }: TagSectionProps) => {
|
||||
}>(
|
||||
tag["x-associatedSchema"]
|
||||
? basePathUrl(
|
||||
`/api/schema?name=${tag["x-associatedSchema"].$ref}&area=${area}`
|
||||
`/schema?name=${tag["x-associatedSchema"].$ref}&area=${area}`
|
||||
)
|
||||
: null,
|
||||
swrFetcher,
|
||||
|
||||
@@ -36,7 +36,7 @@ const Tags = () => {
|
||||
|
||||
const { data } = useSWR<ExpandedDocument>(
|
||||
loadData && !baseSpecs
|
||||
? basePathUrl(`/api/base-specs?area=${area}&expand=${expand}`)
|
||||
? basePathUrl(`/base-specs?area=${area}&expand=${expand}`)
|
||||
: null,
|
||||
swrFetcher,
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@ import bundleAnalyzer from "@next/bundle-analyzer"
|
||||
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
basePath: process.env.NEXT_PUBLIC_BASE_PATH || "/v2",
|
||||
// basePath: process.env.NEXT_PUBLIC_BASE_PATH || "/v2",
|
||||
async rewrites() {
|
||||
return {
|
||||
fallback: [
|
||||
|
||||
@@ -48,7 +48,7 @@ const SearchProvider = ({ children }: SearchProviderProps) => {
|
||||
},
|
||||
],
|
||||
checkInternalPattern: new RegExp(
|
||||
`^${config.baseUrl}${basePathUrl("/api/(admin|store)")}`
|
||||
`^${config.baseUrl}${basePathUrl(`/(admin|store)`)}`
|
||||
),
|
||||
filterOptions: searchFiltersV2,
|
||||
}}
|
||||
|
||||
@@ -2,5 +2,5 @@ import { config } from "../config"
|
||||
import basePathUrl from "./base-path-url"
|
||||
|
||||
export default function getUrl(area: string, tagName?: string): string {
|
||||
return `${config.baseUrl}${basePathUrl(`/api/${area}#${tagName}`)}`
|
||||
return `${config.baseUrl}${basePathUrl(`/${area}#${tagName}`)}`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user