Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdevo <kdevo@users.noreply.github.com>2021-04-05 21:14:46 +0300
committerkdevo <kdevo@users.noreply.github.com>2021-04-05 21:14:46 +0300
commitbcaec1e6eac61b9892b475dd22f383bc63a522ca (patch)
treecd6914eb12e07830f78ccc3d197245094d98c0e6 /layouts
parent3d7d081401375371bcd969e51b5f6df24b79c909 (diff)
:recycle: :zap: Restructure and clean-up JS
- Fix scroll spy bug: error occured under certain conditions at page's top - Separate scroll-spy stuff to home.js - Inline JS for more speed - Use only minimal JS needed for blog - Enhance minification via js.Build (ESBuild) instead of plain minify
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/body-bottom.html38
1 files changed, 16 insertions, 22 deletions
diff --git a/layouts/partials/body-bottom.html b/layouts/partials/body-bottom.html
index c857129..9ab407e 100644
--- a/layouts/partials/body-bottom.html
+++ b/layouts/partials/body-bottom.html
@@ -1,31 +1,25 @@
{{ $scripts := slice }}
-{{ $scripts = $scripts | append (resources.Get "js/src/misc.js") }}
+{{ $scripts = $scripts | append (resources.Get "js/src/base.js") }}
+
{{ if .Site.Params.Feat.useTermynal -}}
-{{ $scripts = $scripts | append (resources.Get "js/src/termynal.js" | resources.ExecuteAsTemplate "js/src/termynal.js" .) }}
+ {{ $scripts = $scripts | append (resources.Get "js/src/termynal.js" | resources.ExecuteAsTemplate "js/src/termynal.js" .) }}
{{- end }}
+
{{ if not (eq (len (where .Site.RegularPages "Section" "gallery")) 0) -}}
{{ $scripts = $scripts | append (resources.Get "js/src/modal.js" | resources.ExecuteAsTemplate "js/src/modal.js" .) }}
{{- end }}
-{{ $scripts = $scripts | append (resources.Get "js/src/nav.js" | resources.ExecuteAsTemplate "js/src/nav.js" .) }}
+
+{{ $scripts = $scripts | append (resources.Get "js/src/nav.js" | resources.ExecuteAsTemplate "js/src/nav.js" .) }}
+{{ $scripts = $scripts | append (resources.Get "js/src/home.js") }}
+
{{ if (.Site.Params.Feat.ajaxBasin) -}}
-{{ $scripts = $scripts | append (resources.Get "js/src/contact.js" | resources.ExecuteAsTemplate "js/src/contact.js" .) }}
+ {{ $scripts = $scripts | append (resources.Get "js/src/contact.js" | resources.ExecuteAsTemplate "js/src/contact.js" .) }}
{{- end }}
-{{ if .Site.Params.Feat.useBlog -}}
- <!-- If using the blog, it is probably worth it to serve a fingerprinted bundle (more page navigations/reloads) -->
- <script src="{{ ($scripts | resources.Concat "js/bundle.js" | minify | fingerprint).Permalink }}" type="text/javascript"></script>
- {{ if .IsHome -}}
- <script>handleNavBar(true)</script>
- {{- else -}}
- <script>handleNavBar(false)</script>
- {{- end }}
+<script>
+{{ if .IsHome }}
+ {{ ($scripts | resources.Concat "js/bundle-home.js" | js.Build (dict "minify" true)).Content | safeJS }}
{{- else -}}
- <!-- If not using the blog at all, serving the JS inline will reduce the request count and is probably the best option -->
- <script>
- {{ ($scripts | resources.Concat "js/bundle.js" | minify).Content | safeJS }}
- {{ if .IsHome -}}
- handleNavBar(true)
- {{- else -}}
- handleNavBar(false)
- {{- end }}
- </script>
-{{- end }}
+ {{ $scripts := (slice (resources.Get "js/src/base.js") (resources.Get "js/src/nav.js") )}}
+ {{ ($scripts | resources.Concat "js/bundle-blog.js" | js.Build (dict "minify" true)).Content | safeJS }}
+{{ end }}
+</script>