diff --git a/config/filters/index.js b/config/filters/index.js index 53a46712..ada9c993 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -149,8 +149,9 @@ export default { }, // media - normalizeMedia: (media) => - media.map((item) => { + normalizeMedia: (media, limit) => { + const mediaData = limit ? media.slice(0, limit) : media + return mediaData.map((item) => { let normalized = { image: item['image'], url: item['url'], @@ -176,7 +177,7 @@ export default { normalized['alt'] = item['title'] normalized['rating'] = item['rating'] normalized['favorite'] = item['favorite'] - normalized['subtext'] = item['rating'] + normalized['subtext'] = `${item['rating']} (${item['year']})` } if (item.type === 'book') { normalized['title'] = `${item['title']} by ${item['author']}` @@ -194,7 +195,8 @@ export default { normalized['subtext'] = item['subtext'] } return normalized - }), + }) + }, calculatePlayPercentage: (plays, mostPlayed) => `${plays/mostPlayed * 100}%`, listToString: (items, key, count = 10) => { const itemData = items.slice(0, count) diff --git a/package-lock.json b/package-lock.json index 023ca992..c8a4fa3f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.4.7", + "version": "21.4.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.4.7", + "version": "21.4.8", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index e05bdff4..c908fc81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.4.7", + "version": "21.4.8", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/includes/partials/media/grid.liquid b/src/includes/partials/media/grid.liquid index cf5dc58a..67b3a9b7 100644 --- a/src/includes/partials/media/grid.liquid +++ b/src/includes/partials/media/grid.liquid @@ -1,7 +1,7 @@ {%- assign hidePagination = count or data.pages.size <= 1 -%} -{%- assign media = data.items | default: data | normalizeMedia -%} +{%- assign media = data.items | default: data | normalizeMedia: count -%}