chore: clean up book filters

This commit is contained in:
Cory Dransfeldt 2024-10-13 16:02:27 -07:00
parent a5354d63e3
commit 239fe01277
No known key found for this signature in database

View file

@ -1,14 +1,11 @@
export default { export default {
bookStatus: (books, status) => books.filter(book => book['status'] === status), bookStatus: (books, status) => books.filter(book => book['status'] === status),
bookFavorites: (books) => books.filter(book => book.favorite === true), bookFavorites: (books) => books.filter(book => book.favorite === true),
bookYearLinks: (years) => years.sort((a, b) => b.value - a.value).map((year, index) => { bookYearLinks: (years) => years
const separator = index < years.length - 1 ? ' / ' : '' .sort((a, b) => b.value - a.value)
return `<a href="/books/years/${year.value}">${year.value}</a>${separator}` .map((year, index) => `<a href="/books/years/${year.value}">${year.value}</a>${index < years.length - 1 ? ' / ' : ''}`)
}).join(''), .join(''),
bookFinishedYear: (books, year) => books.filter(book => { bookFinishedYear: (books, year) => books.filter(book => book.status === 'finished' && parseInt(book.year) === parseInt(year)),
if (book['status'] === 'finished' && book['year']) return parseInt(book['year']) === parseInt(year)
return ''
}),
mediaLinks: (data, type, count = 10) => { mediaLinks: (data, type, count = 10) => {
if (!data || !type) return '' if (!data || !type) return ''