chore: clean up filter
This commit is contained in:
parent
76a172bb74
commit
6f9aa95faf
1 changed files with 15 additions and 28 deletions
|
@ -13,39 +13,26 @@ export default {
|
||||||
if (!data || !type) return ''
|
if (!data || !type) return ''
|
||||||
|
|
||||||
const dataSlice = data.slice(0, count)
|
const dataSlice = data.slice(0, count)
|
||||||
|
|
||||||
if (dataSlice.length === 0) return null
|
if (dataSlice.length === 0) return null
|
||||||
if (dataSlice.length === 1) {
|
|
||||||
const item = dataSlice[0]
|
const buildLink = (item) => {
|
||||||
if (type === 'genre') {
|
switch (type) {
|
||||||
return `<a href="${item['genre_url']}">${item['genre_name']}</a>`
|
case 'genre':
|
||||||
} else if (type === 'artist') {
|
return `<a href="${item['genre_url']}">${item['genre_name']}</a>`
|
||||||
return `<a href="${item['url']}">${item['name']}</a>`
|
case 'artist':
|
||||||
} else if (type === 'book') {
|
return `<a href="${item['url']}">${item['name']}</a>`
|
||||||
return `<a href="${item['url']}">${item['title']}</a>`
|
case 'book':
|
||||||
|
return `<a href="${item['url']}">${item['title']}</a>`
|
||||||
|
default:
|
||||||
|
return ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const allButLast = dataSlice.slice(0, -1).map(item => {
|
if (dataSlice.length === 1) return buildLink(dataSlice[0])
|
||||||
if (type === 'genre') {
|
|
||||||
return `<a href="${item['genre_url']}">${item['genre_name']}</a>`
|
|
||||||
} else if (type === 'artist') {
|
|
||||||
return `<a href="${item['url']}">${item['name']}</a>`
|
|
||||||
} else if (type === 'book') {
|
|
||||||
return `<a href="${item['url']}">${item['title']}</a>`
|
|
||||||
}
|
|
||||||
}).join(', ')
|
|
||||||
|
|
||||||
let last
|
const links = dataSlice.map(buildLink)
|
||||||
const lastItem = dataSlice[dataSlice.length - 1]
|
const allButLast = links.slice(0, -1).join(', ')
|
||||||
|
const last = links[links.length - 1]
|
||||||
if (type === 'genre') {
|
|
||||||
last = `<a href="${lastItem['genre_url']}">${lastItem['genre_name']}</a>`
|
|
||||||
} else if (type === 'artist') {
|
|
||||||
last = `<a href="${lastItem['url']}">${lastItem['name']}</a>`
|
|
||||||
} else if (type === 'book') {
|
|
||||||
last = `<a href="${lastItem['url']}">${lastItem['title']}</a>`
|
|
||||||
}
|
|
||||||
|
|
||||||
return `${allButLast} and ${last}`
|
return `${allButLast} and ${last}`
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue