gitlab-org--gitlab-foss/app/assets/javascripts/blob/openapi/index.js

20 lines
580 B
JavaScript

import { SwaggerUIBundle } from 'swagger-ui-dist';
import { deprecatedCreateFlash as flash } from '~/flash';
import { __ } from '~/locale';
export default () => {
const el = document.getElementById('js-openapi-viewer');
Promise.all([import(/* webpackChunkName: 'openapi' */ 'swagger-ui-dist/swagger-ui.css')])
.then(() => {
SwaggerUIBundle({
url: el.dataset.endpoint,
dom_id: '#js-openapi-viewer',
});
})
.catch((error) => {
flash(__('Something went wrong while initializing the OpenAPI viewer'));
throw error;
});
};