mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-20 20:05:44 +02:00
163 lines
No EOL
6 KiB
Vue
163 lines
No EOL
6 KiB
Vue
<template>
|
|
<div class="w-full h-full">
|
|
<div class="px-4 py-6">
|
|
<ui-text-input ref="input" v-model="search" @input="updateSearch" borderless :placeholder="$strings.ButtonSearch" bg="white bg-opacity-10" rounded="md" prepend-icon="search" text-size="base" clearable class="w-full text-lg" />
|
|
</div>
|
|
<div class="w-full overflow-x-hidden overflow-y-auto search-content px-4" @click.stop>
|
|
<div v-show="isFetching" class="w-full py-8 flex justify-center">
|
|
<p class="text-lg text-fg-muted">{{ $strings.MessageFetching }}</p>
|
|
</div>
|
|
<div v-if="!isFetching && lastSearch && !totalResults" class="w-full py-8 flex justify-center">
|
|
<p class="text-lg text-fg-muted">{{ $strings.MessageNoItemsFound }}</p>
|
|
</div>
|
|
<p v-if="bookResults.length" class="font-semibold text-sm mb-1">{{ $strings.LabelBooks }}</p>
|
|
<template v-for="item in bookResults">
|
|
<div :key="item.libraryItem.id" class="w-full h-16 py-1">
|
|
<nuxt-link :to="`/item/${item.libraryItem.id}`">
|
|
<cards-item-search-card :library-item="item.libraryItem" :match-key="item.matchKey" :match-text="item.matchText" :search="lastSearch" />
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<p v-if="podcastResults.length" class="uppercase text-xs text-fg-muted my-1 px-1 font-semibold">{{ $strings.LabelPodcasts }}</p>
|
|
<template v-for="item in podcastResults">
|
|
<div :key="item.libraryItem.id" class="text-fg select-none relative py-1">
|
|
<nuxt-link :to="`/item/${item.libraryItem.id}`">
|
|
<cards-item-search-card :library-item="item.libraryItem" :match-key="item.matchKey" :match-text="item.matchText" :search="lastSearch" />
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<p v-if="seriesResults.length" class="font-semibold text-sm mb-1 mt-2">{{ $strings.LabelSeries }}</p>
|
|
<template v-for="seriesResult in seriesResults">
|
|
<div :key="seriesResult.series.id" class="w-full h-16 py-1">
|
|
<nuxt-link :to="`/bookshelf/series/${seriesResult.series.id}`">
|
|
<cards-series-search-card :series="seriesResult.series" :book-items="seriesResult.books" />
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<p v-if="authorResults.length" class="font-semibold text-sm mb-1 mt-2">{{ $strings.LabelAuthors }}</p>
|
|
<template v-for="authorResult in authorResults">
|
|
<div :key="authorResult.id" class="w-full h-14 py-1">
|
|
<nuxt-link :to="`/bookshelf/library?filter=authors.${$encode(authorResult.id)}`">
|
|
<cards-author-search-card :author="authorResult" />
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<p v-if="narratorResults.length" class="font-semibold text-sm mb-1 mt-2">{{ $strings.LabelNarrators }}</p>
|
|
<template v-for="narrator in narratorResults">
|
|
<div :key="narrator.name" class="w-full h-14 py-1">
|
|
<nuxt-link :to="`/bookshelf/library?filter=narrators.${$encode(narrator.name)}`">
|
|
<cards-narrator-search-card :narrator="narrator.name" />
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
|
|
<p v-if="tagResults.length" class="font-semibold text-sm mb-1 mt-2">{{ $strings.LabelTags }}</p>
|
|
<template v-for="tag in tagResults">
|
|
<div :key="tag.name" class="w-full h-14 py-1">
|
|
<nuxt-link :to="`/bookshelf/library?filter=tags.${$encode(tag.name)}`">
|
|
<cards-tag-search-card :tag="tag.name" />
|
|
</nuxt-link>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
search: null,
|
|
searchTimeout: null,
|
|
lastSearch: null,
|
|
isFetching: false,
|
|
bookResults: [],
|
|
podcastResults: [],
|
|
seriesResults: [],
|
|
authorResults: [],
|
|
narratorResults: [],
|
|
tagResults: []
|
|
}
|
|
},
|
|
computed: {
|
|
currentLibraryId() {
|
|
return this.$store.state.libraries.currentLibraryId
|
|
},
|
|
bookCoverAspectRatio() {
|
|
return this.$store.getters['libraries/getBookCoverAspectRatio']
|
|
},
|
|
totalResults() {
|
|
return this.bookResults.length + this.seriesResults.length + this.authorResults.length + this.podcastResults.length + this.narratorResults.length + this.tagResults.length
|
|
}
|
|
},
|
|
methods: {
|
|
async runSearch(value) {
|
|
if (this.isFetching && this.lastSearch === value) return
|
|
|
|
this.lastSearch = value
|
|
this.$store.commit('globals/setLastSearch', value)
|
|
|
|
if (!this.lastSearch) {
|
|
this.bookResults = []
|
|
this.podcastResults = []
|
|
this.seriesResults = []
|
|
this.authorResults = []
|
|
this.narratorResults = []
|
|
this.tagResults = []
|
|
return
|
|
}
|
|
this.isFetching = true
|
|
const results = await this.$nativeHttp.get(`/api/libraries/${this.currentLibraryId}/search?q=${value}&limit=5`).catch((error) => {
|
|
console.error('Search error', error)
|
|
return null
|
|
})
|
|
if (value !== this.lastSearch) {
|
|
console.log(`runSearch: New search was made for ${this.lastSearch} - results are from ${value}`)
|
|
return
|
|
}
|
|
console.log('RESULTS', results)
|
|
|
|
this.isFetching = false
|
|
|
|
this.bookResults = results?.book || []
|
|
this.podcastResults = results?.podcast || []
|
|
this.seriesResults = results?.series || []
|
|
this.authorResults = results?.authors || []
|
|
this.narratorResults = results?.narrators || []
|
|
this.tagResults = results?.tags || []
|
|
},
|
|
updateSearch(val) {
|
|
clearTimeout(this.searchTimeout)
|
|
this.searchTimeout = setTimeout(() => {
|
|
this.runSearch(val)
|
|
}, 500)
|
|
},
|
|
setFocus() {
|
|
setTimeout(() => {
|
|
if (this.$refs.input) {
|
|
this.$refs.input.focus()
|
|
}
|
|
}, 100)
|
|
}
|
|
},
|
|
mounted() {
|
|
if (this.$store.state.globals.lastSearch) {
|
|
this.search = this.$store.state.globals.lastSearch
|
|
this.runSearch(this.search)
|
|
} else {
|
|
this.$nextTick(this.setFocus())
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.search-content {
|
|
height: calc(100% - 108px);
|
|
max-height: calc(100% - 108px);
|
|
}
|
|
</style> |