2023-07-27 14:14:55 +00:00
|
|
|
{{- $page := .page }}
|
|
|
|
{{- if and (not $page) .context }}
|
|
|
|
{{- $page = .context }}
|
2023-11-20 23:53:33 +00:00
|
|
|
{{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'openapi' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration#5180" $page.File.Filename }}
|
2023-07-27 14:14:55 +00:00
|
|
|
{{- end }}
|
2024-05-28 20:17:36 +00:00
|
|
|
{{- $u := urls.Parse .src }}
|
|
|
|
{{- $src := $u.String }}
|
2024-03-16 23:27:38 +00:00
|
|
|
{{- $spec := "" }}
|
2023-07-27 14:14:55 +00:00
|
|
|
{{- $id := cond (or (eq .id nil) (eq .id "")) (partial "make-random-md5.hugo" $page) .id }}
|
2024-05-28 20:17:36 +00:00
|
|
|
{{- if not $u.IsAbs }}
|
|
|
|
{{- $path := strings.TrimPrefix "./" $u.Path }}
|
|
|
|
{{- with or
|
|
|
|
($page.Resources.Get $path)
|
|
|
|
(resources.Get $path)
|
|
|
|
}}
|
|
|
|
{{- $src = "" }}
|
|
|
|
{{- $spec = .Content }}
|
|
|
|
{{- else }}
|
2024-08-02 08:32:31 +00:00
|
|
|
{{- $errorlevel := or $page.Params.openapi.errorlevel $page.Site.Params.openapi.errorlevel }}
|
|
|
|
{{- if eq $errorlevel "warning" }}
|
2024-05-28 20:17:36 +00:00
|
|
|
{{- warnf "%q: OpenAPI spec link '%s' is not a resource but linked anyways" $page.File.Filename .url }}
|
2024-08-02 08:32:31 +00:00
|
|
|
{{- else if eq $errorlevel "error" }}
|
2024-05-28 20:17:36 +00:00
|
|
|
{{- errorf "%q: OpenAPI spec link '%s' is not a resource" $page.File.Filename .url }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
2023-05-14 21:05:07 +00:00
|
|
|
{{- end }}
|
2024-09-05 18:02:38 +00:00
|
|
|
{{- with $page -}}
|
2023-05-14 21:05:07 +00:00
|
|
|
<div class="sc-openapi-wrapper is-loading helper-loading-container">
|
|
|
|
<div
|
|
|
|
class="sc-openapi-container"
|
2023-09-23 08:18:31 +00:00
|
|
|
id="R-openapi-{{ $id }}"
|
2023-09-21 19:34:02 +00:00
|
|
|
data-openapi-url="{{ $src }}"
|
2024-03-16 23:27:38 +00:00
|
|
|
data-openapi-spec="{{ $spec | safeHTMLAttr }}"
|
2023-05-14 21:05:07 +00:00
|
|
|
></div>
|
|
|
|
</div>
|
2023-10-09 15:42:51 +00:00
|
|
|
{{- .Store.Set "hasOpenApi" true }}
|
2023-05-14 21:05:07 +00:00
|
|
|
{{- end }}
|