2021-10-31 01:50:49 +02:00
|
|
|
<template>
|
|
|
|
<tr class="book-row" :class="selected ? 'selected' : ''">
|
|
|
|
<td class="body-cell min-w-12 max-w-12">
|
|
|
|
<div class="flex justify-center">
|
|
|
|
<div class="bg-white border-2 rounded border-gray-400 flex flex-shrink-0 justify-center items-center focus-within:border-blue-500 w-4 h-4" @click="selectBtnClick">
|
|
|
|
<svg v-if="selected" class="fill-current text-green-500 pointer-events-none w-2.5 h-2.5" viewBox="0 0 20 20"><path d="M0 11l2-2 5 5L18 3l2 2L7 18z" /></svg>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-6 max-w-6">
|
2021-11-07 02:31:46 +01:00
|
|
|
<covers-hover-book-cover :audiobook="book" />
|
2021-10-31 01:50:49 +02:00
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-64 max-w-64 px-2">
|
2022-03-14 01:34:31 +01:00
|
|
|
<nuxt-link :to="`/item/${book.id}`" class="hover:underline">
|
2021-10-31 21:31:03 +01:00
|
|
|
<p class="truncate">
|
|
|
|
{{ book.book.title }}<span v-if="book.book.subtitle">: {{ book.book.subtitle }}</span>
|
|
|
|
</p>
|
2021-10-31 02:12:36 +01:00
|
|
|
</nuxt-link>
|
2021-10-31 01:50:49 +02:00
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-48 max-w-48 px-2">
|
|
|
|
<p class="truncate">{{ book.book.authorFL }}</p>
|
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-48 max-w-48 px-2">
|
|
|
|
<p class="truncate">{{ seriesText }}</p>
|
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-24 max-w-24 px-2">
|
2022-03-14 01:34:31 +01:00
|
|
|
<p class="truncate">{{ book.book.publishedYear }}</p>
|
2021-10-31 01:50:49 +02:00
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-80 max-w-80 px-2">
|
|
|
|
<p class="truncate">{{ book.book.description }}</p>
|
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-48 max-w-48 px-2">
|
|
|
|
<p class="truncate">{{ book.book.narrator }}</p>
|
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-48 max-w-48 px-2">
|
|
|
|
<p class="truncate">{{ genresText }}</p>
|
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-48 max-w-48 px-2">
|
|
|
|
<p class="truncate">{{ tagsText }}</p>
|
|
|
|
</td>
|
|
|
|
<td class="body-cell min-w-24 max-w-24 px-2">
|
|
|
|
<div class="flex">
|
|
|
|
<span v-if="userCanUpdate" class="material-icons cursor-pointer text-white text-opacity-60 hover:text-opacity-100 text-xl" @click="editClick">edit</span>
|
|
|
|
<span v-if="showPlayButton" class="material-icons cursor-pointer text-white text-opacity-60 hover:text-opacity-100 text-2xl mx-1" @click="startStream">play_arrow</span>
|
|
|
|
<span v-if="showReadButton" class="material-icons cursor-pointer text-white text-opacity-60 hover:text-opacity-100 text-xl" @click="openEbook">auto_stories</span>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
book: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {}
|
|
|
|
},
|
|
|
|
userAudiobook: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isProcessingReadUpdate: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
showExperimentalFeatures() {
|
|
|
|
return this.$store.state.showExperimentalFeatures
|
|
|
|
},
|
2022-03-13 23:10:48 +01:00
|
|
|
libraryItemId() {
|
2021-10-31 01:50:49 +02:00
|
|
|
return this.book.id
|
|
|
|
},
|
|
|
|
selected: {
|
|
|
|
get() {
|
2022-03-13 23:10:48 +01:00
|
|
|
return this.$store.getters['getIsLibraryItemSelected'](this.libraryItemId)
|
2021-10-31 01:50:49 +02:00
|
|
|
},
|
|
|
|
set(val) {
|
|
|
|
if (this.processingBatch) return
|
2022-03-13 23:10:48 +01:00
|
|
|
this.$store.commit('setLibraryItemSelected', { libraryItemId: this.libraryItemId, selected: val })
|
2021-10-31 01:50:49 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
processingBatch() {
|
|
|
|
return this.$store.state.processingBatch
|
|
|
|
},
|
|
|
|
bookObj() {
|
|
|
|
return this.book.book || {}
|
|
|
|
},
|
|
|
|
series() {
|
|
|
|
return this.bookObj.series || null
|
|
|
|
},
|
|
|
|
volumeNumber() {
|
|
|
|
return this.bookObj.volumeNumber || null
|
|
|
|
},
|
|
|
|
seriesText() {
|
|
|
|
if (!this.series) return ''
|
|
|
|
if (!this.volumeNumber) return this.series
|
|
|
|
return `${this.series} #${this.volumeNumber}`
|
|
|
|
},
|
|
|
|
genresText() {
|
|
|
|
if (!this.bookObj.genres) return ''
|
|
|
|
return this.bookObj.genres.join(', ')
|
|
|
|
},
|
|
|
|
tagsText() {
|
|
|
|
return (this.book.tags || []).join(', ')
|
|
|
|
},
|
|
|
|
isMissing() {
|
|
|
|
return this.book.isMissing
|
|
|
|
},
|
2021-12-02 02:07:03 +01:00
|
|
|
isInvalid() {
|
|
|
|
return this.book.isInvalid
|
2021-10-31 01:50:49 +02:00
|
|
|
},
|
|
|
|
numEbooks() {
|
|
|
|
return this.book.numEbooks
|
|
|
|
},
|
|
|
|
numTracks() {
|
|
|
|
return this.book.numTracks
|
|
|
|
},
|
|
|
|
isStreaming() {
|
2022-03-13 23:10:48 +01:00
|
|
|
return this.$store.getters['getLibraryItemIdStreaming'] === this.libraryItemId
|
2021-10-31 01:50:49 +02:00
|
|
|
},
|
|
|
|
showReadButton() {
|
|
|
|
return this.showExperimentalFeatures && this.numEbooks
|
|
|
|
},
|
|
|
|
showPlayButton() {
|
2021-12-02 02:07:03 +01:00
|
|
|
return !this.isMissing && !this.isInvalid && this.numTracks && !this.isStreaming
|
2021-10-31 01:50:49 +02:00
|
|
|
},
|
|
|
|
userIsRead() {
|
|
|
|
return this.userAudiobook ? !!this.userAudiobook.isRead : false
|
|
|
|
},
|
|
|
|
userCanUpdate() {
|
|
|
|
return this.$store.getters['user/getUserCanUpdate']
|
|
|
|
},
|
|
|
|
userCanDelete() {
|
|
|
|
return this.$store.getters['user/getUserCanDelete']
|
|
|
|
},
|
|
|
|
userCanDownload() {
|
|
|
|
return this.$store.getters['user/getUserCanDownload']
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
selectBtnClick() {
|
|
|
|
if (this.processingBatch) return
|
2022-03-13 23:10:48 +01:00
|
|
|
this.$store.commit('toggleLibraryItemSelected', this.libraryItemId)
|
2021-10-31 01:50:49 +02:00
|
|
|
},
|
|
|
|
openEbook() {
|
|
|
|
this.$store.commit('showEReader', this.book)
|
|
|
|
},
|
|
|
|
downloadClick() {
|
2022-03-14 01:34:31 +01:00
|
|
|
this.$store.commit('showEditModalOnTab', { libraryItem: this.book, tab: 'download' })
|
2021-10-31 01:50:49 +02:00
|
|
|
},
|
|
|
|
startStream() {
|
2022-03-13 02:59:35 +01:00
|
|
|
this.$eventBus.$emit('play-item', this.book.id)
|
2021-10-31 01:50:49 +02:00
|
|
|
},
|
|
|
|
editClick() {
|
|
|
|
this.$emit('edit', this.book)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {}
|
|
|
|
}
|
|
|
|
</script>
|