1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/components/rest/RestReferencePage.tsx
2022-08-08 20:42:59 -04:00

70 lines
2.4 KiB
TypeScript

import React, { useEffect } from 'react'
import cx from 'classnames'
import { DefaultLayout } from 'components/DefaultLayout'
import { MarkdownContent } from 'components/ui/MarkdownContent'
import { Lead } from 'components/ui/Lead'
import { RestOperation } from './RestOperation'
import styles from './RestOperation.module.scss'
import { useAutomatedPageContext } from 'components/context/AutomatedPageContext'
import { Operation } from './types'
import { ClientSideHighlight } from 'components/ClientSideHighlight'
import { ClientSideRedirects } from 'components/ClientSideRedirects'
export type StructuredContentT = {
restOperations: Operation[]
}
export const RestReferencePage = ({ restOperations }: StructuredContentT) => {
const { title, intro, renderedPage } = useAutomatedPageContext()
// Scrollable code blocks in our REST API docs and elsewhere aren't accessible
// via keyboard navigation without setting tabindex="0". But we don't want to set
// this attribute on every `<pre>` code block, only the ones where there are scroll
// bars because the content isn't all visible.
useEffect(() => {
const codeBlocks = document.querySelectorAll<HTMLPreElement>('pre')
codeBlocks.forEach((codeBlock) => {
if (
codeBlock.scrollWidth > codeBlock.clientWidth ||
codeBlock.scrollHeight > codeBlock.clientHeight
) {
codeBlock.setAttribute('tabindex', '0')
}
})
}, [])
return (
<DefaultLayout>
{/* Doesn't matter *where* this is included because it will
never render anything. It always just return null. */}
<ClientSideRedirects />
<ClientSideHighlight />
<div
className={cx(styles.restOperation, 'px-3 px-md-6 my-4 container-xl')}
data-search="article-body"
>
<h1 className="mb-3">{title}</h1>
{intro && (
<Lead data-testid="lead" data-search="lead" className="markdown-body">
{intro}
</Lead>
)}
{renderedPage && <MarkdownContent className="pt-3 pb-4">{renderedPage}</MarkdownContent>}
{restOperations.length > 0 && (
<MarkdownContent className="pt-3 pb-4">
{restOperations.map((operation) => (
<RestOperation
key={`${operation.title}-${operation.category}-${operation.subcategory}`}
operation={operation}
/>
))}
</MarkdownContent>
)}
</div>
</DefaultLayout>
)
}