2020-12-02 01:18:39 +00:00
|
|
|
import SwaggerUI from 'swagger-ui-dist/swagger-ui-es-bundle.js';
|
|
|
|
import 'swagger-ui-dist/swagger-ui.css';
|
2020-01-14 18:02:08 +00:00
|
|
|
|
|
|
|
window.addEventListener('load', async () => {
|
2021-11-22 08:19:01 +00:00
|
|
|
const url = document.getElementById('swagger-ui').getAttribute('data-source');
|
2020-01-14 18:02:08 +00:00
|
|
|
const res = await fetch(url);
|
|
|
|
const spec = await res.json();
|
|
|
|
|
|
|
|
// Make the page's protocol be at the top of the schemes list
|
|
|
|
const proto = window.location.protocol.slice(0, -1);
|
|
|
|
spec.schemes.sort((a, b) => {
|
|
|
|
if (a === proto) return -1;
|
|
|
|
if (b === proto) return 1;
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
|
|
|
|
const ui = SwaggerUI({
|
|
|
|
spec,
|
|
|
|
dom_id: '#swagger-ui',
|
|
|
|
deepLinking: true,
|
2020-08-05 21:42:19 +00:00
|
|
|
docExpansion: 'none',
|
2021-03-07 21:19:14 +00:00
|
|
|
defaultModelRendering: 'model', // don't show examples by default, because they may be incomplete
|
2020-01-14 18:02:08 +00:00
|
|
|
presets: [
|
2024-03-22 14:06:53 +00:00
|
|
|
SwaggerUI.presets.apis,
|
2020-01-14 18:02:08 +00:00
|
|
|
],
|
|
|
|
plugins: [
|
2024-03-22 14:06:53 +00:00
|
|
|
SwaggerUI.plugins.DownloadUrl,
|
|
|
|
],
|
2020-01-14 18:02:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
window.ui = ui;
|
|
|
|
});
|