fix: urls + search

This commit is contained in:
Cory Dransfeldt 2024-10-08 18:54:10 -07:00
parent 23602a7ce0
commit 23f2db35d4
No known key found for this signature in database
3 changed files with 53 additions and 54 deletions

View file

@ -1,5 +1,5 @@
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
import markdownIt from 'markdown-it'; import markdownIt from 'markdown-it'
import ics from 'ics' import ics from 'ics'
const BASE_URL = 'https://coryd.dev' const BASE_URL = 'https://coryd.dev'
@ -28,6 +28,7 @@ export const processContent = (collection) => {
const searchIndex = [] const searchIndex = []
const aggregateContent = [] const aggregateContent = []
let id = 0 let id = 0
const collectionData = collection.getAll()[0] const collectionData = collection.getAll()[0]
const { data } = collectionData const { data } = collectionData
const { posts, links, movies, books, pages, artists, genres, tv, concerts, albumReleases } = data const { posts, links, movies, books, pages, artists, genres, tv, concerts, albumReleases } = data
@ -53,41 +54,51 @@ export const processContent = (collection) => {
return null return null
} }
const absoluteUrl = (url) => new URL(url, BASE_URL).toString()
const isValidUrl = (url) => {
try {
new URL(url)
return true
} catch {
return false
}
}
const addSiteMapContent = (items, getTitle, getDate) => { const addSiteMapContent = (items, getTitle, getDate) => {
const addedUrls = new Set() const addedUrls = new Set()
if (items) { if (items) {
items.forEach((item) => { items.forEach((item) => {
let url let url = item?.['permalink'] || item?.['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 if (!url || addedUrls.has(url)) return
if (!isValidUrl(url)) url = absoluteUrl(url)
if (addedUrls.has(url)) return
const parsedDate = getDate ? parseDate(getDate(item)) : null const parsedDate = getDate ? parseDate(getDate(item)) : null
const formattedDate = parsedDate ? parsedDate.toFormat("yyyy-MM-dd'T'HH:mm:ssZZ") : null const formattedDate = parsedDate ? parsedDate.toFormat("yyyy-MM-dd'T'HH:mm:ssZZ") : null
const content = { const content = {
url, url,
title: getTitle(item), title: getTitle(item),
date: formattedDate date: formattedDate
} }
siteMapContent.push(content) siteMapContent.push(content)
addedUrls.add(url) addedUrls.add(url)
}) })
} }
} }
const movieData = movies['movies'].filter((movie) => movie['rating'])
const showData = tv['shows'].filter((show) => show['episodes']?.[0]?.['last_watched_at'])
const bookData = books.all.filter((book) => book['rating'])
const addItemToIndex = (items, icon, getUrl, getTitle, getTags) => { const addItemToIndex = (items, icon, getUrl, getTitle, getTags) => {
if (items) { if (items) {
items.forEach((item) => { items.forEach((item) => {
const url = getUrl(item)
if (!url) return
const absoluteUrlString = isValidUrl(url) ? url : absoluteUrl(url)
searchIndex.push({ searchIndex.push({
id, id,
url: getUrl(item), url: absoluteUrlString,
title: `${icon}: ${getTitle(item)}`, title: `${icon}: ${getTitle(item)}`,
tags: getTags ? getTags(item) : [] tags: getTags ? getTags(item) : []
}) })
@ -99,37 +110,31 @@ export const processContent = (collection) => {
const addContent = (items, icon, getTitle, getDate) => { const addContent = (items, icon, getTitle, getDate) => {
if (items) { if (items) {
items.forEach((item) => { items.forEach((item) => {
let attribution let attribution = ''
let hashTags = tagsToHashtags(item) ? ' ' + tagsToHashtags(item) : '' let hashTags = tagsToHashtags(item) ? ' ' + tagsToHashtags(item) : ''
if (item['type'] === 'album-release') hashTags = ' #Music #NewMusic' if (item['type'] === 'album-release') hashTags = ' #Music #NewMusic'
if (item['type'] === 'concert') hashTags = ' #Music #Concert' if (item['type'] === 'concert') hashTags = ' #Music #Concert'
// link attribution if properties exist
if (item?.['authors']?.['mastodon']) { if (item?.['authors']?.['mastodon']) {
const mastoUrl = new URL(item['authors']['mastodon']) const mastoUrl = new URL(item['authors']['mastodon'])
attribution = `${mastoUrl.pathname.replace('/', '')}@${mastoUrl.host}` attribution = `${mastoUrl.pathname.replace('/', '')}@${mastoUrl.host}`
} else if (!item?.['authors']?.['mastodon'] && item?.['authors']?.['name']) { } else if (item?.['authors']?.['name']) {
attribution = item['authors']['name'] attribution = item['authors']['name']
} }
let url = item['url'] || item['link']
if (url && !isValidUrl(url)) url = absoluteUrl(url)
if (item['type'] === 'concert') url = `${item['artistUrl'] ? item['artistUrl'] : BASE_URL + '/music/concerts'}?t=${DateTime.fromISO(item['date']).toMillis()}${item['artistUrl'] ? '#concerts' : ''}`
const content = { const content = {
url: !item['url']?.includes('http') ? `${BASE_URL}${item['url']}` : item['url'], url,
title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`, title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`,
type: item['type'] type: item['type']
} }
// set url for link posts if (item['description']) {
if (item?.['link']) content['url'] = item?.['link']
// set url for posts - identified as slugs here
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
// set unique concert urls
if (item?.['type'] === 'concert') content['url'] = `${item['artistUrl'] ? item['artistUrl'] : BASE_URL + '/music/concerts'}?t=${DateTime.fromISO(item['date']).toMillis()}${item['artistUrl'] ? '#concerts' : ''}`
if (item?.['description']) {
content['description'] = md.render(item['description']) content['description'] = md.render(item['description'])
} else if (item?.['notes']) { } else if (item['notes']) {
content['notes'] = md.render(item['notes']) content['notes'] = md.render(item['notes'])
} else { } else {
content['description'] = '' content['description'] = ''
@ -143,9 +148,13 @@ export const processContent = (collection) => {
} }
} }
addItemToIndex(posts, '📝', (item) => new URL(item['slug'], BASE_URL).toString(), (item) => item['title'], (item) => item['tags']) const movieData = movies['movies'].filter((movie) => movie['rating'])
const showData = tv['shows'].filter((show) => show['episodes']?.[0]?.['last_watched_at'])
const bookData = books.all.filter((book) => book['rating'])
addItemToIndex(posts, '📝', (item) => item['url'], (item) => item['title'], (item) => item['tags'])
addItemToIndex(links, '🔗', (item) => item['link'], (item) => item['title'], (item) => item['tags']) addItemToIndex(links, '🔗', (item) => item['link'], (item) => item['title'], (item) => item['tags'])
addItemToIndex(artists, '🎙️', (item) => item['url'], (item) => `${item['name']} (${item['country']}) - ${item['genre']}`, (item) => `['${item['genre']}']`) addItemToIndex(artists, '🎙️', (item) => item['url'], (item) => `${item['name']} (${item['country']}) - ${item['genre']['name']}`, (item) => `['${item['genre']}']`)
addItemToIndex(genres, '🎵', (item) => item['url'], (item) => item['name'], (item) => item.artists.map(artist => artist['name_string'])) addItemToIndex(genres, '🎵', (item) => item['url'], (item) => item['name'], (item) => item.artists.map(artist => artist['name_string']))
if (movieData) addItemToIndex(movieData, '🎥', (item) => item['url'], (item) => `${item['title']} (${item['rating']})`, (item) => item['tags']) if (movieData) addItemToIndex(movieData, '🎥', (item) => item['url'], (item) => `${item['title']} (${item['rating']})`, (item) => item['tags'])
if (showData) addItemToIndex(showData, '📺', (item) => item['url'], (item) => `${item['title']} (${item['year']})`, (item) => item['tags']) if (showData) addItemToIndex(showData, '📺', (item) => item['url'], (item) => `${item['title']} (${item['year']})`, (item) => item['tags'])

View file

@ -1,5 +1,4 @@
import { createClient } from '@supabase/supabase-js' import { createClient } from '@supabase/supabase-js'
import { 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
@ -16,17 +15,9 @@ const fetchAllConcerts = async () => {
.select(` .select(`
id, id,
date, date,
artist_name_string,
venue,
concert_notes,
artist, artist,
venue_name, venue,
latitude, concert_notes
longitude,
bounding_box,
venue_notes,
artist_name,
artist_country
`) `)
.range(rangeStart, rangeStart + PAGE_SIZE - 1) .range(rangeStart, rangeStart + PAGE_SIZE - 1)
@ -48,21 +39,20 @@ const processConcerts = (concerts) => {
id: concert['id'], id: concert['id'],
type: 'concert', type: 'concert',
date: concert['date'], date: concert['date'],
artistNameString: concert['artist_name_string'], artist: concert['artist'] && typeof concert['artist'] === 'object' ? {
venue: { name: concert['artist'].name,
name: concert['venue_name'], url: concert['artist'].url
latitude: concert['latitude'], } : { name: concert['artist'], url: null },
longitude: concert['longitude'], venue: concert['venue'] && typeof concert['venue'] === 'object' ? {
boundingBox: concert['bounding_box'], name: concert['venue'].name,
notes: concert['venue_notes'] latitude: concert['venue'].latitude,
}, longitude: concert['venue'].longitude,
notes: concert['venue'].notes
} : null,
description: 'I went to (yet another) concert!', description: 'I went to (yet another) concert!',
notes: concert['concert_notes'], notes: concert['concert_notes'],
artist: concert['artist'] ? {
name: concert['artist_name'],
} : null,
url: `/music/concerts?id=${concert['id']}`, url: `/music/concerts?id=${concert['id']}`,
artistUrl: concert['artist'] ? concert['artist_url'] : null artistUrl: concert['artist'] && typeof concert['artist'] === 'object' ? concert['artist'].url : null
})).sort((a, b) => new Date(b['date']) - new Date(a['date'])) })).sort((a, b) => new Date(b['date']) - new Date(a['date']))
} }

View file

@ -15,10 +15,10 @@ permalink: "/music/concerts/{% if pagination.pageNumber > 0 %}{{ pagination.page
<ul class="concert-list"> <ul class="concert-list">
{%- for concert in pagination.items -%} {%- for concert in pagination.items -%}
{%- capture artistName -%} {%- capture artistName -%}
{% if concert.artistNameString %} {% if concert.artist.url %}
{{ concert.artistNameString }} <a href="{{ concert.artist.url }}">{{ concert.artist.name }}</a>
{% else %} {% else %}
<a href="{{ concert.artistUrl }}">{{ concert.artist.name }}</a> {{ concert.artist.name }}
{% endif %} {% endif %}
{%- endcapture -%} {%- endcapture -%}
{%- capture venue -%} {%- capture venue -%}