feature: add favorite articles to now page

This commit is contained in:
Cory Dransfeldt 2023-05-05 09:25:17 -07:00
parent 28f8330579
commit 059ec28b00
No known key found for this signature in database
4 changed files with 37 additions and 3 deletions

1
.env
View file

@ -1,3 +1,4 @@
API_KEY_LASTFM= API_KEY_LASTFM=
API_KEY_TRAKT= API_KEY_TRAKT=
API_KEY_WEBMENTIONS_CORYD_DEV= API_KEY_WEBMENTIONS_CORYD_DEV=
ACCESS_TOKEN_MATTER=

15
src/_data/articles.js Normal file
View file

@ -0,0 +1,15 @@
const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const MATTER_TOKEN = process.env.ACCESS_TOKEN_MATTER
const headers = { Authorization: `Bearer ${MATTER_TOKEN}` }
const url = `https://web.getmatter.com/api/library_items/favorites_feed`
const res = EleventyFetch(url, {
duration: '1h',
type: 'json',
fetchOptions: { headers },
})
const feed = await res
const articles = feed.feed.splice(0, 5)
return articles
}

View file

@ -9,7 +9,9 @@ module.exports = async function () {
getExtraEntryFields: (feedEntry) => { getExtraEntryFields: (feedEntry) => {
const images = feedEntry['description']?.match(/<img [^>]*src="[^"]*"[^>]*>/gm) || [] const images = feedEntry['description']?.match(/<img [^>]*src="[^"]*"[^>]*>/gm) || []
return { return {
image: images.length ? images.map((image) => image.replace(/.*src="([^"]*)".*/, '$1'))[0] : '', image: images.length
? images.map((image) => image.replace(/.*src="([^"]*)".*/, '$1'))[0]
: '',
} }
}, },
}).catch((error) => { }).catch((error) => {

View file

@ -101,7 +101,7 @@ layout: main
{% endif %} {% endif %}
{% if books %} {% if books %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4"> <h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
Reading Reading: books
</h2> </h2>
<div> <div>
<ul class="list-inside list-disc pl-5 md:pl-10"> <ul class="list-inside list-disc pl-5 md:pl-10">
@ -115,6 +115,22 @@ layout: main
</ul> </ul>
</div> </div>
{% endif %} {% endif %}
{% if articles %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
Reading: favorite articles
</h2>
<div>
<ul class="list-inside list-disc pl-5 md:pl-10">
{% for article in articles | reverse %}
<li class="mt-1.5 mb-2">
<a href="{{article.content.url}}" title="{{article.content.title | escape}}">
{{ article.content.title | escape }} by {{ article.content.author.name | escape }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% if movies %} {% if movies %}
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4"> <h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
Watching: movies Watching: movies