echoswagger/assets.go

75 lines
1.8 KiB
Go
Raw Normal View History

2018-08-31 14:47:37 +02:00
package echoswagger
2018-09-03 16:52:30 +02:00
// CDN refer to https://www.jsdelivr.com/package/npm/swagger-ui-dist
const DefaultCDN = "https://cdn.jsdelivr.net/npm/swagger-ui-dist@3.19.0"
2018-09-03 16:52:30 +02:00
2018-08-31 14:47:37 +02:00
const SwaggerUIContent = `{{define "swagger"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{.title}}</title>
2018-09-03 16:52:30 +02:00
<link rel="stylesheet" href="{{.cdn}}/swagger-ui.css" crossorigin="anonymous" />
<link rel="icon" type="image/png" href="{{.cdn}}/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{.cdn}}/favicon-16x16.png" sizes="16x16" />
2018-08-31 14:47:37 +02:00
<style>
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body
{
margin:0;
background: #fafafa;
}
2018-09-03 16:52:30 +02:00
{{if .hideTop}}#swagger-ui>.swagger-container>.topbar
{
display: none;
}{{end}}
2018-08-31 14:47:37 +02:00
</style>
</head>
<body>
<div id="swagger-ui"></div>
2018-09-03 16:52:30 +02:00
<script src="{{.cdn}}/swagger-ui-bundle.js" crossorigin="anonymous"></script>
<script src="{{.cdn}}/swagger-ui-standalone-preset.js" crossorigin="anonymous"></script>
2018-08-31 14:47:37 +02:00
<script>
window.onload = function() {
2019-05-11 16:27:52 +02:00
var specPath = "{{.specName}}"
if (!window.location.pathname.endsWith("/")) {
specPath = "/" + specPath
}
2018-08-31 14:47:37 +02:00
// Build a system
const ui = SwaggerUIBundle({
2019-05-11 16:27:52 +02:00
url: window.location.origin+window.location.pathname+specPath,
2018-08-31 14:47:37 +02:00
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
})
window.ui = ui
}
</script>
</body>
</html>
{{end}}`