1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-30 01:06:00 -04:00

use preact for common components across site (#663)

* convert GitHub cards grid from lit-html to preact

* give hit counter the preact treatment

* extract loading spinner component to a shared location

* move *some* loading spinner styles to its JSX

* Update .percy.yml

* pick up images in JS w/ webpack

* pull star/fork icons straight from @primer/octicons

* a bit of cleanup

* check `typeof window !== "undefined"` before rendering

* bump misc. deps

* silence missing license warnings for preact-hooks and preact-compat

* add source-map-loader

* Update loading.js
This commit is contained in:
2021-11-24 13:51:29 -05:00
committed by GitHub
parent 9b3ae0f62a
commit b755b66d19
20 changed files with 541 additions and 315 deletions
-2
View File
@@ -3,8 +3,6 @@
<h1><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<div id="content">
<div id="loading-spinner" class="loading"><div></div><div></div><div></div></div>
<div id="github-cards"></div>
<p><a href="https://github.com/jakejarvis?tab=repositories" target="_blank" rel="noopener">View more on GitHub...</a></p>
+2 -3
View File
@@ -28,10 +28,9 @@
{{ end }}
{{ if eq hugo.Environment "production" }}
<div id="meta-hits" style="display: none;">
<div id="meta-hits">
<span class="meta-icon">👀</span>
<div id="meta-hits-loading" class="loading"><div></div><div></div><div></div></div>
<span id="meta-hits-counter"></span>
<div id="meta-hits-counter"></div>
</div>
{{ end }}
</div>