diff --git a/config/filters/index.js b/config/filters/index.js index 71704bda..855082cc 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -3,7 +3,7 @@ import { URL } from 'url' import slugify from 'slugify' import sanitizeHtml from 'sanitize-html'; import authors from '../data/author-map.js' -import { shuffleArray } from '../utilities/index.js' +import { shuffleArray, sanitizeMediaString } from '../utilities/index.js' const utmPattern = /[?&](utm_[^&=]+=[^&#]*)/gi const BASE_URL = 'https://coryd.dev' @@ -223,12 +223,12 @@ export default { return normalized }), calculatePlayPercentage: (plays, mostPlayed) => `${plays/mostPlayed * 100}%`, - genresToString: (genres, count = 10) => { - const genreData = genres.slice(0, count) - if (genreData.length === 0) return '' - if (genreData.length === 1) return genreData[0].genre - const allButLast = genreData.slice(0, -1).map(g => g.genre).join(', ') - const last = genreData[genreData.length - 1].genre + listToString: (items, key, count = 10) => { + const itemData = items.slice(0, count) + if (itemData.length === 0) return '' + if (itemData.length === 1) return itemData[0][key] + const allButLast = itemData.slice(0, -1).map(item => item[key]).join(', ') + const last = itemData[itemData.length - 1][key] return `${allButLast} and ${last}` }, bookStatus: (books, status) => books.filter(book => book.status === status), @@ -249,11 +249,19 @@ export default { }).length }, getLastWatched: (show) => show?.['episodes'][show['episodes']?.length - 1]?.['last_watched_at'], + sortByPlaysDescending: (data) => data.sort((a, b) => (b['total_plays'] || b['plays']) - (a['total_plays'] || a['plays'])), + genreStrings: (genres, key) => genres.map(genre => genre[key]), + genreLinks: (genres, count = 10) => { + const genreData = genres.slice(0, count) + if (genreData.length === 0) return '' + if (genreData.length === 1) return genreData[0] + const allButLast = genreData.slice(0, -1).map(genre => `${genre}`).join(', ') + const last = `${genreData[genreData.length - 1]}` + return `${allButLast} and ${last}` + }, // tags - filterTags: (tags) => { - return tags.filter((tag) => tag.toLowerCase() !== 'posts') - }, + filterTags: (tags) => tags.filter((tag) => tag.toLowerCase() !== 'posts'), formatTag: (string) => { const capitalizeFirstLetter = (string) => string.charAt(0).toUpperCase() + string.slice(1) const normalizedString = string.toLowerCase() diff --git a/config/utilities/index.js b/config/utilities/index.js index 9aff9a39..e11f6c56 100644 --- a/config/utilities/index.js +++ b/config/utilities/index.js @@ -1,3 +1,5 @@ +import slugify from 'slugify' + export const shuffleArray = array => { for (let i = array.length - 1; i > 0; i--) { let j = Math.floor(Math.random() * (i + 1)); @@ -6,4 +8,15 @@ export const shuffleArray = array => { array[j] = temp; } return array +} + +export const sanitizeMediaString = (str) => { + if (!str) return null + const sanitizedString = str.normalize('NFD').replace(/[\u0300-\u036f\u2010—\.\?\(\)\[\]\{\}]/g, '').replace(/\.{3}/g, '') + + return slugify(sanitizedString, { + replacement: '-', + remove: /[#,&,+()$~%.'":*?<>{}]/g, + lower: true, + }) } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index ec764541..276c61d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "17.2.7", + "version": "17.3.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "17.2.7", + "version": "17.3.7", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.2.3", diff --git a/package.json b/package.json index fbebd742..82ef794d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "17.2.7", + "version": "17.3.7", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_data/genres.js b/src/_data/genres.js new file mode 100644 index 00000000..154114fe --- /dev/null +++ b/src/_data/genres.js @@ -0,0 +1,41 @@ +import { createClient } from '@supabase/supabase-js' +import { parseCountryField } from './utilities/index.js' + +const SUPABASE_URL = process.env.SUPABASE_URL || 'YOUR_SUPABASE_URL' +const SUPABASE_KEY = process.env.SUPABASE_KEY || 'YOUR_SUPABASE_KEY' +const supabase = createClient(SUPABASE_URL, SUPABASE_KEY) + +export default async function fetchGenresWithArtists() { + const { data, error } = await supabase + .from('genres') + .select(` + name, + description, + total_plays, + wiki_link, + artists ( + mbid, + name_string, + image, + total_plays, + country, + description, + favorite + ) + `) + .order('id', { ascending: true }) + + if (error) { + console.error('Error fetching genres with artists:', error) + return [] + } + + data.forEach(genre => { + genre.artists = genre.artists.map(artist => ({ + ...artist, + country: parseCountryField(artist.country) + })) + }) + + return data +} \ No newline at end of file diff --git a/src/_data/music.js b/src/_data/music.js index 42e288d9..0acb5ea6 100644 --- a/src/_data/music.js +++ b/src/_data/music.js @@ -111,9 +111,9 @@ const aggregateGenres = (data) => { if (!genreAggregation[genre]) { genreAggregation[genre] = { genre, plays: 0 } } - genreAggregation[genre].plays++ + genreAggregation[genre]['plays']++ }) - return Object.values(genreAggregation).sort((a, b) => b.plays - a.plays) + return Object.values(genreAggregation).sort((a, b) => b['plays'] - a['plays']) } export default async function() { diff --git a/src/_data/utilities/index.js b/src/_data/utilities/index.js index 3af71282..9afb5f1c 100644 --- a/src/_data/utilities/index.js +++ b/src/_data/utilities/index.js @@ -1,6 +1,7 @@ import slugify from 'slugify' export const sanitizeMediaString = (str) => { + if (!str) return null const sanitizedString = str.normalize('NFD').replace(/[\u0300-\u036f\u2010—\.\?\(\)\[\]\{\}]/g, '').replace(/\.{3}/g, '') return slugify(sanitizedString, { diff --git a/src/_includes/partials/media/grid.liquid b/src/_includes/partials/media/grid.liquid index 1b80b9d1..1ec81e40 100644 --- a/src/_includes/partials/media/grid.liquid +++ b/src/_includes/partials/media/grid.liquid @@ -1,30 +1,28 @@ -{% if data.size > 0 %} - {% assign media = data | normalizeMedia %} -
- {% for item in media limit: count %} - {% assign alt = item.alt | strip | escape %} - -
-
- {% if item.title %} -
{{ item.title }}
- {% endif %} - {% if item.subtext %} -
- {{ item.subtext }} -
- {% endif %} -
- {%- capture loadingStrategy -%} - {%- if loading -%}{{ loading }}{%- else -%}lazy{%- endif -%} - {%- endcapture -%} - {% if shape == 'square' %} - - {% else %} - +{% assign media = data | normalizeMedia %} +
+ {% for item in media limit: count %} + {% assign alt = item.alt | strip | escape %} + + -{% endif %} \ No newline at end of file + {%- capture loadingStrategy -%} + {%- if loading -%}{{ loading }}{%- else -%}lazy{%- endif -%} + {%- endcapture -%} + {% if shape == 'square' %} + + {% else %} + + {% endif %} +
+ + {% endfor %} +
\ No newline at end of file diff --git a/src/_includes/partials/widgets/tags.liquid b/src/_includes/partials/widgets/tags.liquid index fc64d808..41205a14 100644 --- a/src/_includes/partials/widgets/tags.liquid +++ b/src/_includes/partials/widgets/tags.liquid @@ -1,6 +1,6 @@ {% assign filteredTags = tags | filterTags %} {% for tag in filteredTags limit: 10 %} - + {{ tag | formatTag }} {% endfor %}
\ No newline at end of file diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css index 9bfa515a..112451e2 100644 --- a/src/assets/styles/base/index.css +++ b/src/assets/styles/base/index.css @@ -477,7 +477,7 @@ article { } } -.post-tag { +.tag-element { margin-bottom: var(--sizing-lg); display: inline-block; @@ -639,7 +639,7 @@ li { } } - .post-tag { + .tag-element { margin-bottom: var(--sizing-sm); &:not(:last-child) { diff --git a/src/assets/styles/pages/music.css b/src/assets/styles/pages/music.css index 26554417..28e9c16f 100644 --- a/src/assets/styles/pages/music.css +++ b/src/assets/styles/pages/music.css @@ -1,6 +1,4 @@ .artist-focus { - border-bottom: 0; - & img { border: 1px solid var(--accent-color); } @@ -51,6 +49,11 @@ } } +.artist-focus, +.genre-focus { + border-bottom: 0; +} + @media screen and (min-width: 768px) { .artist-focus { & .artist-display { diff --git a/src/pages/main/books/book.html b/src/pages/main/books/book.html index d301c2c0..8364cd53 100644 --- a/src/pages/main/books/book.html +++ b/src/pages/main/books/book.html @@ -4,7 +4,7 @@ pagination: data: books size: 1 alias: book -permalink: /books/{{ book.isbn }}/ +permalink: /books/{{ book.isbn }}/index.html isbn: {{ book.isbn }} schema: book --- diff --git a/src/pages/main/music/albums/3-months.html b/src/pages/main/music/albums/3-months.html index f57f0d15..f4f6df0e 100644 --- a/src/pages/main/music/albums/3-months.html +++ b/src/pages/main/music/albums/3-months.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.threeMonth.albums.size }} albums over the last 3 months and most of what I've listened to has been {{ music.threeMonth.genres | genresToString: 5 }}.

+

I've listened to {{ music.threeMonth.albums.size }} albums over the last 3 months and most of what I've listened to has been {{ music.threeMonth.genres | sortByPlaysDescending | genreStrings: "genre" | genreLinks: 5 }}.

See my artists or tracks for this period.

{% render "partials/media/music/period/grid.liquid" data:pagination %} \ No newline at end of file diff --git a/src/pages/main/music/albums/all-time.html b/src/pages/main/music/albums/all-time.html index 434dd913..82d05a49 100644 --- a/src/pages/main/music/albums/all-time.html +++ b/src/pages/main/music/albums/all-time.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.allTime.albums.size }} albums and most of what I listen to is {{ music.allTime.genres | genresToString: 5 }}.

+

I've listened to {{ music.allTime.albums.size }} albums and most of what I listen to is {{ music.allTime.genres | sortByPlaysDescending | genreStrings: "genre" | genreLinks: 5 }}.

See my artists or tracks for this period.

{% render "partials/media/music/period/grid.liquid" data:pagination %} \ No newline at end of file diff --git a/src/pages/main/music/albums/this-month.html b/src/pages/main/music/albums/this-month.html index 79324a3a..fe0f7284 100644 --- a/src/pages/main/music/albums/this-month.html +++ b/src/pages/main/music/albums/this-month.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.month.albums.size }} albums this month and most of what I've listened to has been {{ music.month.genres | genresToString: 5 }}.

+

I've listened to {{ music.month.albums.size }} albums this month and most of what I've listened to has been {{ music.month.genres | sortByPlaysDescending | genreStrings: "genre" | genreLinks: 5 }}.

See my artists or tracks for this period.

{% render "partials/media/music/period/grid.liquid" data:pagination %} \ No newline at end of file diff --git a/src/pages/main/music/albums/this-week.html b/src/pages/main/music/albums/this-week.html index 2e9b7f26..f696fa30 100644 --- a/src/pages/main/music/albums/this-week.html +++ b/src/pages/main/music/albums/this-week.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.week.albums.size }} albums this week and most of what I've listened to has been {{ music.week.genres | genresToString: 5 }}.

