-
Notifications
You must be signed in to change notification settings - Fork 21
feat(parser-adapter-asyncapi-yaml-3): add package for parser adapter … #5047
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
fcb93c7
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 9d93551
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 9d1f4d1
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 5892e12
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 2d7f140
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 1c7f8f8
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 01dfefa
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 309b688
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 9654df8
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak aca611b
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 4f0f6a3
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak b3f46d3
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 92ba1f6
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak d0607d6
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 60f2676
feat(parser-adapter-asyncapi-yaml-3): parser
lukaszzazulak 7eb862e
Merge branch 'main' into feat/async-api3-parser-adapter-yaml
lukaszzazulak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,8 @@ | ||
| /**/*.js | ||
| /**/*.mjs | ||
| /**/*.cjs | ||
| /dist | ||
| /types | ||
| /config | ||
| /.nyc_output | ||
| /node_modules |
This file contains hidden or 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,7 @@ | ||
| /src/**/*.mjs | ||
| /src/**/*.cjs | ||
| /test/**/*.mjs | ||
| /dist | ||
| /types | ||
| /NOTICE | ||
| /swagger-api-apidom-parser-adapter-asyncapi-yaml-3-*.tgz |
This file contains hidden or 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,8 @@ | ||
| { | ||
| "extensions": ["ts"], | ||
| "loader": "ts-node/esm", | ||
| "recursive": true, | ||
| "spec": "test/**/*.ts", | ||
| "file": ["test/mocha-bootstrap.ts"], | ||
| "ignore": ["test/perf/**/*.ts"] | ||
| } |
This file contains hidden or 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,2 @@ | ||
| save-prefix="=" | ||
| save=false |
This file contains hidden or 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,4 @@ | ||
| # Change Log | ||
|
|
||
| All notable changes to this project will be documented in this file. | ||
| See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. |
This file contains hidden or 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,94 @@ | ||
| # @swagger-api/apidom-parser-adapter-asyncapi-yaml-3 | ||
|
|
||
| `@swagger-api/apidom-parser-adapter-asyncapi-yaml-3` is a parser adapter for following AsyncAPI specification versions defined in [YAML format](https://yaml.org/spec/1.2/spec.html): | ||
|
|
||
| - [AsyncAPI 3.0.0 specification](https://github.com/asyncapi/spec/blob/v3.0.0/spec/asyncapi.md) | ||
|
|
||
| Under the hood this adapter uses [@swagger-api/apidom-parser-adapter-yaml-1-2](https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser-adapter-yaml-1-2) | ||
| to parse a source string into generic ApiDOM in [base ApiDOM namespace](https://github.com/swagger-api/apidom/tree/main/packages/apidom-core#base-namespace) | ||
|
|
||
| [//]: # (// TODO: The below link does not have content yet.) | ||
| which is then refracted with [AsyncApi 3.x.y Refractors](https://github.com/swagger-api/apidom/tree/main/packages/apidom-ns-asyncapi-3#refractors). | ||
|
|
||
| ## Installation | ||
|
|
||
| After [prerequisites](https://github.com/swagger-api/apidom/blob/main/README.md#prerequisites) for installing this package are satisfied, you can install it | ||
| via [npm CLI](https://docs.npmjs.com/cli) by running the following command: | ||
|
|
||
| ```sh | ||
| $ npm install @swagger-api/@swagger-api/apidom-parser-adapter-asyncapi-yaml-3 | ||
| ``` | ||
|
|
||
| ## Parser adapter API | ||
|
|
||
| This parser adapter is fully compatible with parser adapter interface required by [@swagger-api/apidom-parser](https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser#mounting-parser-adapters) | ||
| and implements all required properties. | ||
|
|
||
| ### mediaTypes | ||
|
|
||
| Defines list of media types that this parser adapter recognizes. | ||
|
|
||
| ```js | ||
| [ | ||
glowcloud marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| 'application/vnd.aai.asyncapi;version=3.0.0', | ||
| 'application/vnd.aai.asyncapi+yaml;version=3.0.0', | ||
| 'application/vnd.aai.asyncapi;version=3.0.1', | ||
| 'application/vnd.aai.asyncapi+yaml;version=3.0.1', | ||
| ] | ||
| ``` | ||
|
|
||
| ### detect | ||
|
|
||
| [Detection](https://github.com/swagger-api/apidom/blob/main/packages/apidom-parser-adapter-asyncapi-yaml-3/src/adapter.ts#L21) is based on a regular expression matching required AsyncApi 3.x.y specification symbols in YAML format. | ||
|
|
||
| ### namespace | ||
|
|
||
| [//]: # (// TODO: Below link does not have content yet.) | ||
| This adapter exposes an instance of [AsyncApi 3.x.y ApiDOM namespace](https://github.com/swagger-api/apidom/tree/main/packages/apidom-ns-asyncapi-3#asyncapi-2xy-namespace). | ||
|
|
||
| ### parse | ||
|
|
||
| `parse` function consumes various options as a second argument. Here is a list of these options: | ||
|
|
||
| Option | Type | Default | Description | ||
| --- | --- | --- | --- | ||
| <a name="specObj"></a>`specObj` | `Object` | [Specification Object](https://github.com/swagger-api/apidom/blob/main/packages/apidom-ns-asyncapi-3/src/refractor/specification.ts) | This specification object drives the YAML AST transformation to AsyncAPI 3.x ApiDOM namespace. | ||
| <a name="sourceMap"></a>`sourceMap` | `Boolean` | `false` | Indicate whether to generate source maps. | ||
| <a name="refractorOpts"></a>`refractorOpts` | `Object` | `{}` | Refractor options are [passed to refractors](https://github.com/swagger-api/apidom/tree/main/packages/apidom-ns-asyncapi-3#refractor-plugins) during refracting phase. | ||
|
|
||
| All unrecognized arbitrary options will be ignored. | ||
|
|
||
| ## Usage | ||
|
|
||
| This parser adapter can be used directly or indirectly via [@swagger-api/apidom-parser](https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser). | ||
|
|
||
| ### Direct usage | ||
|
|
||
| During direct usage you don't need to provide `mediaType` as the `parse` function is already pre-bound | ||
| with [supported media types](#mediatypes). | ||
|
|
||
| ```js | ||
| import { parse, detect } from '@swagger-api/apidom-parser-adapter-asyncapi-yaml-3'; | ||
|
|
||
| // detecting | ||
| await detect('asyncapi: 3.0.0'); // => true | ||
| await detect('test'); // => false | ||
|
|
||
| // parsing | ||
| const parseResult = await parse('asyncapi: 3.0.0', { sourceMap: true }); | ||
| ``` | ||
|
|
||
| ### Indirect usage | ||
|
|
||
| You can omit the `mediaType` option here, but please read [Word on detect vs mediaTypes](https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser#word-on-detect-vs-mediatypes) before you do so. | ||
|
|
||
| ```js | ||
| import ApiDOMParser from '@swagger-api/apidom-parser'; | ||
| import * as asyncApiYamlAdapter from '@swagger-api/apidom-parser-adapter-asyncapi-yaml-3'; | ||
|
|
||
| const parser = new ApiDOMParser(); | ||
|
|
||
| parser.use(asyncApiYamlAdapter); | ||
|
|
||
| const parseResult = await parser.parse('asyncapi: 3.0.0', { mediaType: asyncApiYamlAdapter.mediaTypes.latest('yaml') }); | ||
| ``` | ||
5 changes: 5 additions & 0 deletions
5
packages/apidom-parser-adapter-asyncapi-yaml-3/config/api-extractor/api-extractor.json
This file contains hidden or 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,5 @@ | ||
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
| "extends": "../../../../api-extractor.json", | ||
| "mainEntryPointFilePath": "../../types/adapter.d.ts" | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.