chore: refactor books
This commit is contained in:
parent
a1526cdd09
commit
661c5c10b4
1 changed files with 46 additions and 40 deletions
|
@ -17,47 +17,53 @@ module.exports = async function () {
|
||||||
.then((html) => {
|
.then((html) => {
|
||||||
const DOM = new JSDOM(html)
|
const DOM = new JSDOM(html)
|
||||||
const doc = DOM.window.document
|
const doc = DOM.window.document
|
||||||
doc
|
const bookCount = doc.querySelectorAll('.md\\:block .book-pane-content').length
|
||||||
.querySelectorAll('.md\\:block .book-title-author-and-series h3 > a')
|
const titles = doc.querySelectorAll('.md\\:block .book-title-author-and-series h3 > a')
|
||||||
.forEach((title, index) => {
|
const authors = doc.querySelectorAll(
|
||||||
if (!data[index]) data.push({ title: title.textContent })
|
'.md\\:block .book-title-author-and-series h3 p:last-of-type > a'
|
||||||
if (data[index]) data[index]['title'] = title.textContent
|
)
|
||||||
})
|
const images = doc.querySelectorAll('.md\\:block .book-cover img')
|
||||||
doc
|
const urls = doc.querySelectorAll('.md\\:block .book-cover a')
|
||||||
.querySelectorAll('.md\\:block .book-title-author-and-series h3 p:last-of-type > a')
|
const percentages = doc.querySelectorAll('.md\\:block .progress-tracker-pane .font-semibold')
|
||||||
.forEach((author, index) => {
|
const dates = doc.querySelectorAll('.md\\:block .action-menu a > p')
|
||||||
if (!data[index]) data.push({ author: author.textContent })
|
|
||||||
if (data[index]) data[index]['author'] = author.textContent
|
for (let i = 0; i < bookCount; i++) {
|
||||||
})
|
if (!data[i]) {
|
||||||
doc.querySelectorAll('.md\\:block .book-cover img').forEach((image, index) => {
|
data.push({ title: titles[i].textContent })
|
||||||
const img = image.src.replace('https://cdn.thestorygraph.com', 'https://books.coryd.dev')
|
data.push({ author: authors[i].textContent })
|
||||||
if (!data[index]) data.push({ image: img })
|
data.push({
|
||||||
if (data[index]) data[index]['image'] = img
|
image: images[i].src.replace(
|
||||||
})
|
'https://cdn.thestorygraph.com',
|
||||||
doc.querySelectorAll('.md\\:block .book-cover a').forEach((url, index) => {
|
'https://books.coryd.dev'
|
||||||
if (!data[index]) data.push({ url: `https://app.thestorygraph.com${url.href}` })
|
),
|
||||||
if (data[index]) data[index]['url'] = `https://app.thestorygraph.com${url.href}`
|
})
|
||||||
})
|
data.push({ url: `https://app.thestorygraph.com${urls[i].href}` })
|
||||||
doc
|
data.push({ percentage: percentages[i].textContent || '0%' })
|
||||||
.querySelectorAll('.md\\:block .progress-tracker-pane .font-semibold')
|
data.push({
|
||||||
.forEach((percentage, index) => {
|
dateAdded: dates[i]
|
||||||
if (!data[index]) data.push({ percentage: percentage.textContent })
|
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
||||||
if (data[index]) data[index]['percentage'] = percentage.textContent
|
: new Date(),
|
||||||
})
|
})
|
||||||
doc.querySelectorAll('.md\\:block .action-menu a > p').forEach((dateStarted, index) => {
|
data.push({ type: 'book' })
|
||||||
const date = new Date(dateStarted.textContent.replace('Started ', '').split('\n')[0])
|
}
|
||||||
if (!data[index]) data.push({ dateAdded: date })
|
|
||||||
if (data[index]) data[index]['dateAdded'] = date
|
if (data[i]) {
|
||||||
})
|
data[i]['title'] = titles[i].textContent
|
||||||
})
|
data[i]['author'] = authors[i].textContent
|
||||||
const books = data
|
data[i]['image'] = images[i].src.replace(
|
||||||
.filter((book) => book.title)
|
'https://cdn.thestorygraph.com',
|
||||||
.map((book) => {
|
'https://books.coryd.dev'
|
||||||
book.type = 'book'
|
)
|
||||||
if (!('dateAdded' in book)) book.dateAdded = new Date()
|
data[i]['url'] = `https://app.thestorygraph.com${urls[i].href}`
|
||||||
if (!('percentage' in book)) book.percentage = '0%'
|
data[i]['percentage'] = percentages[i].textContent || '0%'
|
||||||
return book
|
data[i]['dateAdded'] = dates[i]
|
||||||
|
? new Date(dates[i].textContent.replace('Started ', '').split('\n')[0])
|
||||||
|
: new Date()
|
||||||
|
data[i]['type'] = 'book'
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
const books = data.filter((book) => book.title)
|
||||||
await asset.save(books, 'json')
|
await asset.save(books, 'json')
|
||||||
return books
|
return books
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue