chore: more tags
This commit is contained in:
parent
408b7bcc2c
commit
35848faf2d
4 changed files with 21 additions and 2 deletions
|
@ -50,14 +50,19 @@ export const tagMap = (collection) => {
|
||||||
const collectionData = collection.getAll()[0]
|
const collectionData = collection.getAll()[0]
|
||||||
const posts = collectionData.data.collections.posts
|
const posts = collectionData.data.collections.posts
|
||||||
const links = collectionData.data.collections.links
|
const links = collectionData.data.collections.links
|
||||||
|
const books = collectionData.data.books
|
||||||
|
|
||||||
if (posts) {
|
if (posts) {
|
||||||
posts.forEach((post) => {
|
posts.forEach((post) => {
|
||||||
const url = post.url.includes('http') ? post.url : `https://coryd.dev${post.url}`
|
const url = post.url.includes('http') ? post.url : `https://coryd.dev${post.url}`
|
||||||
const tagString = [...new Set(post.data.tags.map((tag) => tagAliases[tag.toLowerCase()]))]
|
const tagString = [...new Set(post.data.tags?.map((tag) => tagAliases[tag.toLowerCase()]))]
|
||||||
.join(' ')
|
.join(' ')
|
||||||
.trim()
|
.trim()
|
||||||
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
|
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if (links) {
|
||||||
links.forEach((link) => {
|
links.forEach((link) => {
|
||||||
const url = link.data.link
|
const url = link.data.link
|
||||||
const tagString = [...new Set(link.data.tags?.map((tag) => tagAliases[tag.toLowerCase()]))]
|
const tagString = [...new Set(link.data.tags?.map((tag) => tagAliases[tag.toLowerCase()]))]
|
||||||
|
@ -66,6 +71,17 @@ export const tagMap = (collection) => {
|
||||||
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
|
if (tagString) tags[url] = tagString.replace(/\s+/g,' ')
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (books) {
|
||||||
|
books.forEach((book) => {
|
||||||
|
const tagString = book?.['tags']
|
||||||
|
.map((tag) => tagAliases[tag.toLowerCase()])
|
||||||
|
.join(' ')
|
||||||
|
.trim()
|
||||||
|
if (tagString) tags[book.url] = tagString.replace(/\s+/g,' ')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
return tags
|
return tags
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -27,11 +27,13 @@ export default {
|
||||||
macos: '#macOS #Apple',
|
macos: '#macOS #Apple',
|
||||||
mastodon: '#Mastodon',
|
mastodon: '#Mastodon',
|
||||||
music: '#Music',
|
music: '#Music',
|
||||||
|
nonfiction: '#NonFiction',
|
||||||
privacy: '#Privacy',
|
privacy: '#Privacy',
|
||||||
productivity: '#Productivity',
|
productivity: '#Productivity',
|
||||||
react: '#JavaScript',
|
react: '#JavaScript',
|
||||||
rss: '#RSS',
|
rss: '#RSS',
|
||||||
shoegaze: '#Shoegaze',
|
shoegaze: '#Shoegaze',
|
||||||
|
scifi: '#SciFi',
|
||||||
'social media': '#SocialMedia',
|
'social media': '#SocialMedia',
|
||||||
spotify: '#Music',
|
spotify: '#Music',
|
||||||
'surveillance capitalism': '#SurveillanceCapitalism',
|
'surveillance capitalism': '#SurveillanceCapitalism',
|
||||||
|
|
|
@ -63,7 +63,7 @@ export default {
|
||||||
|
|
||||||
tagLookup: (url, tagMap) => {
|
tagLookup: (url, tagMap) => {
|
||||||
if (!url) return
|
if (!url) return
|
||||||
if (url.includes('openlibrary.org')) return '#Books #NowReading'
|
if (url.includes('openlibrary.org')) return `#Books #NowReading ${tagMap[url]}`
|
||||||
if (url.includes('trakt.tv')) return '#Movies #Watching #Trakt'
|
if (url.includes('trakt.tv')) return '#Movies #Watching #Trakt'
|
||||||
return tagMap[url] || ''
|
return tagMap[url] || ''
|
||||||
},
|
},
|
||||||
|
|
|
@ -12,6 +12,7 @@ export default async function () {
|
||||||
url: `https://openlibrary.org/isbn/${book['isbn']}`,
|
url: `https://openlibrary.org/isbn/${book['isbn']}`,
|
||||||
dateAdded: book?.['dateStarted'] || book?.['dateFinished'],
|
dateAdded: book?.['dateStarted'] || book?.['dateFinished'],
|
||||||
status: book['status'],
|
status: book['status'],
|
||||||
|
tags: book['tags'],
|
||||||
type: 'book',
|
type: 'book',
|
||||||
}
|
}
|
||||||
))
|
))
|
||||||
|
|
Reference in a new issue