fix: simplified links page

This commit is contained in:
Cory Dransfeldt 2024-02-18 21:11:54 -08:00
parent 5ac7243c15
commit 5b94b003cb
No known key found for this signature in database
2 changed files with 9 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "6.0.0", "version": "6.0.1",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -10,6 +10,11 @@ const getReadableData = (readable) => {
}) })
} }
const filterDuplicates = array => {
const seenIds = new Set();
return array.filter(obj => !seenIds.has(obj.id) && seenIds.add(obj.id));
};
export default async function () { export default async function () {
const client = new S3Client({ const client = new S3Client({
credentials: { credentials: {
@ -33,6 +38,7 @@ export default async function () {
summary: link['summary'], summary: link['summary'],
note: link['notes'], note: link['notes'],
description: `${link['summary']}<br/><br/>`, description: `${link['summary']}<br/><br/>`,
id: link['id']
} }
}) })
const fullData = []; const fullData = [];
@ -72,10 +78,10 @@ export default async function () {
} }
if (process.env.ELEVENTY_PRODUCTION) { if (process.env.ELEVENTY_PRODUCTION) {
const mergedData = [...new Set([ const mergedData = filterDuplicates([
...Object.values(cachedLinks), ...Object.values(cachedLinks),
...formatLinkData(fullData).filter((link) => link.tags.includes('share')) ...formatLinkData(fullData).filter((link) => link.tags.includes('share'))
])] ])
await client.send( await client.send(
new PutObjectCommand({ new PutObjectCommand({
@ -84,7 +90,6 @@ export default async function () {
Body: JSON.stringify(mergedData), Body: JSON.stringify(mergedData),
}) })
) )
return mergedData return mergedData
} }