+

I've listened to {{ music.week.albums.size }} albums this week and most of what I've listened to has been {{ music.week.genres | sortByPlaysDescending | genreStrings: "genre" | genreLinks: 5 }}.

See my artists or tracks for this period.

{% render "partials/media/music/period/grid.liquid" data:pagination %} \ No newline at end of file diff --git a/src/pages/main/music/artists/3-months.html b/src/pages/main/music/artists/3-months.html index 40a7bc46..b99d18bf 100644 --- a/src/pages/main/music/artists/3-months.html +++ b/src/pages/main/music/artists/3-months.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.threeMonth.artists.size }} artists over the last 3 months and most of what I've listened to has been {{ music.threeMonth.genres | genresToString: 5 }}.

+

I've listened to {{ music.threeMonth.artists.size }} artists over the last 3 months and most of what I've listened to has been {{ music.threeMonth.genres | sortByPlaysDescending | genreStrings: "genre" | genreLinks: 5 }}.

See my albums or tracks for this period.

{% render "partials/media/music/period/grid.liquid" data:pagination %} \ No newline at end of file diff --git a/src/pages/main/music/artists/all-time.html b/src/pages/main/music/artists/all-time.html index 73125d10..c3e84d64 100644 --- a/src/pages/main/music/artists/all-time.html +++ b/src/pages/main/music/artists/all-time.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.allTime.artists.size }} artists and most of what I listen to is {{ music.allTime.genres | genresToString: 5 }}.

