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')
|
||||
|
||||
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]) {
|
||||
data.push({ title: titles[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({ percentage: percentages[i].textContent })
|
||||
data.push({
|
||||
dateAdded: dates[i]
|
||||
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
||||
: new Date(),
|
||||
dateAdded: date,
|
||||
})
|
||||
data.push({ type: 'book' })
|
||||
}
|
||||
|
@ -56,9 +60,7 @@ module.exports = async function () {
|
|||
)
|
||||
data[i]['url'] = `https://app.thestorygraph.com${urls[i].href}`
|
||||
data[i]['percentage'] = percentages[i].textContent
|
||||
data[i]['dateAdded'] = dates[i]
|
||||
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
||||
: new Date()
|
||||
data[i]['dateAdded'] = date
|
||||
data[i]['type'] = 'book'
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ module.exports = async function () {
|
|||
title: content,
|
||||
url: `https://coryd.dev/now?ts=${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]
|
||||
}.<br/><br/>`,
|
||||
}
|
||||
|
|
Reference in a new issue