mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 08:56:46 -04:00
be9590c890
* set up multiple themes in studio * set up multiple themes in studio * set up multiple themes in docs and www * update all resolvedTheme to also include deep-dark * update all resolvedTheme checks to also include deep-dark * update tailwind.config.js tokens * update tailwind.config.js tokens * update leftover scale12 token * update if resolvedTheme _doesn't_ include 'dark' * update more styling tokens * add dynamic themes to CmdK * fix nav and footer for multi theme * add data-theme selector output to transformTokens.js * update code-hike.css to target data-theme css * update tailwindcss to ^3.3.5 * ThemeImage with light and dark src for www and docs * add brand-button styling token * update old dark theme boolean * update old dark theme boolean * make homepage product visuals themeable * update product page themed images * update badge green with brand * fix roles list appearance * fix auth widget in auth page * update more dark logic * update more dark logic * add button default bg and border * update pricing page theme styling * clean up Themeimage * remove forceDark in homepage * update dark:border-dark occurrences * update dark:border-dark occurrences * fix dark mode base colors * remove foreground-strong * fix notification badge bg * remove some dark: selectors * update dark: selectors * update code-hike deep dark bg color * fix comment typo * update border-button-hover token * fix customer story logo * remove some more dark: selectors * restore forceDark in www homepage * fix auth react icon * fix homepage product visuals * remove theme * add brand-link token * fix checkbox bg * npm install * more visible EntityListItem active bg * fix --background-alternative-default css vars --------- Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com>
116 lines
4.4 KiB
TypeScript
116 lines
4.4 KiB
TypeScript
import { CodeBlock, Tabs } from 'ui'
|
|
import Param from '~/components/Params'
|
|
import RefSubLayout from '~/layouts/ref/RefSubLayout'
|
|
|
|
const ApiOperationSection = (props) => {
|
|
const operation = props.spec.operations.find((x: any) => x.operationId === props.funcData.id)
|
|
|
|
// gracefully return nothing if function does not exist
|
|
if (!operation) return <></>
|
|
|
|
return (
|
|
<RefSubLayout.Section
|
|
key={operation.operationId}
|
|
slug={operation.operationId}
|
|
title={operation.summary}
|
|
id={operation.operationId}
|
|
scrollSpyHeader={true}
|
|
monoFont={false}
|
|
>
|
|
<RefSubLayout.Details>
|
|
<div className="mt-4">
|
|
<code className="text-md flex gap-4 text-md text-foreground-lighter break-all">
|
|
<span
|
|
className="
|
|
uppercase
|
|
whitespace-nowrap
|
|
bg-foreground text-background
|
|
flex items-center justify-center
|
|
rounded-full font-mono font-medium text-xs px-2 py-0.5"
|
|
>
|
|
{operation.operation}
|
|
</span>
|
|
{operation.path}
|
|
</code>
|
|
</div>
|
|
<div className="prose py-4">
|
|
<p>{operation.description}</p>
|
|
</div>
|
|
{/* Path Parameters */}
|
|
{operation.parameters &&
|
|
operation.parameters.filter((parameter) => parameter.in === 'path').length > 0 && (
|
|
<div className="not-prose mt-12">
|
|
<h5 className="mb-3 text-base text-foreground">Path Parameters</h5>
|
|
<ul className="mt-4">
|
|
{operation.parameters &&
|
|
operation.parameters
|
|
.filter((parameter: any) => parameter.in === 'path')
|
|
.map((parameter: any) => (
|
|
<Param {...parameter} isOptional={!parameter.required}></Param>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
)}
|
|
|
|
{/* Query Parameters */}
|
|
{operation.parameters &&
|
|
operation.parameters.filter((parameter) => parameter.in === 'query').length > 0 && (
|
|
<div className="not-prose mt-12">
|
|
<h5 className="mb-3 text-base text-foreground">Query Parameters</h5>
|
|
<ul className="mt-4">
|
|
{operation.parameters &&
|
|
operation.parameters
|
|
.filter((parameter: any) => parameter.in === 'query')
|
|
.map((parameter: any) => (
|
|
<Param {...parameter} isOptional={!parameter.required}></Param>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
)}
|
|
|
|
{/* Header Parameters */}
|
|
{operation.parameters &&
|
|
operation.parameters.filter((parameter) => parameter.in === 'header').length > 0 && (
|
|
<div className="not-prose mt-12">
|
|
<h5 className="mb-3 text-base text-foreground">Query Parameters</h5>
|
|
<ul className="mt-4">
|
|
{operation.parameters &&
|
|
operation.parameters
|
|
.filter((parameter: any) => parameter.in === 'header')
|
|
.map((parameter: any) => (
|
|
<Param {...parameter} isOptional={!parameter.required}></Param>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
)}
|
|
</RefSubLayout.Details>
|
|
{operation.responseList && operation.responseList.length > 0 && (
|
|
<RefSubLayout.Examples>
|
|
<h5 className="mb-3 text-base text-foreground">Responses</h5>
|
|
<Tabs
|
|
scrollable
|
|
size="small"
|
|
type="underlined"
|
|
defaultActiveId={operation.responseList[0].responseCode}
|
|
queryGroup="response-status"
|
|
>
|
|
{operation.responseList.map((response: any) => (
|
|
<Tabs.Panel id={response.responseCode} label={response.responseCode}>
|
|
<p className="text-background">{response.description}</p>
|
|
{response?.content && response?.content['application/json'] && (
|
|
<div className="mt-8">
|
|
<CodeBlock language="bash" className="relative">
|
|
{JSON.stringify(response.content['application/json'], null, 2)}
|
|
</CodeBlock>
|
|
</div>
|
|
)}
|
|
</Tabs.Panel>
|
|
))}
|
|
</Tabs>
|
|
</RefSubLayout.Examples>
|
|
)}
|
|
</RefSubLayout.Section>
|
|
)
|
|
}
|
|
export default ApiOperationSection
|