mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-27 06:01:08 +08:00
eecdc0db11
Signed-off-by: MiniDigger <admin@minidigger.me>
89 lines
2.7 KiB
Vue
89 lines
2.7 KiB
Vue
<template>
|
|
<v-card color="grey lighten-2">
|
|
<div id="swagger-ui"></div>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'nuxt-property-decorator';
|
|
import SwaggerUIBundle from 'swagger-ui';
|
|
import { SwaggerConfigs, SwaggerUIBundle as SwaggerUIBundleType } from 'swagger-ui-dist';
|
|
|
|
declare global {
|
|
interface Window {
|
|
ui: SwaggerUIBundleType;
|
|
}
|
|
}
|
|
|
|
@Component
|
|
export default class ApiPage extends Vue {
|
|
mounted() {
|
|
window.ui = SwaggerUIBundle({
|
|
url: '/v2/api-docs/',
|
|
dom_id: '#swagger-ui',
|
|
deepLinking: true,
|
|
presets: [SwaggerUIBundle.presets.apis, SwaggerUIBundle.SwaggerUIStandalonePreset],
|
|
plugins: [SwaggerUIBundle.plugins.DownloadUrl],
|
|
layout: 'BaseLayout',
|
|
requestInterceptor: (req) => {
|
|
if (!req.loadSpec) {
|
|
// TODO update this once api auth is in
|
|
// const promise = this.$api.getSession().then((session) => {
|
|
// req.headers.authorization = 'HangarApi session="' + session + '"';
|
|
// return req;
|
|
// });
|
|
// Workaround for fixing the curl URL
|
|
// https://github.com/swagger-api/swagger-ui/issues/4778#issuecomment-456403631
|
|
// @ts-ignore
|
|
// promise.url = req.url;
|
|
// return promise;
|
|
// just fix url for now
|
|
if (req.url.startsWith('http://localhost:8080')) {
|
|
req.url = req.url.replace('http://localhost:8080', 'http://localhost:3000');
|
|
}
|
|
return req;
|
|
} else {
|
|
return req;
|
|
}
|
|
},
|
|
} as SwaggerConfigs) as SwaggerUIBundleType;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
//noinspection CssUnknownTarget - IJ you are dum
|
|
@import '@/node_modules/swagger-ui/dist/swagger-ui.css';
|
|
|
|
.swagger-ui {
|
|
.topbar .download-url-wrapper,
|
|
.info hgroup.main a {
|
|
display: none;
|
|
}
|
|
.info {
|
|
background-color: unset !important;
|
|
border-color: unset !important;
|
|
margin: 2rem 0;
|
|
.title small pre {
|
|
background-color: unset;
|
|
border: unset;
|
|
}
|
|
.description h2 {
|
|
padding-top: 1.5rem;
|
|
margin: 1.5rem 0 0;
|
|
border-top: 3px solid #333333;
|
|
}
|
|
.scheme-container {
|
|
border-top: 1px solid rgba(0, 0, 0, 0.15);
|
|
}
|
|
.markdown {
|
|
min-height: 0;
|
|
}
|
|
}
|
|
}
|
|
.model-container,
|
|
.responses-inner {
|
|
overflow-x: auto;
|
|
}
|
|
</style>
|