chore: feed updates
This commit is contained in:
parent
70caf3eb21
commit
d76c9f7351
5 changed files with 29 additions and 6 deletions
|
@ -17,6 +17,7 @@ module.exports = {
|
||||||
return {
|
return {
|
||||||
title: entry.data?.title || entry.title,
|
title: entry.data?.title || entry.title,
|
||||||
url: entry.url.includes('http') ? entry.url : new URL(entry.url, BASE_URL).toString(),
|
url: entry.url.includes('http') ? entry.url : new URL(entry.url, BASE_URL).toString(),
|
||||||
|
content: entry.description,
|
||||||
date,
|
date,
|
||||||
excerpt,
|
excerpt,
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,9 @@ module.exports = {
|
||||||
mdToHtml: (content) => {
|
mdToHtml: (content) => {
|
||||||
return marked.parse(content)
|
return marked.parse(content)
|
||||||
},
|
},
|
||||||
|
btoa: (string) => {
|
||||||
|
return btoa(string)
|
||||||
|
},
|
||||||
dashLower: (string) => string.replace(/\s+/g, '-').toLowerCase(),
|
dashLower: (string) => string.replace(/\s+/g, '-').toLowerCase(),
|
||||||
encodeAmp: (string) => {
|
encodeAmp: (string) => {
|
||||||
if (!string) return
|
if (!string) return
|
||||||
|
|
|
@ -12,14 +12,21 @@ module.exports = async function () {
|
||||||
const feed = await res
|
const feed = await res
|
||||||
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 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'],
|
||||||
date: article['content']['publication_date']
|
date: article['content']['library']['modified_date']
|
||||||
? new Date(article['content']['publication_date'])
|
? new Date(article['content']['library']['modified_date'])
|
||||||
: new Date(article['content']['feed_date']),
|
: new Date(article['content']['publication_date']),
|
||||||
summary: article['content']['excerpt'],
|
description: article['content']['excerpt'],
|
||||||
notes: article['content']['my_notes'],
|
notes: article['content']['my_notes'],
|
||||||
|
tags,
|
||||||
|
shareTags,
|
||||||
id: btoa(article['id']),
|
id: btoa(article['id']),
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
"feed_url": "{{ site.url }}{{ permalink }}",
|
"feed_url": "{{ site.url }}{{ permalink }}",
|
||||||
"items": [{% for entry in entries limit: 20 -%}
|
"items": [{% for entry in entries limit: 20 -%}
|
||||||
{
|
{
|
||||||
"id": "{{ entry.id }}",
|
"id": "{{ entry.url | btoa }}",
|
||||||
"title": "{{ entry.title | escape }}",
|
"title": "{{ entry.title | escape }}{% if share %}{{ entry.shareTags }}{%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 }}"
|
||||||
|
|
12
src/feeds/share.follow.json.liquid
Normal file
12
src/feeds/share.follow.json.liquid
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
layout: null
|
||||||
|
permalink: /feeds/share-follow.json
|
||||||
|
---
|
||||||
|
{% render "partials/feeds/json.liquid"
|
||||||
|
permalink:'/feeds/follow'
|
||||||
|
title:'Follow • Cory Dransfeldt'
|
||||||
|
data:follow.posts
|
||||||
|
updated:follow.posts[0].date_published
|
||||||
|
site:site
|
||||||
|
share:true
|
||||||
|
%}
|
Reference in a new issue