feat: add tags to shared content
This commit is contained in:
parent
64e434c6b9
commit
7216b848f4
8 changed files with 84 additions and 10 deletions
45
.eleventy.js
45
.eleventy.js
|
@ -17,6 +17,7 @@ const feedFilters = require('./config/feedFilters.js')
|
||||||
const CleanCSS = require('clean-css')
|
const CleanCSS = require('clean-css')
|
||||||
const now = String(Date.now())
|
const now = String(Date.now())
|
||||||
const { execSync } = require('child_process')
|
const { execSync } = require('child_process')
|
||||||
|
const tagAliases = require('./src/_data/json/tag-aliases.json')
|
||||||
|
|
||||||
// load .env
|
// load .env
|
||||||
require('dotenv-flow').config()
|
require('dotenv-flow').config()
|
||||||
|
@ -79,6 +80,50 @@ module.exports = function (eleventyConfig) {
|
||||||
return Array.from(tagsSet).sort()
|
return Array.from(tagsSet).sort()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
eleventyConfig.addCollection('tagMap', (collection) => {
|
||||||
|
const tags = {}
|
||||||
|
collection.getAll().forEach((item) => {
|
||||||
|
if (item.data.collections.posts) {
|
||||||
|
item.data.collections.posts.forEach((post) => {
|
||||||
|
const url = post.url.includes('http') ? post.url : `https://coryd.dev${post.url}`
|
||||||
|
const tagString = post.data.tags
|
||||||
|
.map((tag) => {
|
||||||
|
if (
|
||||||
|
typeof tagAliases.tags.find((t) => t.aliases.includes(tag.toLowerCase()))?.[
|
||||||
|
'tag'
|
||||||
|
] !== 'undefined'
|
||||||
|
)
|
||||||
|
return `#${
|
||||||
|
tagAliases.tags.find((t) => t.aliases.includes(tag.toLowerCase()))?.['tag']
|
||||||
|
}`
|
||||||
|
})
|
||||||
|
.join(' ')
|
||||||
|
.trim()
|
||||||
|
if (tagString) tags[url] = tagString
|
||||||
|
})
|
||||||
|
}
|
||||||
|
if (item.data.links) {
|
||||||
|
item.data.links.forEach((link) => {
|
||||||
|
const tagString = link.tags
|
||||||
|
.map((tag) => {
|
||||||
|
if (
|
||||||
|
typeof tagAliases.tags.find((t) => t.aliases.includes(tag.toLowerCase()))?.[
|
||||||
|
'tag'
|
||||||
|
] !== 'undefined'
|
||||||
|
)
|
||||||
|
return `#${
|
||||||
|
tagAliases.tags.find((t) => t.aliases.includes(tag.toLowerCase()))?.['tag']
|
||||||
|
}`
|
||||||
|
})
|
||||||
|
.join(' ')
|
||||||
|
.trim()
|
||||||
|
if (tagString) tags[link.url] = tagString
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return tags
|
||||||
|
})
|
||||||
|
|
||||||
md.use(markdownItAnchor, {
|
md.use(markdownItAnchor, {
|
||||||
level: [1, 2],
|
level: [1, 2],
|
||||||
permalink: markdownItAnchor.permalink.headerLink({
|
permalink: markdownItAnchor.permalink.headerLink({
|
||||||
|
|
2
.github/workflows/scheduled-post.yaml
vendored
2
.github/workflows/scheduled-post.yaml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
||||||
- name: Feed to Mastodon
|
- name: Feed to Mastodon
|
||||||
uses: nhoizey/github-action-feed-to-mastodon@v2
|
uses: nhoizey/github-action-feed-to-mastodon@v2
|
||||||
with:
|
with:
|
||||||
feedUrl: "https://coryd.dev/feeds/follow.json"
|
feedUrl: "https://coryd.dev/feeds/share-follow.json"
|
||||||
mastodonInstance: "https://social.lol"
|
mastodonInstance: "https://social.lol"
|
||||||
mastodonToken: ${{ secrets.MASTODON_TOKEN }}
|
mastodonToken: ${{ secrets.MASTODON_TOKEN }}
|
||||||
globalDelayToots: 0
|
globalDelayToots: 0
|
||||||
|
|
|
@ -42,6 +42,9 @@ module.exports = {
|
||||||
return visitors(b) - visitors(a)
|
return visitors(b) - visitors(a)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
tagLookup: (url, tagMap) => {
|
||||||
|
return tagMap[url]
|
||||||
|
},
|
||||||
webmentionsByUrl: (webmentions, url) => {
|
webmentionsByUrl: (webmentions, url) => {
|
||||||
const allowedTypes = ['mention-of', 'in-reply-to', 'like-of', 'repost-of']
|
const allowedTypes = ['mention-of', 'in-reply-to', 'like-of', 'repost-of']
|
||||||
|
|
||||||
|
|
32
src/_data/json/tag-aliases.json
Normal file
32
src/_data/json/tag-aliases.json
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
"tags": [
|
||||||
|
{
|
||||||
|
"tag": "Eleventy",
|
||||||
|
"aliases": ["11ty", "eleventy"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tag": "WebDev",
|
||||||
|
"aliases": [
|
||||||
|
"development",
|
||||||
|
"javascript",
|
||||||
|
"react",
|
||||||
|
"nextjs",
|
||||||
|
"gatsby",
|
||||||
|
"vue",
|
||||||
|
"svelte",
|
||||||
|
"angular",
|
||||||
|
"webdev",
|
||||||
|
"web-development",
|
||||||
|
"web-development"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tag": "Tech",
|
||||||
|
"aliases": ["technology", "tech"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tag": "Music",
|
||||||
|
"aliases": ["music"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -13,10 +13,6 @@ module.exports = async function () {
|
||||||
const articles = feed.feed
|
const articles = feed.feed
|
||||||
return articles.reverse().map((article) => {
|
return articles.reverse().map((article) => {
|
||||||
const tags = article['content']['tags'].map((tag) => tag['name'])
|
const tags = article['content']['tags'].map((tag) => tag['name'])
|
||||||
const shareTags = tags
|
|
||||||
.map((tag) => `#${tag}`)
|
|
||||||
.join(' ')
|
|
||||||
.trim()
|
|
||||||
return {
|
return {
|
||||||
url: article['content']['url'],
|
url: article['content']['url'],
|
||||||
title: article['content']['title'],
|
title: article['content']['title'],
|
||||||
|
@ -24,9 +20,8 @@ module.exports = async function () {
|
||||||
? new Date(article['content']['library']['modified_date'])
|
? new Date(article['content']['library']['modified_date'])
|
||||||
: new Date(article['content']['publication_date']),
|
: new Date(article['content']['publication_date']),
|
||||||
description: article['content']['excerpt'],
|
description: article['content']['excerpt'],
|
||||||
notes: article['content']['my_notes'],
|
notes: article['content']['my_notes'] || '',
|
||||||
tags,
|
tags,
|
||||||
shareTags,
|
|
||||||
id: btoa(article['id']),
|
id: btoa(article['id']),
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"items": [{% for entry in entries limit: 20 -%}
|
"items": [{% for entry in entries limit: 20 -%}
|
||||||
{
|
{
|
||||||
"id": "{{ entry.url | btoa }}",
|
"id": "{{ entry.url | btoa }}",
|
||||||
"title": "{{ entry.title | escape }}{% if share %}{{ entry.shareTags }}{%endif%}",
|
"title": "{{ entry.title | escape }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %}",
|
||||||
"url": "{{ entry.url }}",
|
"url": "{{ entry.url }}",
|
||||||
"content_text": "{{ entry.title }} {{ entry.url }}",
|
"content_text": "{{ entry.title }} {{ entry.url }}",
|
||||||
"date_published": "{{ entry.date | stringToDate | dateToRfc822 }}"
|
"date_published": "{{ entry.date | stringToDate | dateToRfc822 }}"
|
||||||
|
|
|
@ -8,5 +8,5 @@ permalink: /feeds/share-follow.json
|
||||||
data:follow.posts
|
data:follow.posts
|
||||||
updated:follow.posts[0].date_published
|
updated:follow.posts[0].date_published
|
||||||
site:site
|
site:site
|
||||||
share:true
|
tagMap:collections.tagMap
|
||||||
%}
|
%}
|
|
@ -17,7 +17,6 @@ meta:
|
||||||
image:
|
image:
|
||||||
src: https://coryd.dev/assets/img/avatar.webp
|
src: https://coryd.dev/assets/img/avatar.webp
|
||||||
---
|
---
|
||||||
|
|
||||||
{% for tag in collections.tagList %}
|
{% for tag in collections.tagList %}
|
||||||
<span>
|
<span>
|
||||||
<a href="/tags/{{ tag }}" class="!no-underline">
|
<a href="/tags/{{ tag }}" class="!no-underline">
|
||||||
|
|
Reference in a new issue