mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
76f809794f
- Simplify `resources.Get` calls to string paths in script pipeline callers (plugin/script.html handles resources.Get internally) - Refactor js-build.html to use $defaultOptions merge pattern matching style.html's ToCSS handling for better readability - Refactor style.html ToCSS with $defaultOptions merge pattern and automatic targetPath generation from resource name - Remove redundant custom $options dicts for targetPath that match the new default behavior - Update partial docs for script.html and style.html
76 lines
2.9 KiB
HTML
76 lines
2.9 KiB
HTML
{{- /*
|
|
Script tag renderer.
|
|
- Accepts direct script HTML or builds script source from local/remote resources.
|
|
- Supports template execution, minify/build/fingerprint pipeline, and extra attrs.
|
|
@param {String|Resource} .Source script source URL/path or Hugo resource; if string starts with "<script" it's treated as raw HTML
|
|
@param {String} [.Content] inline content to write as generated resource
|
|
@param {String} [.Path] target path for resource created from Content
|
|
@param {Object} [.Template] target path for resource created from template execution
|
|
@param {Object} [.Context] template context for ExecuteAsTemplate
|
|
@param {Boolean} [.Minify] whether to minify resource
|
|
@param {Object} [.Build] js.Build options (Build.minify is normalized to .Minify for path semantics)
|
|
@param {String} [.Fingerprint] fingerprint algorithm
|
|
@param {Boolean} [.Async] whether to add async attribute
|
|
@param {Boolean} [.Defer] whether to add defer attribute
|
|
@param {Boolean} [.Crossorigin] whether to add crossorigin=anonymous
|
|
@param {String} [.Integrity] SRI hash value
|
|
@param {String} [.Attr] additional attributes
|
|
*/ -}}
|
|
|
|
{{- if strings.HasPrefix .Source "<script" -}}
|
|
{{- safeHTML .Source -}}
|
|
{{- else -}}
|
|
{{- /* Script source */ -}}
|
|
{{- $src := .Source -}}
|
|
{{- $integrity := .Integrity -}}
|
|
{{- $minify := .Minify -}}
|
|
{{- if $src | and (not (urls.Parse $src).Host) -}}
|
|
{{- $resource := resources.Get $src -}}
|
|
{{- with .Template -}}
|
|
{{- $resource = resources.ExecuteAsTemplate . $.Context $resource -}}
|
|
{{- end -}}
|
|
{{- $resource = dict "Resource" $resource "Build" .Build "Minify" $minify | partial "function/js-build.html" -}}
|
|
{{- with .Fingerprint -}}
|
|
{{- $resource = $resource | fingerprint . -}}
|
|
{{- $integrity = $resource.Data.Integrity -}}
|
|
{{- end -}}
|
|
{{- with $resource.RelPermalink -}}
|
|
{{- $src = . -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- /* Script form string */ -}}
|
|
{{- if .Content | and .Path -}}
|
|
{{- $contentResource := resources.FromString .Path .Content -}}
|
|
{{- if .Minify -}}
|
|
{{- $contentResource = $contentResource | minify -}}
|
|
{{- end -}}
|
|
{{- $src = $contentResource.RelPermalink -}}
|
|
{{- end -}}
|
|
|
|
{{- /* Script attributes */ -}}
|
|
{{- if $src -}}
|
|
{{- $attrs := printf `src="%v"` $src -}}
|
|
{{- if .Crossorigin -}}
|
|
{{- $attrs = ` crossorigin="anonymous"` | add $attrs -}}
|
|
{{- end -}}
|
|
{{- with $integrity -}}
|
|
{{- $attrs = printf ` integrity="%v"` . | add $attrs -}}
|
|
{{- end -}}
|
|
{{- if .Async -}}
|
|
{{- $attrs = " async" | add $attrs -}}
|
|
{{- end -}}
|
|
{{- if .Defer -}}
|
|
{{- $attrs = " defer" | add $attrs -}}
|
|
{{- end -}}
|
|
{{- with .Attr -}}
|
|
{{- $attrs = add " " . | add $attrs -}}
|
|
{{- end -}}
|
|
<script {{ $attrs | safeHTMLAttr }}></script>
|
|
{{- else -}}
|
|
{{- with .Content -}}
|
|
<script{{ with $.Attr }} {{ . | safeHTMLAttr }}{{ end }}>{{ . | safeJS }}</script>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|