Files
Atay-Makhzan/web_src/js/standalone/swagger.ts
T

31 lines
876 B
TypeScript
Raw Normal View History

import SwaggerUI from 'swagger-ui-dist/swagger-ui-es-bundle.js';
import 'swagger-ui-dist/swagger-ui.css';
2020-01-14 19:02:08 +01:00
window.addEventListener('load', async () => {
2025-12-03 03:13:16 +01:00
const url = document.querySelector('#swagger-ui')!.getAttribute('data-source')!;
2020-01-14 19:02:08 +01: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);
2024-08-28 18:32:38 +02:00
spec.schemes.sort((a: string, b: string) => {
2020-01-14 19:02:08 +01:00
if (a === proto) return -1;
if (b === proto) return 1;
return 0;
});
2025-03-06 00:03:44 +08:00
SwaggerUI({
2020-01-14 19:02:08 +01:00
spec,
dom_id: '#swagger-ui',
deepLinking: true,
docExpansion: 'none',
defaultModelRendering: 'model', // don't show examples by default, because they may be incomplete
2020-01-14 19:02:08 +01:00
presets: [
SwaggerUI.presets.apis,
2020-01-14 19:02:08 +01:00
],
plugins: [
SwaggerUI.plugins.DownloadUrl,
],
2020-01-14 19:02:08 +01:00
});
});