+

I've listened to {{ music.allTime.artists.size }} artists and most of what I listen to is {{ music.allTime.genres | sortByPlaysDescending | genreStrings: "genre" | genreLinks: 5 }}.

See my albums or tracks for this period.

{% render "partials/media/music/period/grid.liquid" data:pagination %} \ No newline at end of file diff --git a/src/pages/main/music/artists/artist.html b/src/pages/main/music/artists/artist.html index 2c5d7572..ba14f740 100644 --- a/src/pages/main/music/artists/artist.html +++ b/src/pages/main/music/artists/artist.html @@ -4,7 +4,7 @@ pagination: data: artists size: 1 alias: artist -permalink: /music/artists/{{ artist.name_string | slugify | downcase }}-{{ artist.country | slugify | downcase}}/ +permalink: /music/artists/{{ artist.name_string | slugify | downcase }}-{{ artist.country | slugify | downcase}}/index.html updated: "now" schema: artist --- @@ -28,14 +28,18 @@ schema: artist {%- if artist.total_plays > 0 -%}

{{ artist.total_plays }} plays

{%- endif -%} -

{{ artist.genre }}

+

+ + {{ artist.genre }} + +

{% tablericon "brain" "MusicBrainz" %}

{%- if artist.description -%} -
{{ artist.description | markdown }}
+
{{ artist.description | markdown }}
{%- endif -%} diff --git a/src/pages/main/music/artists/this-month.html b/src/pages/main/music/artists/this-month.html index 73210a23..5d7ad732 100644 --- a/src/pages/main/music/artists/this-month.html +++ b/src/pages/main/music/artists/this-month.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.month.artists.size }} artists this month and most of what I've listened to has been {{ music.month.genres | genresToString: 5 }}.

+

I've listened to {{ music.month.artists.size }} artists this month and most of what I've listened to has been {{ music.month.genres | sortByPlaysDescending | genreStrings: "genre" | genreLinks: 5 }}.

See my albums or tracks for this period.

{% render "partials/media/music/period/grid.liquid" data:pagination %} \ No newline at end of file diff --git a/src/pages/main/music/artists/this-week.html b/src/pages/main/music/artists/this-week.html index e37f11d2..3e1c14a2 100644 --- a/src/pages/main/music/artists/this-week.html +++ b/src/pages/main/music/artists/this-week.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.week.artists.size }} artists this week and most of what I've listened to has been {{ music.week.genres | genresToString: 5 }}.

+

I've listened to {{ music.week.artists.size }} artists this week and most of what I've listened to has been {{ music.week.genres | sortByPlaysDescending | genreStrings: "genre" | genreLinks: 5 }}.

See my albums or tracks for this period.

{% render "partials/media/music/period/grid.liquid" data:pagination %} \ No newline at end of file diff --git a/src/pages/main/music/genre.html b/src/pages/main/music/genre.html new file mode 100644 index 00000000..761d7a8a --- /dev/null +++ b/src/pages/main/music/genre.html @@ -0,0 +1,30 @@ +--- +layout: default +pagination: + data: genres + size: 1 + alias: genre +permalink: /music/genre/{{ genre.name | slugify | downcase }}/index.html +updated: "now" +schema: genre +--- +{% assign artists = pagination.artists %} +{% capture js %} + {% render "../../../assets/scripts/text-toggle.js" %} +{% endcapture %} + + +{% tablericon "arrow-left" "Go back" %} Go back + +
+

My top {{ genre.name }} artists are {{ genre.artists | sortByPlaysDescending | listToString: "name_string", 5 }}. I've listened to {{ genre.name }} tracks {{ genre.total_plays | formatNumber }} times.

+
+ {%- if genre.description -%} +
+ {{ genre.description | markdown }} +

Continue reading at Wikipedia.

+

Wikipedia content provided under the terms of the Creative Commons BY-SA license

+
+ + {%- endif -%} +
\ No newline at end of file diff --git a/src/pages/main/music/index.html b/src/pages/main/music/index.html index 72994aac..37ad63db 100644 --- a/src/pages/main/music/index.html +++ b/src/pages/main/music/index.html @@ -11,7 +11,7 @@ schema: music

This is everything I've been listening to recently — it's collected in a database as I listen to it and displayed here. You can read more about the technical details, if you'd like.

-

