chore: misc feed updates
This commit is contained in:
parent
a3f83d2d79
commit
57ad044d59
2 changed files with 9 additions and 7 deletions
|
@ -28,6 +28,12 @@ module.exports = async function () {
|
||||||
const dates = doc.querySelectorAll('.md\\:block .action-menu a > p')
|
const dates = doc.querySelectorAll('.md\\:block .action-menu a > p')
|
||||||
|
|
||||||
for (let i = 0; i < bookCount; i++) {
|
for (let i = 0; i < bookCount; i++) {
|
||||||
|
const date = new Date(
|
||||||
|
dates[i].textContent.replace('Started ', '').split('\n')[0]
|
||||||
|
).toLocaleString('en-US', {
|
||||||
|
timeZone: 'America/Los_Angeles',
|
||||||
|
})
|
||||||
|
|
||||||
if (!data[i]) {
|
if (!data[i]) {
|
||||||
data.push({ title: titles[i].textContent })
|
data.push({ title: titles[i].textContent })
|
||||||
data.push({ author: authors[i].textContent })
|
data.push({ author: authors[i].textContent })
|
||||||
|
@ -40,9 +46,7 @@ module.exports = async function () {
|
||||||
data.push({ url: `https://app.thestorygraph.com${urls[i].href}` })
|
data.push({ url: `https://app.thestorygraph.com${urls[i].href}` })
|
||||||
data.push({ percentage: percentages[i].textContent })
|
data.push({ percentage: percentages[i].textContent })
|
||||||
data.push({
|
data.push({
|
||||||
dateAdded: dates[i]
|
dateAdded: date,
|
||||||
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
|
||||||
: new Date(),
|
|
||||||
})
|
})
|
||||||
data.push({ type: 'book' })
|
data.push({ type: 'book' })
|
||||||
}
|
}
|
||||||
|
@ -56,9 +60,7 @@ module.exports = async function () {
|
||||||
)
|
)
|
||||||
data[i]['url'] = `https://app.thestorygraph.com${urls[i].href}`
|
data[i]['url'] = `https://app.thestorygraph.com${urls[i].href}`
|
||||||
data[i]['percentage'] = percentages[i].textContent
|
data[i]['percentage'] = percentages[i].textContent
|
||||||
data[i]['dateAdded'] = dates[i]
|
data[i]['dateAdded'] = date
|
||||||
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
|
||||||
: new Date()
|
|
||||||
data[i]['type'] = 'book'
|
data[i]['type'] = 'book'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ module.exports = async function () {
|
||||||
title: content,
|
title: content,
|
||||||
url: `https://coryd.dev/now?ts=${date}`,
|
url: `https://coryd.dev/now?ts=${date}`,
|
||||||
date: new Date(date),
|
date: new Date(date),
|
||||||
description: `My top artists as of ${
|
description: `My top artists for the last week, ending ${
|
||||||
new Date(date).toLocaleString().split(',')[0]
|
new Date(date).toLocaleString().split(',')[0]
|
||||||
}.<br/><br/>`,
|
}.<br/><br/>`,
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue