mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-06-23 01:18:59 +02:00
prettier
This commit is contained in:
parent
a6422bb3fc
commit
ad2c5c29e1
@ -112,11 +112,11 @@ export const state = () => ({
|
||||
})
|
||||
|
||||
export const getters = {
|
||||
checkBookProviderExists: state => (providerValue) => {
|
||||
return state.providers.some(p => p.value === providerValue)
|
||||
checkBookProviderExists: (state) => (providerValue) => {
|
||||
return state.providers.some((p) => p.value === providerValue)
|
||||
},
|
||||
checkPodcastProviderExists: state => (providerValue) => {
|
||||
return state.podcastProviders.some(p => p.value === providerValue)
|
||||
checkPodcastProviderExists: (state) => (providerValue) => {
|
||||
return state.podcastProviders.some((p) => p.value === providerValue)
|
||||
}
|
||||
}
|
||||
|
||||
@ -125,13 +125,13 @@ export const actions = {}
|
||||
export const mutations = {
|
||||
addCustomMetadataProvider(state, provider) {
|
||||
if (provider.mediaType === 'book') {
|
||||
if (state.providers.some(p => p.value === provider.slug)) return
|
||||
if (state.providers.some((p) => p.value === provider.slug)) return
|
||||
state.providers.push({
|
||||
text: provider.name,
|
||||
value: provider.slug
|
||||
})
|
||||
} else {
|
||||
if (state.podcastProviders.some(p => p.value === provider.slug)) return
|
||||
if (state.podcastProviders.some((p) => p.value === provider.slug)) return
|
||||
state.podcastProviders.push({
|
||||
text: provider.name,
|
||||
value: provider.slug
|
||||
@ -140,9 +140,9 @@ export const mutations = {
|
||||
},
|
||||
removeCustomMetadataProvider(state, provider) {
|
||||
if (provider.mediaType === 'book') {
|
||||
state.providers = state.providers.filter(p => p.value !== provider.slug)
|
||||
state.providers = state.providers.filter((p) => p.value !== provider.slug)
|
||||
} else {
|
||||
state.podcastProviders = state.podcastProviders.filter(p => p.value !== provider.slug)
|
||||
state.podcastProviders = state.podcastProviders.filter((p) => p.value !== provider.slug)
|
||||
}
|
||||
},
|
||||
setCustomMetadataProviders(state, providers) {
|
||||
|
@ -205,8 +205,7 @@ class BookFinder {
|
||||
*/
|
||||
async getAudiMetaResults(title, author, asin, provider) {
|
||||
// Ensure provider is a string (See CodeQL) even though it should be a string anyway
|
||||
const providerStr = (typeof provider === 'string' ? provider :
|
||||
(Array.isArray(provider) ? provider[0]?.toString() || '' : '')).toString()
|
||||
const providerStr = (typeof provider === 'string' ? provider : Array.isArray(provider) ? provider[0]?.toString() || '' : '').toString()
|
||||
|
||||
const region = providerStr.includes('.') ? providerStr.split('.').pop() : ''
|
||||
const books = await this.audiMeta.search(title, author, asin, region, this.#providerResponseTimeout)
|
||||
|
@ -41,7 +41,7 @@ class AudiMeta {
|
||||
}
|
||||
|
||||
cleanResult(item) {
|
||||
const { title, subtitle, asin, authors, narrators, publisherName, summary, releaseDate, imageUrl, genres, series, language, lengthMinutes, bookFormat } = item
|
||||
const { title, subtitle, asin, authors, narrators, publisherName, summary, releaseDate, imageUrl, genres, series, language, lengthMinutes, bookFormat } = item
|
||||
|
||||
const seriesList = []
|
||||
|
||||
@ -50,7 +50,7 @@ class AudiMeta {
|
||||
series: s.name,
|
||||
sequence: this.cleanSeriesSequence(s.name, (s.position || '').toString())
|
||||
})
|
||||
});
|
||||
})
|
||||
|
||||
// Tags and Genres are flipped for AudiMeta
|
||||
const genresFiltered = genres ? genres.filter((g) => g.type == 'Tags').map((g) => g.name) : []
|
||||
@ -147,7 +147,8 @@ class AudiMeta {
|
||||
items = await axios
|
||||
.get(url, {
|
||||
timeout
|
||||
}).then((res) => {
|
||||
})
|
||||
.then((res) => {
|
||||
return res.data
|
||||
})
|
||||
.catch((error) => {
|
||||
|
Loading…
Reference in New Issue
Block a user