I mostly listen to {{ music.allTime.genres | genresToString: 5 }}. This week I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks.

+

I mostly listen to {{ genres | sortByPlaysDescending | genreStrings: "name" | genreLinks: 5 }}. This week I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks.

{% render "partials/widgets/now-playing.liquid" %} {% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-artist-charts", text: "I also have a feed of weekly artist charts I generate from this data" %}
diff --git a/src/pages/main/music/tracks/3-months.html b/src/pages/main/music/tracks/3-months.html index 4bbfa031..419bd96b 100644 --- a/src/pages/main/music/tracks/3-months.html +++ b/src/pages/main/music/tracks/3-months.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.threeMonth.totalTracks }} tracks over the last 3 months and most of what I've listened to has been {{ music.threeMonth.genres | genresToString: 5 }}.

+

I've listened to {{ music.threeMonth.totalTracks }} tracks over the last 3 months and most of what I've listened to has been {{ music.threeMonth.genres | listToString: "genre", 5 }}.

See my artists or albums for this period.

{% render "partials/media/music/period/chart.liquid" data:pagination, playTotal: music.threeMonth.tracks[0].plays %} \ No newline at end of file diff --git a/src/pages/main/music/tracks/all-time.html b/src/pages/main/music/tracks/all-time.html index 777d5e35..ee7e867d 100644 --- a/src/pages/main/music/tracks/all-time.html +++ b/src/pages/main/music/tracks/all-time.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.allTime.totalTracks }} tracks and most of what I've listened to has been {{ music.allTime.genres | genresToString: 5 }}.

+

I've listened to {{ music.allTime.totalTracks }} tracks and most of what I've listened to has been {{ music.allTime.genres | listToString: "genre", 5 }}.

See my artists or albums for this period.

{% render "partials/media/music/period/chart.liquid" data:pagination, playTotal: music.allTime.tracks[0].plays %} \ No newline at end of file diff --git a/src/pages/main/music/tracks/this-month.html b/src/pages/main/music/tracks/this-month.html index 526e85b0..ee33ced8 100644 --- a/src/pages/main/music/tracks/this-month.html +++ b/src/pages/main/music/tracks/this-month.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.month.totalTracks }} tracks this month and most of what I've listened to has been {{ music.month.genres | genresToString: 5 }}.

+

I've listened to {{ music.month.totalTracks }} tracks this month and most of what I've listened to has been {{ music.month.genres | listToString: "genre", 5 }}.

See my artists or albums for this period.

{% render "partials/media/music/period/chart.liquid" data:pagination, playTotal: music.month.tracks[0].plays %} \ No newline at end of file diff --git a/src/pages/main/music/tracks/this-week.html b/src/pages/main/music/tracks/this-week.html index d3953bc6..051564c7 100644 --- a/src/pages/main/music/tracks/this-week.html +++ b/src/pages/main/music/tracks/this-week.html @@ -10,6 +10,6 @@ schema: music --- {% tablericon "arrow-left" "Go back" %} Go back -

I've listened to {{ music.week.totalTracks }} tracks this week and most of what I've listened to has been {{ music.week.genres | genresToString: 5 }}.

+

I've listened to {{ music.week.totalTracks }} tracks this week and most of what I've listened to has been {{ music.week.genres | listToString: "genre", 5 }}.

See my artists or albums for this period.

{% render "partials/media/music/period/chart.liquid" data:pagination, playTotal: music.week.tracks[0].plays %} \ No newline at end of file diff --git a/src/pages/main/watching/movie.html b/src/pages/main/watching/movie.html index 24d797ba..752ec7ad 100644 --- a/src/pages/main/watching/movie.html +++ b/src/pages/main/watching/movie.html @@ -4,7 +4,7 @@ pagination: data: movies.movies size: 1 alias: movie -permalink: /watching/movies/{{ movie.id }}/ +permalink: /watching/movies/{{ movie.id }}/index.html schema: movie --- {%- capture alt -%} diff --git a/src/pages/main/watching/show.html b/src/pages/main/watching/show.html index 51176993..23e89e9e 100644 --- a/src/pages/main/watching/show.html +++ b/src/pages/main/watching/show.html @@ -4,7 +4,7 @@ pagination: data: tv.shows size: 1 alias: show -permalink: /watching/shows/{{ show.tmdb_id }}/ +permalink: /watching/shows/{{ show.tmdb_id }}/index.html schema: show --- {%- capture alt -%}