chore: deduplicate permalinks; fix sitemap; organize

This commit is contained in:
Cory Dransfeldt 2024-07-15 22:52:57 -07:00
parent b40986256a
commit ae1cb3dc5e
No known key found for this signature in database
64 changed files with 94 additions and 31 deletions

View file

@ -7,7 +7,7 @@ import markdownItFootnote from 'markdown-it-footnote'
import htmlmin from 'html-minifier-terser' import htmlmin from 'html-minifier-terser'
import filters from './config/filters/index.js' import filters from './config/filters/index.js'
import { minifyJsComponents } from './config/events/index.js' import { minifyJsComponents } from './config/events/index.js'
import { allContent, popularPosts, searchIndex } from './config/collections/index.js' import { allContent, popularPosts, searchIndex, siteMap } from './config/collections/index.js'
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
// load .env // load .env
@ -56,6 +56,7 @@ export default async function (eleventyConfig) {
eleventyConfig.addCollection('allContent', allContent) eleventyConfig.addCollection('allContent', allContent)
eleventyConfig.addCollection('popularPosts', popularPosts) eleventyConfig.addCollection('popularPosts', popularPosts)
eleventyConfig.addCollection('searchIndex', searchIndex) eleventyConfig.addCollection('searchIndex', searchIndex)
eleventyConfig.addCollection('siteMap', siteMap)
const md = markdownIt({ html: true, linkify: true }) const md = markdownIt({ html: true, linkify: true })
md.use(markdownItAnchor, { md.use(markdownItAnchor, {
@ -111,8 +112,8 @@ export default async function (eleventyConfig) {
passthroughFileCopy: true, passthroughFileCopy: true,
dir: { dir: {
input: 'src', input: 'src',
includes: '_includes', includes: 'includes',
data: '_data', data: 'data',
output: '_site', output: '_site',
}, },
} }

View file

@ -128,3 +128,59 @@ export const popularPosts = (collection) => {
return visitors(b) - visitors(a) return visitors(b) - visitors(a)
}) })
} }
export const siteMap = (collection) => {
const aggregateContent = []
const collectionData = collection.getAll()[0]
const { data } = collectionData
const { posts, pages, artists, genres, movies, tv, books } = data
const parseDate = (date) => {
if (!date) return null
let parsedDate = DateTime.fromISO(date)
if (!parsedDate.isValid) parsedDate = DateTime.fromFormat(date, 'yyyy-MM-dd')
if (!parsedDate.isValid) parsedDate = DateTime.fromFormat(date, 'MM/dd/yyyy')
if (!parsedDate.isValid) parsedDate = DateTime.fromFormat(date, 'dd-MM-yyyy')
return parsedDate.isValid ? parsedDate.toISO() : null
}
const addedUrls = new Set()
const addContent = (items, getTitle, getDate) => {
if (items) {
items.forEach(item => {
let url
if (item?.['url']) url = item['url']
if (item?.['permalink']) url = item['permalink']
if (item?.['slug']) url = item['slug']
if (!url || addedUrls.has(url)) return
const content = {
url,
title: getTitle(item),
date: getDate ? parseDate(getDate(item)) : null
}
aggregateContent.push(content)
addedUrls.add(url)
})
}
}
if (posts) addContent(posts, item => item.title, item => item.date)
if (pages) addContent(pages, item => item.title, item => item.date)
if (artists) addContent(artists, item => item.name, item => item.date)
if (genres) addContent(genres, item => item.name, item => item.date)
if (movies?.['movies']) addContent(movies['movies'], item => item.title, item => item.date)
if (books?.['all']) addContent(books['all'], item => item.title, item => item.date)
if (tv?.['shows']) addContent(tv['shows'], item => item.title, item => item.date)
collection.getAll().forEach(item => {
if (item.data.pages) addContent(item.data.pages, item => item.title, item => item.date)
})
return aggregateContent.sort((a, b) => {
const dateA = a.date ? DateTime.fromISO(a.date) : DateTime.fromMillis(0)
const dateB = b.date ? DateTime.fromISO(b.date) : DateTime.fromMillis(0)
return dateB - dateA
})
}

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.8.5", "version": "20.9.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.8.5", "version": "20.9.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.8.5", "version": "20.9.0",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,5 +1,5 @@
import { createClient } from '@supabase/supabase-js' import { createClient } from '@supabase/supabase-js'
import { parseCountryField } from '../../config/utilities/index.js' import { sanitizeMediaString, parseCountryField } from '../../config/utilities/index.js'
const SUPABASE_URL = process.env.SUPABASE_URL const SUPABASE_URL = process.env.SUPABASE_URL
const SUPABASE_KEY = process.env.SUPABASE_KEY const SUPABASE_KEY = process.env.SUPABASE_KEY
@ -72,6 +72,7 @@ export default async function () {
artist['image'] = `/${artist['art']['filename_disk']}` artist['image'] = `/${artist['art']['filename_disk']}`
artist['country'] = parseCountryField(artist['country']) artist['country'] = parseCountryField(artist['country'])
artist['genres'] = genreMapping[artist['genres']] || '' artist['genres'] = genreMapping[artist['genres']] || ''
artist['url'] = `/music/artists/${sanitizeMediaString(artist['name_string'])}-${sanitizeMediaString(artist['country'])}`
} }
return artists return artists

View file

@ -1,4 +1,5 @@
import { createClient } from '@supabase/supabase-js' import { createClient } from '@supabase/supabase-js'
import slugify from 'slugify'
import { parseCountryField } from '../../config/utilities/index.js' import { parseCountryField } from '../../config/utilities/index.js'
const SUPABASE_URL = process.env.SUPABASE_URL const SUPABASE_URL = process.env.SUPABASE_URL
@ -34,6 +35,7 @@ const fetchGenresWithArtists = async () => {
...artist, ...artist,
country: parseCountryField(artist['country']) country: parseCountryField(artist['country'])
})) }))
genre['url'] = `/music/genres/${slugify(genre['name'].toLowerCase())}`
}) })
return data return data

View file

@ -48,7 +48,8 @@ const prepareShowData = (show) => {
return { return {
...show, ...show,
image: show['art']?.['filename_disk'] ? `/${show['art']['filename_disk']}` : '', image: show['art']?.['filename_disk'] ? `/${show['art']['filename_disk']}` : '',
backdrop: show['backdrop']?.['filename_disk'] ? `/${show['backdrop']['filename_disk']}` : '' backdrop: show['backdrop']?.['filename_disk'] ? `/${show['backdrop']['filename_disk']}` : '',
url: `/watching/shows/${show['tmdb_id']}`,
} }
} }
@ -121,24 +122,24 @@ export default async function () {
sortedShows.forEach(show => { sortedShows.forEach(show => {
const startingEpisode = show['episodes'][show['episodes'].length - 1]['episode'] const startingEpisode = show['episodes'][show['episodes'].length - 1]['episode']
const startingSeason = show['episodes'][show['episodes'].length - 1]['season'] const startingSeason = show['episodes'][show['episodes'].length - 1]['season']
const endingEpisode = show['episodes'][0].episode const endingEpisode = show['episodes'][0]['episode']
const endingSeason = show['episodes'][0].season const endingSeason = show['episodes'][0]['season']
if (show['episodes'].length > 1) { if (show['episodes'].length > 1) {
episodeData.push({ episodeData.push({
name: show.title, name: show['title'],
url: `/watching/shows/${show.tmdbId}`, url: `/watching/shows/${show['tmdbId']}`,
subtext: `S${startingSeason}E${startingEpisode} - S${endingSeason}E${endingEpisode}`, subtext: `S${startingSeason}E${startingEpisode} - S${endingSeason}E${endingEpisode}`,
startingEpisode, startingEpisode,
startingSeason, startingSeason,
episode: endingEpisode, episode: endingEpisode,
season: endingSeason, season: endingSeason,
tmdbId: show.tmdbId, tmdbId: show['tmdbId'],
collected: show.collected, collected: show['collected'],
favorite: show.favorite, favorite: show['favorite'],
type: 'tv-range', type: 'tv-range',
image: show.image, image: show['image'],
backdrop: show.backdrop backdrop: show['backdrop']
}) })
} else { } else {
const singleEpisode = show['episodes'][0] const singleEpisode = show['episodes'][0]

View file

@ -4,14 +4,12 @@ eleventyExcludeFromCollections: true
--- ---
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in collections.all %} {% for page in collections.siteMap %}
{% if not page.data.draft %}
<url> <url>
<loc>{{ globals.url }}{{ page.url }}</loc> <loc>{{ globals.url }}{{ page.url }}</loc>
<lastmod>{{ page.date | isoDateOnly: '-' }}</lastmod> <lastmod>{{ page.date | date: '%Y-%m-%d' }}</lastmod>
<changefreq>{%- if page.data.changeFreq -%}{{ page.data.changeFreq }}{%- else -%}monthly{%- endif -%}</changefreq> <changefreq>{% if page.data.changeFreq %}{{ page.data.changeFreq }}{% else %}monthly{% endif %}</changefreq>
<priority>{%- if page.data.priority -%}{{ page.data.priority }}{%- else -%}0.5{%- endif %}</priority> <priority>{% if page.data.priority %}{{ page.data.priority }}{% else %}0.5{% endif %}</priority>
</url> </url>
{% endif %}
{% endfor %} {% endfor %}
</urlset> </urlset>

View file

@ -4,7 +4,7 @@ pagination:
data: books.all data: books.all
size: 1 size: 1
alias: book alias: book
permalink: "/books/{{ book.isbn }}/index.html" permalink: "{{ book.url }}/index.html"
isbn: {{ book.isbn }} isbn: {{ book.isbn }}
schema: book schema: book
--- ---
@ -50,6 +50,7 @@ schema: book
</div> </div>
{% if book.review %} {% if book.review %}
{% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %} {% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}
<h3>My thoughts</h3>
{{ book.review | markdown }} {{ book.review | markdown }}
<hr /> <hr />
{% endif %} {% endif %}

View file

@ -4,7 +4,7 @@ pagination:
data: artists data: artists
size: 1 size: 1
alias: artist alias: artist
permalink: "/music/artists/{{ artist.name_string | sanitizeMediaString }}-{{ artist.country | sanitizeMediaString }}/index.html" permalink: "{{ artist.url }}/index.html"
updated: "now" updated: "now"
schema: artist schema: artist
--- ---

View file

@ -4,7 +4,7 @@ pagination:
data: genres data: genres
size: 1 size: 1
alias: genre alias: genre
permalink: "/music/genres/{{ genre.name | slugify | downcase }}/index.html" permalink: "{{ genre.url }}/index.html"
updated: "now" updated: "now"
schema: genre schema: genre
--- ---

View file

@ -4,7 +4,7 @@ pagination:
data: movies.movies data: movies.movies
size: 1 size: 1
alias: movie alias: movie
permalink: /watching/movies/{{ movie.id }}/index.html permalink: "{{ movie.url }}/index.html"
schema: movie schema: movie
--- ---
{%- capture alt -%} {%- capture alt -%}
@ -39,6 +39,7 @@ schema: movie
</div> </div>
{% if movie.review %} {% if movie.review %}
{% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %} {% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}
<h3>My thoughts</h3>
{{ movie.review | markdown }} {{ movie.review | markdown }}
<hr /> <hr />
{% endif %} {% endif %}

View file

@ -4,7 +4,7 @@ pagination:
data: tv.shows data: tv.shows
size: 1 size: 1
alias: show alias: show
permalink: /watching/shows/{{ show.tmdb_id }}/index.html permalink: "{{ show.url }}/index.html"
schema: show schema: show
--- ---
{%- capture alt -%} {%- capture alt -%}
@ -38,6 +38,8 @@ schema: show
<p class="sub-meta"><a href="https://themoviedb.org/tv/{{ show.tmdb_id }}" title="View {{ show.title | escape }} on TMDB">View on TMDB</a></p> <p class="sub-meta"><a href="https://themoviedb.org/tv/{{ show.tmdb_id }}" title="View {{ show.title | escape }} on TMDB">View on TMDB</a></p>
</div> </div>
{% if show.review %} {% if show.review %}
{% render "partials/blocks/banners/warning.liquid", text: "There are probably spoilers after this banner — this is a warning about them." %}
<h3>My thoughts</h3>
{{ show.review | markdown }} {{ show.review | markdown }}
<hr /> <hr />
{% endif %} {% endif %}