chore: slice entries before processing to reduce filter runs
This commit is contained in:
parent
10dd21f6e3
commit
cf647eed90
4 changed files with 8 additions and 7 deletions
|
@ -85,7 +85,7 @@ export default {
|
|||
},
|
||||
|
||||
// feeds
|
||||
normalizeEntries: (entries) => {
|
||||
normalizeEntries: (entries, limit) => {
|
||||
const posts = []
|
||||
const mdGenerator = () => {
|
||||
const md = markdownIt({ html: true, linkify: true })
|
||||
|
@ -112,8 +112,9 @@ export default {
|
|||
|
||||
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 date = new Date(entry[dateKey])
|
||||
const md = mdGenerator()
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "21.4.4",
|
||||
"version": "21.4.5",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "coryd.dev",
|
||||
"version": "21.4.4",
|
||||
"version": "21.4.5",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/api-text": "^1.4.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "21.4.4",
|
||||
"version": "21.4.5",
|
||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<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>
|
||||
<description>{{ description }}</description>
|
||||
<link>{{ permalink | absoluteUrl: globals.url }}</link>
|
||||
|
@ -14,7 +14,7 @@
|
|||
<width>144</width>
|
||||
<height>144</height>
|
||||
</image>
|
||||
{% for entry in entries limit: 20 -%}
|
||||
{% for entry in entries -%}
|
||||
{%- assign rating = entry.rating -%}
|
||||
{%- capture entryTitle -%}
|
||||
{{ entry.title | escape }}
|
||||
|
|
Reference in a new issue