chore: slice entries before processing to reduce filter runs

This commit is contained in:
Cory Dransfeldt 2024-08-05 15:13:56 -07:00
parent 10dd21f6e3
commit cf647eed90
No known key found for this signature in database
4 changed files with 8 additions and 7 deletions

View file

@ -85,7 +85,7 @@ export default {
}, },
// feeds // feeds
normalizeEntries: (entries) => { normalizeEntries: (entries, limit) => {
const posts = [] const posts = []
const mdGenerator = () => { const mdGenerator = () => {
const md = markdownIt({ html: true, linkify: true }) const md = markdownIt({ html: true, linkify: true })
@ -112,8 +112,9 @@ export default {
return md return md
} }
const entryData = limit ? entries.slice(0, limit) : entries
entries.forEach((entry) => { entryData.forEach((entry) => {
const dateKey = Object.keys(entry).find(key => key.includes('date')) const dateKey = Object.keys(entry).find(key => key.includes('date'))
const date = new Date(entry[dateKey]) const date = new Date(entry[dateKey])
const md = mdGenerator() const md = mdGenerator()

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.4.4", "version": "21.4.5",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.4.4", "version": "21.4.5",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "21.4.4", "version": "21.4.5",
"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": {

View file

@ -2,7 +2,7 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel> <channel>
<atom:link href="{{ permalink | absoluteUrl: globals.url }}" rel="self" type="application/rss+xml" /> <atom:link href="{{ permalink | absoluteUrl: globals.url }}" rel="self" type="application/rss+xml" />
{%- assign entries = data | normalizeEntries -%} {%- assign entries = data | normalizeEntries: 20 -%}
<title>{{ title }}</title> <title>{{ title }}</title>
<description>{{ description }}</description> <description>{{ description }}</description>
<link>{{ permalink | absoluteUrl: globals.url }}</link> <link>{{ permalink | absoluteUrl: globals.url }}</link>
@ -14,7 +14,7 @@
<width>144</width> <width>144</width>
<height>144</height> <height>144</height>
</image> </image>
{% for entry in entries limit: 20 -%} {% for entry in entries -%}
{%- assign rating = entry.rating -%} {%- assign rating = entry.rating -%}
{%- capture entryTitle -%} {%- capture entryTitle -%}
{{ entry.title | escape }} {{ entry.title | escape }}