chore: clean up book filters
This commit is contained in:
parent
a5354d63e3
commit
239fe01277
1 changed files with 5 additions and 8 deletions
|
@ -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 ''
|
||||||
|
|
||||||
|
|
Reference in a new issue