-
-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
3,673 additions
and
26 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { basename } from 'path'; | ||
import { useEffect, useState } from 'react'; | ||
import { Editor } from './Editor'; | ||
|
||
export const CodegenOutput = ({ outputArray, editorProps, error, height }) => { | ||
const [index, setIndex] = useState(0); | ||
const editorContent = error || outputArray?.[index].content || ''; | ||
|
||
useEffect(() => { | ||
setIndex(0); | ||
}, [outputArray]); | ||
|
||
return ( | ||
<> | ||
<div> | ||
<div> | ||
{outputArray?.map((outputItem, i) => ( | ||
<div onClick={() => setIndex(i)} key={outputItem.filename}> | ||
{basename(outputItem.filename)} | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
<Editor {...editorProps} value={editorContent} height={height} /> | ||
</> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import MonacoEditor from '@monaco-editor/react'; | ||
|
||
const canUseDOM = typeof window !== 'undefined'; | ||
|
||
export const Editor = ({ value, lang, readOnly, onEdit, height = 500 }) => { | ||
if (!canUseDOM) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<MonacoEditor | ||
height={height} | ||
language={lang} | ||
theme="vs-dark" | ||
value={value} | ||
options={{ | ||
readOnly, | ||
minimap: { | ||
enabled: false, | ||
}, | ||
}} | ||
onChange={onEdit} | ||
/> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,216 @@ | ||
import dedent from 'dedent'; | ||
|
||
const SCHEMA = dedent(/* YAML */ ` | ||
openapi: '3.0.0' | ||
info: | ||
version: 1.0.0 | ||
title: Swagger Petstore | ||
license: | ||
name: MIT | ||
servers: | ||
- url: http://petstore.swagger.io/v1 | ||
paths: | ||
/pets: | ||
get: | ||
summary: List all pets | ||
operationId: listPets | ||
tags: | ||
- pets | ||
parameters: | ||
- name: limit | ||
in: query | ||
description: How many items to return at one time (max 100) | ||
required: false | ||
schema: | ||
type: string | ||
responses: | ||
'200': | ||
description: A paged array of pets | ||
headers: | ||
x-next: | ||
description: A link to the next page of responses | ||
schema: | ||
type: string | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Pets' | ||
default: | ||
description: unexpected error | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Error' | ||
post: | ||
summary: Create a pet | ||
operationId: createPets | ||
tags: | ||
- pets | ||
requestBody: | ||
required: true | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
required: | ||
- 'name' | ||
- 'tag' | ||
properties: | ||
name: | ||
type: string | ||
tag: | ||
type: string | ||
responses: | ||
'200': | ||
description: Created Pet | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Pet' | ||
default: | ||
description: unexpected error | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Error' | ||
/pets/{petId}: | ||
get: | ||
summary: Info for a specific pet | ||
operationId: showPetById | ||
tags: | ||
- pets | ||
parameters: | ||
- name: petId | ||
in: path | ||
required: true | ||
description: The id of the pet to retrieve | ||
schema: | ||
type: string | ||
- name: testId | ||
in: path | ||
required: true | ||
description: The id of the pet to retrieve | ||
schema: | ||
type: string | ||
responses: | ||
'200': | ||
description: Expected response to a valid request | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Pet' | ||
default: | ||
description: unexpected error | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Error' | ||
components: | ||
schemas: | ||
Pet: | ||
type: object | ||
required: | ||
- id | ||
- name | ||
oneOf: | ||
- $ref: '#/components/schemas/Dog' | ||
- $ref: '#/components/schemas/Cat' | ||
properties: | ||
'@id': | ||
type: string | ||
format: iri-reference | ||
id: | ||
type: integer | ||
format: int64 | ||
name: | ||
type: string | ||
tag: | ||
type: string | ||
email: | ||
type: string | ||
format: email | ||
callingCode: | ||
type: string | ||
enum: ['+33', '+420', '+33'] # intentional duplicated value | ||
country: | ||
type: string | ||
enum: ["People's Republic of China", 'Uruguay'] | ||
Dog: | ||
type: object | ||
oneOf: | ||
- $ref: '#/components/schemas/Labradoodle' | ||
- $ref: '#/components/schemas/Dachshund' | ||
required: ['type'] | ||
properties: | ||
barksPerMinute: | ||
type: integer | ||
type: | ||
type: string | ||
enum: | ||
- dog | ||
discriminator: | ||
propertyName: breed | ||
mapping: | ||
Labradoodle: '#/components/schemas/Labradoodle' | ||
Dachshund: '#/components/schemas/Dachshund' | ||
Labradoodle: | ||
type: object | ||
required: ['cuteness'] | ||
properties: | ||
cuteness: | ||
type: integer | ||
Dachshund: | ||
type: object | ||
required: ['length'] | ||
properties: | ||
length: | ||
type: integer | ||
Cat: | ||
type: object | ||
required: ['type'] | ||
properties: | ||
petsRequested: | ||
type: integer | ||
type: | ||
type: string | ||
enum: | ||
- cat | ||
Pets: | ||
type: array | ||
items: | ||
$ref: '#/components/schemas/Pet' | ||
Error: | ||
type: object | ||
required: | ||
- code | ||
- message | ||
properties: | ||
code: | ||
type: integer | ||
format: int32 | ||
message: | ||
type: string | ||
`); | ||
|
||
export const EXAMPLES = { | ||
ReactQuery: [ | ||
{ | ||
name: 'Basic', | ||
description: `This is the simplest example of generating output based on a specification.`, | ||
tags: [], | ||
config: dedent(/* JSON */ `{ | ||
"output": { | ||
"client": "react-query", | ||
"target": "./src/generated/endpoints.ts", | ||
"mock": true | ||
}, | ||
"input": { | ||
"target": "./schema.yaml" | ||
} | ||
} | ||
`), | ||
schema: SCHEMA, | ||
}, | ||
], | ||
}; |
Oops, something went wrong.
c066483
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
orval – ./
orval.vercel.app
orval-anymaniax.vercel.app
orval.dev
orval-git-master-anymaniax.vercel.app
www.orval.dev