debian-mirror-gitlab/app/assets/javascripts/blob/openapi/index.js

22 lines
591 B
JavaScript
Raw Normal View History

2020-01-01 13:55:28 +05:30
import { SwaggerUIBundle } from 'swagger-ui-dist';
2021-09-30 23:02:18 +05:30
import createFlash from '~/flash';
2020-01-01 13:55:28 +05:30
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',
});
})
2021-03-08 18:12:59 +05:30
.catch((error) => {
2021-09-30 23:02:18 +05:30
createFlash({
message: __('Something went wrong while initializing the OpenAPI viewer'),
});
2020-01-01 13:55:28 +05:30
throw error;
});
};