mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-26 15:18:42 +02:00
81 lines
No EOL
1.9 KiB
Vue
81 lines
No EOL
1.9 KiB
Vue
<template>
|
|
<div class="w-full px-2 py-2 overflow-hidden relative">
|
|
<div v-if="book" class="flex h-20">
|
|
<div class="h-full relative" :style="{ width: bookWidth + 'px' }">
|
|
<covers-book-cover :library-item="book" :width="bookWidth" :book-cover-aspect-ratio="bookCoverAspectRatio" />
|
|
</div>
|
|
<div class="w-80 h-full px-2 flex items-center">
|
|
<div>
|
|
<nuxt-link :to="`/item/${book.id}`" class="truncate text-sm">{{ bookTitle }}</nuxt-link>
|
|
<p class="truncate block text-gray-400 text-xs">{{ bookAuthor }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
collectionId: String,
|
|
book: {
|
|
type: Object,
|
|
default: () => {}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
isProcessingReadUpdate: false,
|
|
processingRemove: false
|
|
}
|
|
},
|
|
computed: {
|
|
media() {
|
|
return this.book.media || {}
|
|
},
|
|
mediaMetadata() {
|
|
return this.media.metadata || {}
|
|
},
|
|
tracks() {
|
|
return this.media.tracks || []
|
|
},
|
|
bookTitle() {
|
|
return this.mediaMetadata.title || ''
|
|
},
|
|
bookAuthor() {
|
|
return this.mediaMetadata.authorName || ''
|
|
},
|
|
bookDuration() {
|
|
return this.$secondsToTimestamp(this.media.duration)
|
|
},
|
|
bookCoverAspectRatio() {
|
|
return this.$store.getters['getBookCoverAspectRatio']
|
|
},
|
|
bookWidth() {
|
|
if (this.bookCoverAspectRatio === 1) return 80
|
|
return 50
|
|
},
|
|
isMissing() {
|
|
return this.book.isMissing
|
|
},
|
|
isIncomplete() {
|
|
return this.book.isIncomplete
|
|
},
|
|
numTracks() {
|
|
return this.book.numTracks
|
|
},
|
|
isStreaming() {
|
|
return this.$store.getters['getIsItemStreaming'](this.book.id)
|
|
},
|
|
showPlayBtn() {
|
|
return !this.isMissing && !this.isIncomplete && !this.isStreaming && this.numTracks
|
|
}
|
|
},
|
|
methods: {
|
|
clickEdit() {
|
|
this.$emit('edit', this.book)
|
|
}
|
|
},
|
|
mounted() {}
|
|
}
|
|
</script> |