chore: verify slugs are unique

This commit is contained in:
Cory Dransfeldt 2024-06-28 16:59:41 -07:00
parent 56b766eefc
commit 8f71fd81c1
No known key found for this signature in database
3 changed files with 22 additions and 18 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.6.16", "version": "19.6.17",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.6.16", "version": "19.6.17",
"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": "19.6.16", "version": "19.6.17",
"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

@ -21,6 +21,20 @@ const fetchBlockData = async (collection, itemId) => {
return data return data
} }
const fetchTagsForPost = async (postId) => {
const { data, error } = await supabase
.from('posts_tags')
.select('tags(id, name)')
.eq('posts_id', postId)
if (error) {
console.error(`Error fetching tags for post ${postId}:`, error)
return []
}
return data.map(pt => pt.tags.name)
}
const fetchBlocksForPost = async (postId) => { const fetchBlocksForPost = async (postId) => {
const { data, error } = await supabase const { data, error } = await supabase
.from('posts_blocks') .from('posts_blocks')
@ -43,24 +57,11 @@ const fetchBlocksForPost = async (postId) => {
return blocks return blocks
} }
const fetchTagsForPost = async (postId) => {
const { data, error } = await supabase
.from('posts_tags')
.select('tags(id, name)')
.eq('posts_id', postId)
if (error) {
console.error(`Error fetching tags for post ${postId}:`, error)
return []
}
return data.map(pt => pt.tags.name)
}
const fetchAllPosts = async () => { const fetchAllPosts = async () => {
let posts = [] let posts = []
let page = 0 let page = 0
let fetchMore = true let fetchMore = true
const uniqueSlugs = new Set()
while (fetchMore) { while (fetchMore) {
const { data, error } = await supabase const { data, error } = await supabase
@ -77,11 +78,14 @@ const fetchAllPosts = async () => {
if (data.length < PAGE_SIZE) fetchMore = false if (data.length < PAGE_SIZE) fetchMore = false
for (const post of data) { for (const post of data) {
if (uniqueSlugs.has(post.slug)) continue
uniqueSlugs.add(post.slug)
post.tags = await fetchTagsForPost(post.id) post.tags = await fetchTagsForPost(post.id)
post.blocks = await fetchBlocksForPost(post.id) post.blocks = await fetchBlocksForPost(post.id)
posts.push(post)
} }
posts = posts.concat(data)
page++ page++
} }