Skip to content
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

fix(playground): fix importing definition from URL #4318

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions packages/apidom-playground/src/playground/apidom.worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {
readFile,
resolveApiDOM as resolveApiDOMReferences,
dereferenceApiDOM as derefereceApiDOMReferences,
File,
} from '@swagger-api/apidom-reference';

const parser = new ApiDOMParser()
Expand All @@ -44,9 +45,9 @@ const service = {
return JSON.stringify(refract, undefined, 2);
},

async readFile(url) {
const buffer = await readFile(url, {});
return buffer.toString();
async readFile(uri) {
const buffer = await readFile(uri, {});
return new File({ uri, data: buffer }).toString();
},

async resolveApiDOM(apiDOM, { source, mediaType, baseURI }) {
Expand Down