fix: filtering gap in associated media

This commit is contained in:
Cory Dransfeldt 2024-12-02 14:10:34 -08:00
parent bce70b8e4e
commit 0ced0001ff
No known key found for this signature in database
4 changed files with 29 additions and 23 deletions

24
package-lock.json generated
View file

@ -2906,9 +2906,9 @@
} }
}, },
"node_modules/caniuse-lite": { "node_modules/caniuse-lite": {
"version": "1.0.30001684", "version": "1.0.30001685",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001685.tgz",
"integrity": "sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==", "integrity": "sha512-e/kJN1EMyHQzgcMEEgoo+YTCO1NGCmIYHk5Qk8jT6AazWemS5QFKJ5ShCJlH3GZrNIdZofcNCEwZqbMjjKzmnA==",
"funding": [ "funding": [
{ {
"type": "opencollective", "type": "opencollective",
@ -3592,9 +3592,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.5.67", "version": "1.5.68",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.67.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.68.tgz",
"integrity": "sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==", "integrity": "sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==",
"license": "ISC" "license": "ISC"
}, },
"node_modules/emmet": { "node_modules/emmet": {
@ -7601,9 +7601,9 @@
"optional": true "optional": true
}, },
"node_modules/type-fest": { "node_modules/type-fest": {
"version": "4.29.0", "version": "4.30.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.0.tgz", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.30.0.tgz",
"integrity": "sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==", "integrity": "sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA==",
"license": "(MIT OR CC0-1.0)", "license": "(MIT OR CC0-1.0)",
"engines": { "engines": {
"node": ">=16" "node": ">=16"
@ -8215,9 +8215,9 @@
} }
}, },
"node_modules/vscode-css-languageservice": { "node_modules/vscode-css-languageservice": {
"version": "6.3.1", "version": "6.3.2",
"resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.1.tgz", "resolved": "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.2.tgz",
"integrity": "sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==", "integrity": "sha512-GEpPxrUTAeXWdZWHev1OJU9lz2Q2/PPBxQ2TIRmLGvQiH3WZbqaNoute0n0ewxlgtjzTW3AKZT+NHySk5Rf4Eg==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View file

@ -1,5 +1,5 @@
--- ---
import { parseISO, format } from "date-fns"; import { isBefore, parseISO, format } from "date-fns";
import IconMapper from "@components/IconMapper.astro"; import IconMapper from "@components/IconMapper.astro";
const { const {
@ -56,7 +56,7 @@ const sections = [
icon: "article", icon: "article",
cssClass: "article", cssClass: "article",
label: "Related post(s)", label: "Related post(s)",
items: posts || [], items: posts?.filter((post) => isBefore(new Date(post.date), new Date())) || [],
}, },
{ {
key: "shows", key: "shows",

View file

@ -31,7 +31,7 @@ const link = links[0];
</h2> </h2>
<p> <p>
<span class="music">Top artist this week:</span> <span class="music">Top artist this week:</span>
<a href={artist.artist_url} data-astro-prefetch>{artist.artist_name}</a> <a href={artist.artist_url} data-astro-prefetch>{artist.artist_name}</a> with <strong class="highlight-text">{artist.plays} plays</strong>
</p> </p>
<p> <p>
<span class="music">Top track this week:</span> <span class="music">Top track this week:</span>

View file

@ -593,6 +593,9 @@
{ {
"loc": "https://coryd.dev/posts/2018/senators-press-wireless-carriers-on-mobile-throttling" "loc": "https://coryd.dev/posts/2018/senators-press-wireless-carriers-on-mobile-throttling"
}, },
{
"loc": "https://coryd.dev/posts/2024/2024-in-review"
},
{ {
"loc": "https://coryd.dev/posts/2019/australian-political-parties-hacked" "loc": "https://coryd.dev/posts/2019/australian-political-parties-hacked"
}, },
@ -812,6 +815,9 @@
{ {
"loc": "https://coryd.dev/posts/2024/the-amount-of-money-spotify-makes-should-be-close-to-zero" "loc": "https://coryd.dev/posts/2024/the-amount-of-money-spotify-makes-should-be-close-to-zero"
}, },
{
"loc": "https://coryd.dev/posts/2024/a-year-of-blocking-ai-crawlers"
},
{ {
"loc": "https://coryd.dev/posts/2017/the-equifax-breach-is-a-disaster" "loc": "https://coryd.dev/posts/2017/the-equifax-breach-is-a-disaster"
}, },
@ -8820,10 +8826,16 @@
"loc": "https://coryd.dev/watching/shows/81239" "loc": "https://coryd.dev/watching/shows/81239"
}, },
{ {
"loc": "https://coryd.dev/watching/shows/688" "loc": "https://coryd.dev/watching/shows/157741"
}, },
{ {
"loc": "https://coryd.dev/watching/shows/157741" "loc": "https://coryd.dev/watching/shows/113962"
},
{
"loc": "https://coryd.dev/watching/shows/90228"
},
{
"loc": "https://coryd.dev/watching/shows/688"
}, },
{ {
"loc": "https://coryd.dev/watching/shows/136311" "loc": "https://coryd.dev/watching/shows/136311"
@ -8831,15 +8843,9 @@
{ {
"loc": "https://coryd.dev/watching/shows/125988" "loc": "https://coryd.dev/watching/shows/125988"
}, },
{
"loc": "https://coryd.dev/watching/shows/90228"
},
{ {
"loc": "https://coryd.dev/watching/shows/124364" "loc": "https://coryd.dev/watching/shows/124364"
}, },
{
"loc": "https://coryd.dev/watching/shows/113962"
},
{ {
"loc": "https://coryd.dev/watching/shows/60694" "loc": "https://coryd.dev/watching/shows/60694"
}, },