/* ============================================================================ * Copyright (c) Palo Alto Networks * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * ========================================================================== */ import React from "react"; import { translate } from "@docusaurus/Translate"; import ApiTabs from "@theme/ApiTabs"; import Details from "@theme/Details"; import Markdown from "@theme/Markdown"; import ResponseHeaders from "@theme/ResponseHeaders"; import ResponseSchema from "@theme/ResponseSchema"; import TabItem from "@theme/TabItem"; import { OPENAPI_STATUS_CODES } from "@theme/translationIds"; import type { ApiItem } from "docusaurus-plugin-openapi-docs/src/types"; interface Props { id?: string; label?: string; responses: ApiItem["responses"]; } const StatusCodes: React.FC = ({ label, id, responses }: any) => { if (!responses) return null; const codes = Object.keys(responses); if (codes.length === 0) return null; return ( {codes.map((code) => { const response = responses[code]; const responseHeaders = response.headers; return ( // @ts-ignore
{response.description && (
{response.description}
)}
{responseHeaders && (
{translate({ id: OPENAPI_STATUS_CODES.RESPONSE_HEADERS, message: "Response Headers", })} } >
)}
); })}
); }; export default StatusCodes;