chore: more consistent slugging

This commit is contained in:
Cory Dransfeldt 2024-06-03 11:39:41 -07:00
parent ae13df9813
commit a18d0049ba
No known key found for this signature in database
9 changed files with 15 additions and 18 deletions

View file

@ -1,5 +1,7 @@
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
const BASE_URL = 'https://coryd.dev'
export const searchIndex = (collection) => { export const searchIndex = (collection) => {
const searchIndex = [] const searchIndex = []
let id = 0 let id = 0
@ -22,7 +24,7 @@ export const searchIndex = (collection) => {
} }
} }
addItemToIndex(posts, '📝', item => item['url'], item => item['title'], item => item['tags']) addItemToIndex(posts, '📝', item => new URL(item['slug'], BASE_URL).toString(), 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'])
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 (bookData) addItemToIndex(bookData, '📖', item => item['url'], item => `${item['title']} (${item['rating']})`, item => item['tags']) if (bookData) addItemToIndex(bookData, '📖', item => item['url'], item => `${item['title']} (${item['rating']})`, item => item['tags'])
@ -52,10 +54,11 @@ export const allContent = (collection) => {
if (items) { if (items) {
items.forEach(item => { items.forEach(item => {
const content = { const content = {
url: `https://coryd.dev${item['url']}`, url: `${BASE_URL}${item['url']}`,
title: `${icon}: ${getTitle(item)}${item?.['authors']?.['name'] ? ' via ' + item['authors']['name'] : ''}` title: `${icon}: ${getTitle(item)}${item?.['authors']?.['name'] ? ' via ' + item['authors']['name'] : ''}`
} }
if (item?.['link']) content['url'] = item?.['link'] if (item?.['link']) content['url'] = item?.['link']
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
if (item?.['description']) content['description'] = `${item['description']}<br/><br/>` if (item?.['description']) content['description'] = `${item['description']}<br/><br/>`
const date = getDate ? parseDate(getDate(item)) : null const date = getDate ? parseDate(getDate(item)) : null
if (date) content['date'] = date if (date) content['date'] = date

View file

@ -121,6 +121,7 @@ export default {
// set the entry url // set the entry url
if (entry.url?.includes('http')) url = entry.url if (entry.url?.includes('http')) url = entry.url
if (!entry.url?.includes('http')) url = new URL(entry.url, BASE_URL).toString() if (!entry.url?.includes('http')) url = new URL(entry.url, BASE_URL).toString()
if (entry?.slug) url = new URL(entry.slug, BASE_URL).toString()
if (entry?.link) { if (entry?.link) {
title = `${entry.title} via ${entry.authors.name}` title = `${entry.title} via ${entry.authors.name}`
url = entry.link url = entry.link
@ -131,7 +132,7 @@ export default {
if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}<br/><br/>` // books if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}<br/><br/>` // books
// send full post content to rss // send full post content to rss
if (entry?.url?.includes('/posts/') && entry.content) excerpt = sanitizeHtml(`${md.render(entry.content)}${feedNote}`, { if (entry?.slug && entry.content) excerpt = sanitizeHtml(`${md.render(entry.content)}${feedNote}`, {
disallowedTagsMode: 'completelyDiscard' disallowedTagsMode: 'completelyDiscard'
}) })

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "18.6.9", "version": "18.7.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "18.6.9", "version": "18.7.9",
"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": "18.6.9", "version": "18.7.9",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,6 +1,4 @@
import { createClient } from '@supabase/supabase-js' import { createClient } from '@supabase/supabase-js'
import { DateTime } from 'luxon'
import slugify from 'slugify'
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
@ -81,11 +79,6 @@ const fetchAllPosts = async () => {
for (const post of data) { for (const post of data) {
post.tags = await fetchTagsForPost(post.id) post.tags = await fetchTagsForPost(post.id)
post.blocks = await fetchBlocksForPost(post.id) post.blocks = await fetchBlocksForPost(post.id)
post.url = `/posts/${DateTime.fromISO(post.date).year}/${slugify(post.title, {
replacement: '-',
remove: /[#,&,+()$~%.'":*?<>{}\[\]\/\\|`!@\^\—]/g,
lower: true,
})}/`
} }
posts = posts.concat(data) posts = posts.concat(data)

View file

@ -14,7 +14,7 @@
{{ post.date | date: "%B %e, %Y" }} {{ post.date | date: "%B %e, %Y" }}
</time> </time>
</div> </div>
<a href="{{ post.url }}"> <a href="{{ post.slug }}">
<h2 class="flex-centered">{{ post.title }}</h2> <h2 class="flex-centered">{{ post.title }}</h2>
</a> </a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span> <span class="p-author h-card hidden">{{ meta.siteName }}</span>

View file

@ -7,7 +7,7 @@
<ul class="link-list"> <ul class="link-list">
{% for post in postData limit: 5 %} {% for post in postData limit: 5 %}
<li> <li>
<a class="no-underline" href="{{ post.url }}" title="{{ post.title | escape}}"> <a class="no-underline" href="{{ post.slug }}" title="{{ post.title | escape}}">
{{ post.title }} {{ post.title }}
</a> </a>
</li> </li>

View file

@ -16,7 +16,7 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
{{ post.date | date: "%B %e, %Y" }} {{ post.date | date: "%B %e, %Y" }}
</time> </time>
</div> </div>
<a href="{{ post.url }}"> <a href="{{ post.slug }}">
<h2 class="flex-centered">{{ post.title }}</h2> <h2 class="flex-centered">{{ post.title }}</h2>
</a> </a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span> <span class="p-author h-card hidden">{{ meta.siteName }}</span>

View file

@ -4,10 +4,10 @@ pagination:
data: posts data: posts
size: 1 size: 1
alias: post alias: post
permalink: "/posts/{{ post.date | date: '%Y' }}/{{ post.title | slugifyPost }}/index.html" permalink: "{{ post.slug }}/index.html"
schema: blog schema: blog
--- ---
{%- capture postUrl %}{{ meta.url }}{{ post.url }}{% endcapture -%} {%- capture postUrl %}{{ meta.url }}{{ post.slug }}{% endcapture -%}
<article class="h-entry"> <article class="h-entry">
<div class="flex-centered gap-xs icon-small icon-light"> <div class="flex-centered gap-xs icon-small icon-light">
{% tablericon "calendar-month" "Date" %} {% tablericon "calendar-month" "Date" %}