2021-08-18 00:01:11 +02:00
|
|
|
<template>
|
|
|
|
<div class="w-full h-full overflow-hidden">
|
|
|
|
<div class="flex items-center mb-4">
|
|
|
|
<div class="w-72">
|
|
|
|
<form @submit.prevent="submitSearch">
|
|
|
|
<ui-text-input-with-label v-model="search" label="Search Title" placeholder="Search" :disabled="processing" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="flex-grow" />
|
|
|
|
</div>
|
|
|
|
<div v-show="processing" class="flex h-full items-center justify-center">
|
|
|
|
<p>Loading...</p>
|
|
|
|
</div>
|
2021-08-18 13:50:24 +02:00
|
|
|
<div v-show="!processing && !searchResults.length" class="flex h-full items-center justify-center">
|
|
|
|
<p>No Results</p>
|
|
|
|
</div>
|
2021-08-18 00:01:11 +02:00
|
|
|
<div v-show="!processing" class="w-full max-h-full overflow-y-auto overflow-x-hidden">
|
|
|
|
<template v-for="(res, index) in searchResults">
|
|
|
|
<div :key="index" class="w-full border-b border-gray-700 pb-2 hover:bg-gray-300 hover:bg-opacity-10 cursor-pointer" @click="selectMatch(res)">
|
|
|
|
<div class="flex py-1">
|
|
|
|
<img :src="res.cover || '/book_placeholder.jpg'" class="h-24 object-cover" style="width: 60px" />
|
|
|
|
<div class="px-4 flex-grow">
|
|
|
|
<div class="flex items-center">
|
|
|
|
<h1>{{ res.title }}</h1>
|
|
|
|
<div class="flex-grow" />
|
|
|
|
<p>{{ res.first_publish_year || res.first_publish_date }}</p>
|
|
|
|
</div>
|
|
|
|
<p class="text-gray-400">{{ res.author }}</p>
|
|
|
|
<div class="w-full max-h-12 overflow-hidden">
|
|
|
|
<p class="text-gray-500 text-xs" v-html="res.description"></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="res.covers && res.covers.length > 1" class="flex">
|
|
|
|
<template v-for="cover in res.covers.slice(1)">
|
|
|
|
<img :key="cover" :src="cover" class="h-20 w-12 object-cover mr-1" />
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
2021-08-18 13:50:24 +02:00
|
|
|
processing: Boolean,
|
2021-08-18 00:01:11 +02:00
|
|
|
audiobook: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
search: null,
|
|
|
|
lastSearch: null,
|
|
|
|
searchResults: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
audiobook: {
|
|
|
|
immediate: true,
|
|
|
|
handler(newVal) {
|
|
|
|
if (newVal) this.init()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-08-18 13:50:24 +02:00
|
|
|
computed: {
|
|
|
|
isProcessing: {
|
|
|
|
get() {
|
|
|
|
return this.processing
|
|
|
|
},
|
|
|
|
set(val) {
|
|
|
|
this.$emit('update:processing', val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
methods: {
|
|
|
|
submitSearch() {
|
|
|
|
this.runSearch()
|
|
|
|
},
|
|
|
|
async runSearch() {
|
|
|
|
if (this.lastSearch === this.search) return
|
|
|
|
console.log('Search', this.lastSearch, this.search)
|
|
|
|
|
|
|
|
this.searchResults = []
|
2021-08-21 01:29:10 +02:00
|
|
|
this.isProcessing = true
|
2021-08-18 00:01:11 +02:00
|
|
|
this.lastSearch = this.search
|
2021-08-18 13:50:24 +02:00
|
|
|
var results = await this.$axios.$get(`/api/find/search?title=${this.search}`).catch((error) => {
|
|
|
|
console.error('Failed', error)
|
|
|
|
return []
|
|
|
|
})
|
|
|
|
results = results.filter((res) => {
|
|
|
|
return !!res.title
|
|
|
|
})
|
2021-08-18 00:01:11 +02:00
|
|
|
console.log('Got results', results)
|
|
|
|
this.searchResults = results
|
2021-08-21 01:29:10 +02:00
|
|
|
this.isProcessing = false
|
2021-08-18 00:01:11 +02:00
|
|
|
},
|
|
|
|
init() {
|
|
|
|
if (!this.audiobook.book || !this.audiobook.book.title) {
|
|
|
|
this.search = null
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (this.searchResults.length) {
|
|
|
|
console.log('Already hav ereuslts', this.searchResults, this.lastSearch)
|
|
|
|
}
|
|
|
|
this.search = this.audiobook.book.title
|
|
|
|
this.runSearch()
|
|
|
|
},
|
2021-08-18 13:50:24 +02:00
|
|
|
async selectMatch(match) {
|
|
|
|
this.isProcessing = true
|
|
|
|
const updatePayload = {
|
|
|
|
book: {}
|
|
|
|
}
|
|
|
|
if (match.cover) {
|
|
|
|
updatePayload.book.cover = match.cover
|
|
|
|
}
|
|
|
|
if (match.title) {
|
|
|
|
updatePayload.book.title = match.title
|
|
|
|
}
|
|
|
|
if (match.description) {
|
|
|
|
updatePayload.book.description = match.description
|
|
|
|
}
|
|
|
|
var updatedAudiobook = await this.$axios.$patch(`/api/audiobook/${this.audiobook.id}`, updatePayload).catch((error) => {
|
|
|
|
console.error('Failed to update', error)
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
this.isProcessing = false
|
|
|
|
if (updatedAudiobook) {
|
|
|
|
console.log('Update Successful', updatedAudiobook)
|
|
|
|
this.$toast.success('Update Successful')
|
|
|
|
this.$emit('close')
|
|
|
|
}
|
|
|
|
}
|
2021-08-18 00:01:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|