chore: add images to feed entries if available
This commit is contained in:
parent
e33a961ba3
commit
e8a03dbc7c
5 changed files with 59 additions and 30 deletions
|
@ -121,36 +121,40 @@ export default {
|
||||||
let excerpt = ''
|
let excerpt = ''
|
||||||
let url = ''
|
let url = ''
|
||||||
let author
|
let author
|
||||||
let title = entry.title
|
let title = entry['title']
|
||||||
|
let image = entry['image']
|
||||||
const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>'
|
const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>'
|
||||||
|
|
||||||
if (entry.url?.includes('http')) url = entry.url
|
if (entry['url']?.includes('http')) url = entry.url
|
||||||
if (!entry.url?.includes('http')) url = new URL(entry.url, BASE_URL).toString()
|
if (!entry['url']?.includes('http')) url = new URL(entry['url'], BASE_URL).toString()
|
||||||
if (entry?.slug) url = new URL(entry.slug, BASE_URL).toString()
|
if (entry?.['slug']) url = new URL(entry['slug'], BASE_URL).toString()
|
||||||
if (entry?.link) {
|
if (entry?.['link']) {
|
||||||
title = `${entry.title} via ${entry.authors.name}`
|
title = `${entry['title']} via ${entry['authors']['name']}`
|
||||||
url = entry.link,
|
url = entry['link'],
|
||||||
author = {
|
author = {
|
||||||
name: entry.authors.name,
|
name: entry['authors']['name'],
|
||||||
url: entry.authors.url,
|
url: entry['authors']['url'],
|
||||||
mastodon: entry.authors?.mastodon || '',
|
mastodon: entry['.authors']?.['mastodon'] || '',
|
||||||
rss: entry.authors?.rss_feed || ''
|
rss: entry['authors']?.['rss_feed'] || ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (entry.description) excerpt = entry.description
|
if (entry['description']) excerpt = entry['description']
|
||||||
if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}`
|
if (entry['type'] === 'book' || entry['type'] === 'movie' || entry['type'] === 'link') excerpt = sanitizeHtml(`${md.render(entry.description)}`)
|
||||||
if (entry?.slug && entry.content) excerpt = sanitizeHtml(`${md.render(entry.content)}${feedNote}`, {
|
if (entry?.['slug'] && entry['content']) excerpt = sanitizeHtml(`${md.render(entry['content'])}${feedNote}`, {
|
||||||
disallowedTagsMode: 'completelyDiscard'
|
disallowedTagsMode: 'completelyDiscard'
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (entry['backdrop']) image = entry['backdrop']
|
||||||
|
|
||||||
if (entry) posts.push({
|
if (entry) posts.push({
|
||||||
title: title.trim(),
|
title: title.trim(),
|
||||||
url,
|
url,
|
||||||
content: entry.description,
|
image,
|
||||||
|
content: entry['description'],
|
||||||
date,
|
date,
|
||||||
excerpt,
|
excerpt,
|
||||||
rating: entry?.rating || '',
|
rating: entry?.['rating'] || '',
|
||||||
tags: entry?.tags || '',
|
tags: entry?.['tags'] || '',
|
||||||
author
|
author
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -164,41 +168,41 @@ export default {
|
||||||
let normalized = {
|
let normalized = {
|
||||||
image: item['image'],
|
image: item['image'],
|
||||||
url: item['url'],
|
url: item['url'],
|
||||||
type: item.type
|
type: item['type']
|
||||||
}
|
}
|
||||||
if (item.type === 'artist') {
|
if (item['type'] === 'artist') {
|
||||||
normalized['title'] = item['title']
|
normalized['title'] = item['title']
|
||||||
normalized['alt'] = `${item['plays']} plays of ${item['title']}`
|
normalized['alt'] = `${item['plays']} plays of ${item['title']}`
|
||||||
normalized['subtext'] = `${item['plays']} plays`
|
normalized['subtext'] = `${item['plays']} plays`
|
||||||
}
|
}
|
||||||
if (item.type === 'album') {
|
if (item['type'] === 'album') {
|
||||||
normalized['title'] = item['title']
|
normalized['title'] = item['title']
|
||||||
normalized['alt'] = `${item['title']} by ${item['artist']}`
|
normalized['alt'] = `${item['title']} by ${item['artist']}`
|
||||||
normalized['subtext'] = `${item['artist']}`
|
normalized['subtext'] = `${item['artist']}`
|
||||||
}
|
}
|
||||||
if (item.type === 'album-release') {
|
if (item['type'] === 'album-release') {
|
||||||
normalized['title'] = item['title']
|
normalized['title'] = item['title']
|
||||||
normalized['alt'] = `${item['title']} by ${item['artist']}`
|
normalized['alt'] = `${item['title']} by ${item['artist']}`
|
||||||
normalized['subtext'] = `${item['artist']} / ${item['date']}`
|
normalized['subtext'] = `${item['artist']} / ${item['date']}`
|
||||||
}
|
}
|
||||||
if (item.type === 'movie') {
|
if (item['type'] === 'movie') {
|
||||||
normalized['title'] = item['title']
|
normalized['title'] = item['title']
|
||||||
normalized['alt'] = item['title']
|
normalized['alt'] = item['title']
|
||||||
normalized['rating'] = item['rating']
|
normalized['rating'] = item['rating']
|
||||||
normalized['favorite'] = item['favorite']
|
normalized['favorite'] = item['favorite']
|
||||||
normalized['subtext'] = `${item['rating']} (${item['year']})`
|
normalized['subtext'] = `${item['rating']} (${item['year']})`
|
||||||
}
|
}
|
||||||
if (item.type === 'book') {
|
if (item['type'] === 'book') {
|
||||||
normalized['title'] = `${item['title']} by ${item['author']}`
|
normalized['title'] = `${item['title']} by ${item['author']}`
|
||||||
normalized['rating'] = item['rating']
|
normalized['rating'] = item['rating']
|
||||||
if (item['rating']) normalized['subtext'] = item['rating']
|
if (item['rating']) normalized['subtext'] = item['rating']
|
||||||
}
|
}
|
||||||
if (item.type === 'tv') {
|
if (item['type'] === 'tv') {
|
||||||
normalized['title'] = item['name']
|
normalized['title'] = item['name']
|
||||||
normalized['alt'] = `${item['subtext']} of ${item['name']}`
|
normalized['alt'] = `${item['subtext']} of ${item['name']}`
|
||||||
normalized['subtext'] = item['subtext']
|
normalized['subtext'] = item['subtext']
|
||||||
}
|
}
|
||||||
if (item.type === 'tv-range') {
|
if (item['type'] === 'tv-range') {
|
||||||
normalized['title'] = item['name']
|
normalized['title'] = item['name']
|
||||||
normalized['alt'] = `${item['subtext']} from ${item['name']}`
|
normalized['alt'] = `${item['subtext']} from ${item['name']}`
|
||||||
normalized['subtext'] = item['subtext']
|
normalized['subtext'] = item['subtext']
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.1.6",
|
"version": "22.1.7",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.1.6",
|
"version": "22.1.7",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "22.1.6",
|
"version": "22.1.7",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -75,6 +75,9 @@
|
||||||
--font-weight-base: 400;
|
--font-weight-base: 400;
|
||||||
--font-weight-bold: 600;
|
--font-weight-bold: 600;
|
||||||
--font-weight-extrabold: 800;
|
--font-weight-extrabold: 800;
|
||||||
|
|
||||||
|
/* borders */
|
||||||
|
--border-default: 1px solid var(--accent-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
|
@ -134,6 +137,14 @@
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main footer {
|
||||||
|
margin-bottom: var(--sizing-base);
|
||||||
|
}
|
||||||
|
|
||||||
|
main footer hr {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.default-wrapper {
|
.default-wrapper {
|
||||||
padding-top: var(--sizing-2xl);
|
padding-top: var(--sizing-2xl);
|
||||||
}
|
}
|
||||||
|
@ -214,8 +225,12 @@
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.description {
|
.item img {
|
||||||
margin-bottom: var(--sizing-base);
|
border: var(--border-default);
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
display: block;
|
||||||
|
margin-top: var(--sizing-base);
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
@ -329,10 +344,17 @@
|
||||||
</a>
|
</a>
|
||||||
</h3>
|
</h3>
|
||||||
<xsl:value-of select="description" disable-output-escaping="yes"/>
|
<xsl:value-of select="description" disable-output-escaping="yes"/>
|
||||||
|
<xsl:if test="enclosure">
|
||||||
|
<img src="{enclosure/@url}" alt="{title}" />
|
||||||
|
</xsl:if>
|
||||||
</div>
|
</div>
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
<footer>
|
||||||
|
<hr />
|
||||||
|
<p>Subscribe by adding <code><xsl:value-of select="rss/channel/atom:link/@href"/></code> to your feed reader of choice.</p>
|
||||||
|
</footer>
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -27,6 +27,9 @@
|
||||||
<link>{{ entry.url | encodeAmp }}</link>
|
<link>{{ entry.url | encodeAmp }}</link>
|
||||||
<pubDate>{{ entry.date | stringToRFC822Date }}</pubDate>
|
<pubDate>{{ entry.date | stringToRFC822Date }}</pubDate>
|
||||||
<guid isPermaLink="false">{{ entry.url | encodeAmp }}</guid>
|
<guid isPermaLink="false">{{ entry.url | encodeAmp }}</guid>
|
||||||
|
{%- if entry.image -%}
|
||||||
|
<enclosure url="https://cdn.coryd.dev{{ entry.image }}?class=w800" type="image/jpeg" />
|
||||||
|
{%- endif -%}
|
||||||
<description>{{ entry.excerpt | escape }}</description>
|
<description>{{ entry.excerpt | escape }}</description>
|
||||||
</item>
|
</item>
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
|
|
Reference in a new issue