Skip to content

Commit

Permalink
feat(json-schema): expose API that generates examples from JSON Schema (
Browse files Browse the repository at this point in the history
#9190)

This allows to use the samples API in a static way
without fully instantiating SwaggerUI.

Refs #9188
  • Loading branch information
char0n authored Sep 5, 2023
1 parent edd1153 commit 113996f
Show file tree
Hide file tree
Showing 83 changed files with 292 additions and 88 deletions.
1 change: 1 addition & 0 deletions flavors/swagger-ui-react/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ SwaggerUI.defaultProps = {
oauth2RedirectUrl: undefined,
}

SwaggerUI.System = SwaggerUIConstructor.System
SwaggerUI.presets = SwaggerUIConstructor.presets
SwaggerUI.plugins = SwaggerUIConstructor.plugins

Expand Down
8 changes: 6 additions & 2 deletions src/core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ import ErrPlugin from "./plugins/err"
import FilterPlugin from "./plugins/filter"
import IconsPlugin from "./plugins/icons"
import JSONSchema202012Plugin from "./plugins/json-schema-2020-12"
import JSONSchema202012SamplesPlugin from "./plugins/json-schema-2020-12-samples"
import LayoutPlugin from "./plugins/layout"
import LogsPlugin from "./plugins/logs"
import OpenAPI30Plugin from "./plugins/oas3"
import OpenAPI31Plugin from "./plugins/oas3"
import OnCompletePlugin from "./plugins/on-complete"
import RequestSnippetsPlugin from "./plugins/request-snippets"
import SamplesPlugin from "./plugins/samples"
import JSONSchema5SamplesPlugin from "./plugins/json-schema-5-samples"
import SpecPlugin from "./plugins/spec"
import SwaggerClientPlugin from "./plugins/swagger-client"
import UtilPlugin from "./plugins/util"
Expand Down Expand Up @@ -239,6 +240,8 @@ export default function SwaggerUI(opts) {
return system
}

SwaggerUI.System = System

SwaggerUI.presets = {
base: BasePreset,
apis: ApisPreset,
Expand All @@ -251,14 +254,15 @@ SwaggerUI.plugins = {
Err: ErrPlugin,
Filter: FilterPlugin,
Icons: IconsPlugin,
JSONSchema5Samples: JSONSchema5SamplesPlugin,
JSONSchema202012: JSONSchema202012Plugin,
JSONSchema202012Samples: JSONSchema202012SamplesPlugin,
Layout: LayoutPlugin,
Logs: LogsPlugin,
OpenAPI30: OpenAPI30Plugin,
OpenAPI31: OpenAPI31Plugin,
OnComplete: OnCompletePlugin,
RequestSnippets: RequestSnippetsPlugin,
Samples: SamplesPlugin,
Spec: SpecPlugin,
SwaggerClient: SwaggerClientPlugin,
Util: UtilPlugin,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @prettier
*/

import EncoderRegistry from "core/plugins/json-schema-2020-12/samples-extensions/fn/class/EncoderRegistry"
import EncoderRegistry from "../class/EncoderRegistry"

const registry = new EncoderRegistry()

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/**
* @prettier
*/
import some from "lodash/some"

const shouldStringifyTypesConfig = [
{
when: /json/,
shouldStringifyTypes: ["string"],
},
]
const defaultStringifyTypes = ["object"]
const makeGetJsonSampleSchema =
(getSystem) => (schema, config, contentType, exampleOverride) => {
const { fn } = getSystem()
const res = fn.jsonSchema202012.memoizedSampleFromSchema(
schema,
config,
exampleOverride
)
const resType = typeof res

const typesToStringify = shouldStringifyTypesConfig.reduce(
(types, nextConfig) =>
nextConfig.when.test(contentType)
? [...types, ...nextConfig.shouldStringifyTypes]
: types,
defaultStringifyTypes
)

return some(typesToStringify, (x) => x === resType)
? JSON.stringify(res, null, 2)
: res
}

export default makeGetJsonSampleSchema
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/**
* @prettier
*/
const makeGetSampleSchema =
(getSystem) =>
(schema, contentType = "", config = {}, exampleOverride = undefined) => {
const { fn } = getSystem()

if (typeof schema?.toJS === "function") {
schema = schema.toJS()
}
if (typeof exampleOverride?.toJS === "function") {
exampleOverride = exampleOverride.toJS()
}

if (/xml/.test(contentType)) {
return fn.jsonSchema202012.getXmlSampleSchema(
schema,
config,
exampleOverride
)
}
if (/(yaml|yml)/.test(contentType)) {
return fn.jsonSchema202012.getYamlSampleSchema(
schema,
config,
contentType,
exampleOverride
)
}
return fn.jsonSchema202012.getJsonSampleSchema(
schema,
config,
contentType,
exampleOverride
)
}

export default makeGetSampleSchema
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/**
* @prettier
*/
const makeGetXmlSampleSchema =
(getSystem) => (schema, config, exampleOverride) => {
const { fn } = getSystem()

if (schema && !schema.xml) {
schema.xml = {}
}
if (schema && !schema.xml.name) {
if (
!schema.$$ref &&
(schema.type ||
schema.items ||
schema.properties ||
schema.additionalProperties)
) {
// eslint-disable-next-line quotes
return '<?xml version="1.0" encoding="UTF-8"?>\n<!-- XML example cannot be generated; root element name is undefined -->'
}
if (schema.$$ref) {
let match = schema.$$ref.match(/\S*\/(\S+)$/)
schema.xml.name = match[1]
}
}

return fn.jsonSchema202012.memoizedCreateXMLExample(
schema,
config,
exampleOverride
)
}

export default makeGetXmlSampleSchema
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/**
* @prettier
*/
import YAML, { JSON_SCHEMA } from "js-yaml"

const makeGetYamlSampleSchema =
(getSystem) => (schema, config, contentType, exampleOverride) => {
const { fn } = getSystem()
const jsonExample = fn.jsonSchema202012.getJsonSampleSchema(
schema,
config,
contentType,
exampleOverride
)
let yamlString
try {
yamlString = YAML.dump(
YAML.load(jsonExample),
{
lineWidth: -1, // don't generate line folds
},
{ schema: JSON_SCHEMA }
)
if (yamlString[yamlString.length - 1] === "\n") {
yamlString = yamlString.slice(0, yamlString.length - 1)
}
} catch (e) {
console.error(e)
return "error: could not generate yaml example"
}
return yamlString.replace(/\t/g, " ")
}

export default makeGetYamlSampleSchema
45 changes: 45 additions & 0 deletions src/core/plugins/json-schema-2020-12-samples/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/**
* @prettier
*/
import {
sampleFromSchema,
sampleFromSchemaGeneric,
createXMLExample,
memoizedSampleFromSchema,
memoizedCreateXMLExample,
encoderAPI,
mediaTypeAPI,
formatAPI,
} from "./fn/index"
import makeGetJsonSampleSchema from "./fn/get-json-sample-schema"
import makeGetYamlSampleSchema from "./fn/get-yaml-sample-schema"
import makeGetXmlSampleSchema from "./fn/get-xml-sample-schema"
import makeGetSampleSchema from "./fn/get-sample-schema"

const JSONSchema202012SamplesPlugin = ({ getSystem }) => {
const getJsonSampleSchema = makeGetJsonSampleSchema(getSystem)
const getYamlSampleSchema = makeGetYamlSampleSchema(getSystem)
const getXmlSampleSchema = makeGetXmlSampleSchema(getSystem)
const getSampleSchema = makeGetSampleSchema(getSystem)

return {
fn: {
jsonSchema202012: {
sampleFromSchema,
sampleFromSchemaGeneric,
sampleEncoderAPI: encoderAPI,
sampleFormatAPI: formatAPI,
sampleMediaTypeAPI: mediaTypeAPI,
createXMLExample,
memoizedSampleFromSchema,
memoizedCreateXMLExample,
getJsonSampleSchema,
getYamlSampleSchema,
getXmlSampleSchema,
getSampleSchema,
},
},
}
}

export default JSONSchema202012SamplesPlugin
18 changes: 0 additions & 18 deletions src/core/plugins/json-schema-2020-12/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,6 @@ import Accordion from "./components/Accordion/Accordion"
import ExpandDeepButton from "./components/ExpandDeepButton/ExpandDeepButton"
import ChevronRightIcon from "./components/icons/ChevronRight"
import { upperFirst, hasKeyword, isExpandable } from "./fn"
import {
sampleFromSchema,
sampleFromSchemaGeneric,
createXMLExample,
memoizedSampleFromSchema,
memoizedCreateXMLExample,
encoderAPI,
mediaTypeAPI,
formatAPI,
} from "./samples-extensions/fn/index"
import { JSONSchemaDeepExpansionContext } from "./context"
import { useFn, useConfig, useComponent, useIsExpandedDeeply } from "./hooks"
import { withJSONSchemaContext } from "./hoc"
Expand Down Expand Up @@ -114,14 +104,6 @@ const JSONSchema202012Plugin = () => ({
useConfig,
useComponent,
useIsExpandedDeeply,
sampleFromSchema,
sampleFromSchemaGeneric,
sampleEncoderAPI: encoderAPI,
sampleFormatAPI: formatAPI,
sampleMediaTypeAPI: mediaTypeAPI,
createXMLExample,
memoizedSampleFromSchema,
memoizedCreateXMLExample,
},
},
})
Expand Down
File renamed without changes.
51 changes: 51 additions & 0 deletions src/core/plugins/json-schema-5-samples/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/**
* @prettier
*/
import {
sampleFromSchema,
inferSchema,
sampleFromSchemaGeneric,
createXMLExample,
memoizedCreateXMLExample,
memoizedSampleFromSchema,
} from "./fn/index"
import makeGetJsonSampleSchema from "./fn/get-json-sample-schema"
import makeGetYamlSampleSchema from "./fn/get-yaml-sample-schema"
import makeGetXmlSampleSchema from "./fn/get-xml-sample-schema"
import makeGetSampleSchema from "./fn/get-sample-schema"

const JSONSchema5SamplesPlugin = ({ getSystem }) => {
const getJsonSampleSchema = makeGetJsonSampleSchema(getSystem)
const getYamlSampleSchema = makeGetYamlSampleSchema(getSystem)
const getXmlSampleSchema = makeGetXmlSampleSchema(getSystem)
const getSampleSchema = makeGetSampleSchema(getSystem)

return {
fn: {
jsonSchema5: {
inferSchema,
sampleFromSchema,
sampleFromSchemaGeneric,
createXMLExample,
memoizedSampleFromSchema,
memoizedCreateXMLExample,
getJsonSampleSchema,
getYamlSampleSchema,
getXmlSampleSchema,
getSampleSchema,
},
inferSchema,
sampleFromSchema,
sampleFromSchemaGeneric,
createXMLExample,
memoizedSampleFromSchema,
memoizedCreateXMLExample,
getJsonSampleSchema,
getYamlSampleSchema,
getXmlSampleSchema,
getSampleSchema,
},
}
}

export default JSONSchema5SamplesPlugin
32 changes: 0 additions & 32 deletions src/core/plugins/samples/index.js

This file was deleted.

9 changes: 8 additions & 1 deletion src/core/presets/apis/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ import BasePreset from "core/presets/base"
import OpenAPI30Plugin from "core/plugins/oas3"
import OpenAPI31Plugin from "core/plugins/oas31"
import JSONSchema202012Plugin from "core/plugins/json-schema-2020-12"
import JSONSchema202012SamplesPlugin from "core/plugins/json-schema-2020-12-samples"

export default function PresetApis() {
return [BasePreset, OpenAPI30Plugin, JSONSchema202012Plugin, OpenAPI31Plugin]
return [
BasePreset,
OpenAPI30Plugin,
JSONSchema202012Plugin,
JSONSchema202012SamplesPlugin,
OpenAPI31Plugin,
]
}
Loading

0 comments on commit 113996f

Please sign in to comment.