forgejo/web_src/js/standalone/forgejo-swagger.js
Gusted 9eb22ddc19
[CHORE] Proper chunking for swagger
- Tell webpack to chunk the swagger-ui dependency, so it can be re-used for the
forgejo-swagger.js and swagger.js files (these two files are two
seperate javascript files in the output).
- This saves off 400KB when Forgejo is built with the `bindata` build
tag.
2024-08-22 15:48:05 +02:00

23 lines
712 B
JavaScript

window.addEventListener('load', async () => {
const [{default: SwaggerUI}] = await Promise.all([
import(/* webpackChunkName: "swagger-ui" */'swagger-ui-dist/swagger-ui-es-bundle.js'),
import(/* webpackChunkName: "swagger-ui" */'swagger-ui-dist/swagger-ui.css'),
]);
const url = document.getElementById('swagger-ui').getAttribute('data-source');
const ui = SwaggerUI({
url,
dom_id: '#swagger-ui',
deepLinking: true,
docExpansion: 'none',
defaultModelRendering: 'model', // don't show examples by default, because they may be incomplete
presets: [
SwaggerUI.presets.apis,
],
plugins: [
SwaggerUI.plugins.DownloadUrl,
],
});
window.ui = ui;
});