chore: improve now-playing loading

This commit is contained in:
Cory Dransfeldt 2024-02-20 11:11:39 -08:00
parent 45bcc0a89b
commit 4fff4ff124
No known key found for this signature in database
6 changed files with 64 additions and 25 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "6.4.1", "version": "6.4.2",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -36,6 +36,7 @@ export default {
rush: '534ee493-bfac-4575-a44a-0ae41e2c3fe4', rush: '534ee493-bfac-4575-a44a-0ae41e2c3fe4',
'soul blind': '94dba818-73e7-4ee1-a8ed-894cef10552b', 'soul blind': '94dba818-73e7-4ee1-a8ed-894cef10552b',
sovereign: '8e5bd67e-9e31-4e2f-ad18-a3f6508f495e', sovereign: '8e5bd67e-9e31-4e2f-ad18-a3f6508f495e',
svartidauði: '5b67060c-6ec8-4ee8-9783-2207c169402d',
'sunday valley': 'f71d08b7-8cee-48a8-acf0-95c9d6cf8fb9', 'sunday valley': 'f71d08b7-8cee-48a8-acf0-95c9d6cf8fb9',
undergang: '6853b4ec-8cd4-46a4-b970-8331d4587c43', undergang: '6853b4ec-8cd4-46a4-b970-8331d4587c43',
'wolves in the throne room': 'e9452446-7702-4853-96ce-5dfe6748d3fb', 'wolves in the throne room': 'e9452446-7702-4853-96ce-5dfe6748d3fb',

View file

@ -1,2 +1,4 @@
<script type="module" src="/assets/scripts/components/now-playing.js"></script> <script type="module" src="/assets/scripts/components/now-playing.js"></script>
<now-playing></now-playing> <div style="height:28px;margin-bottom:1rem">
<now-playing></now-playing>
</div>

View file

@ -1,12 +1,10 @@
const nowPlayingTemplate = document.createElement('template') const nowPlayingTemplate = document.createElement('template')
nowPlayingTemplate.innerHTML = ` nowPlayingTemplate.innerHTML = `
<p class="now-playing client-side"> <p class="client-side">
<span class="icon--spin" data-key="loading"> <span class="text--blurred" data-key="loading">🎧 Album by Artist</span>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-loader-2" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 3a9 9 0 1 0 9 9" /></svg>
</span>
<span> <span>
<span data-key="content"></span> <span data-key="content" style="opacity:0"></span>
</span> </span>
</p> </p>
` `
@ -24,18 +22,48 @@ class NowPlaying extends HTMLElement {
async connectedCallback() { async connectedCallback() {
this.append(this.template); this.append(this.template);
const data = { ...(await this.data), ...this.linkData }; const data = { ...(await this.data) };
const populateNowPlaying = (component, data, cache) => {
component.querySelectorAll("[data-key]").forEach(async (slot) => {
const { key } = slot.dataset
const value = data[key]
this.querySelectorAll("[data-key]").forEach(async (slot) => { if (cache) {
const { key } = slot.dataset; if (key === 'loading') {
const value = data[key]; slot.style.opacity = '0'
slot.style.display = 'none'
} else if (key === 'content') {
slot.innerHTML = value
slot.style.opacity = '1'
}
}
if (key === 'loading') { if (!cache) {
slot.style.display = 'none' if (key === 'loading') {
} else if (key === 'content') { slot.classList.add('fade')
slot.innerHTML = value; slot.style.opacity = '0'
} setTimeout(() => {
}) slot.style.display = 'none'
}, 300);
} else if (key === 'content') {
slot.classList.add('fade')
setTimeout(() => {
slot.innerHTML = value
slot.style.opacity = '1'
}, 300);
}
}
})
}
try {
const cache = JSON.parse(localStorage.getItem('now-playing'))
if (cache) populateNowPlaying(this, cache, true)
} catch (e) {}
populateNowPlaying(this, data)
try {
localStorage.setItem('now-playing', JSON.stringify(data))
} catch (e) {}
} }
get template() { get template() {
@ -45,10 +73,6 @@ class NowPlaying extends HTMLElement {
} }
get data() { get data() {
try {
const cache = JSON.parse(localStorage.getItem('now-playing'))
if (cache) populateNowPlaying(cache)
} catch (e) {}
const data = fetch('/api/now-playing', { const data = fetch('/api/now-playing', {
type: 'json', type: 'json',
}) })
@ -56,9 +80,6 @@ class NowPlaying extends HTMLElement {
.catch(() => { .catch(() => {
loading.style.display = 'none' loading.style.display = 'none'
}) })
try {
localStorage.setItem('now-playing', JSON.stringify(data))
} catch (e) {}
return data; return data;
} }
} }

View file

@ -21,6 +21,10 @@
font-size: var(--font-size-base) !important; font-size: var(--font-size-base) !important;
} }
.pagefind-ui__result-excerpt {
word-break: break-word !important;
}
.pagefind-ui__form:before { .pagefind-ui__form:before {
opacity: 1 !important; opacity: 1 !important;
top: calc(19px * var(--pagefind-ui-scale)) !important; top: calc(19px * var(--pagefind-ui-scale)) !important;
@ -96,4 +100,4 @@
.pagefind-ui__button:focus { .pagefind-ui__button:focus {
color: var(--color-lightest) !important; color: var(--color-lightest) !important;
background-color: var(--accent-color-hover) !important; background-color: var(--accent-color-hover) !important;
} }

View file

@ -463,6 +463,17 @@ li {
text-align: center !important; text-align: center !important;
} }
.text--blurred {
color: transparent;
text-shadow: 0 0 6px var(--text-color);
}
.fade {
transition-property: opacity;
transition-timing-function: var(--transition-ease-in-out);
transition-duration: var(--transition-duration-default);
}
.flex--centered { .flex--centered {
display: flex; display: flex;
flex-direction: row; flex-direction: row;