2021-08-18 00:01:11 +02:00
|
|
|
<template>
|
2021-09-01 20:47:18 +02:00
|
|
|
<div class="relative">
|
|
|
|
<!-- New Book Flag -->
|
2021-09-21 23:42:01 +02:00
|
|
|
<div v-show="isNew" class="absolute top-4 left-0 w-4 h-10 pr-2 bg-darkgreen box-shadow-xl z-20">
|
2021-09-01 20:47:18 +02:00
|
|
|
<div class="absolute top-0 left-0 w-full h-full transform -rotate-90 flex items-center justify-center">
|
|
|
|
<p class="text-center text-sm">New</p>
|
|
|
|
</div>
|
|
|
|
<div class="absolute -bottom-4 left-0 triangle-right" />
|
|
|
|
</div>
|
|
|
|
|
2021-09-29 00:36:41 +02:00
|
|
|
<div class="rounded-sm h-full overflow-hidden relative" :style="{ padding: `16px ${paddingX}px` }" @click.stop>
|
2021-09-01 20:47:18 +02:00
|
|
|
<nuxt-link :to="isSelectionMode ? '' : `/audiobook/${audiobookId}`" class="cursor-pointer">
|
2021-09-29 00:36:41 +02:00
|
|
|
<div class="w-full relative box-shadow-book" :style="{ height: height + 'px' }" @click="clickCard" @mouseover="isHovering = true" @mouseleave="isHovering = false">
|
2021-09-01 20:47:18 +02:00
|
|
|
<cards-book-cover :audiobook="audiobook" :author-override="authorFormat" :width="width" />
|
2021-08-18 00:01:11 +02:00
|
|
|
|
2021-09-01 20:47:18 +02:00
|
|
|
<div v-show="isHovering || isSelectionMode" class="absolute top-0 left-0 w-full h-full bg-black rounded" :class="overlayWrapperClasslist">
|
2021-10-10 23:36:21 +02:00
|
|
|
<div v-show="showPlayButton" class="h-full flex items-center justify-center">
|
2021-09-01 20:47:18 +02:00
|
|
|
<div class="hover:text-gray-200 hover:scale-110 transform duration-200" @click.stop.prevent="play">
|
|
|
|
<span class="material-icons" :style="{ fontSize: playIconFontSize + 'rem' }">play_circle_filled</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-10 23:36:21 +02:00
|
|
|
<div v-show="showReadButton" class="h-full flex items-center justify-center">
|
|
|
|
<div class="hover:text-gray-200 hover:scale-110 transform duration-200" @click.stop.prevent="clickReadEBook">
|
|
|
|
<span class="material-icons" :style="{ fontSize: playIconFontSize + 'rem' }">auto_stories</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-07 00:42:15 +02:00
|
|
|
|
|
|
|
<div v-if="userCanUpdate" v-show="!isSelectionMode" class="absolute cursor-pointer hover:text-yellow-300 hover:scale-125 transform duration-50" :style="{ top: 0.375 * sizeMultiplier + 'rem', right: 0.375 * sizeMultiplier + 'rem' }" @click.stop.prevent="editClick">
|
2021-09-01 20:47:18 +02:00
|
|
|
<span class="material-icons" :style="{ fontSize: sizeMultiplier + 'rem' }">edit</span>
|
|
|
|
</div>
|
2021-09-07 00:42:15 +02:00
|
|
|
|
2021-09-17 21:15:15 +02:00
|
|
|
<div class="absolute cursor-pointer hover:text-yellow-300 hover:scale-125 transform duration-100" :style="{ top: 0.375 * sizeMultiplier + 'rem', left: 0.375 * sizeMultiplier + 'rem' }" @click.stop.prevent="selectBtnClick">
|
2021-09-01 20:47:18 +02:00
|
|
|
<span class="material-icons" :class="selected ? 'text-yellow-400' : ''" :style="{ fontSize: 1.25 * sizeMultiplier + 'rem' }">{{ selected ? 'radio_button_checked' : 'radio_button_unchecked' }}</span>
|
2021-08-18 00:01:11 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-07 00:42:15 +02:00
|
|
|
|
2021-09-26 22:44:25 +02:00
|
|
|
<div v-if="volumeNumber && showVolumeNumber && !isHovering && !isSelectionMode" class="absolute rounded-lg bg-black bg-opacity-90 box-shadow-md" :style="{ top: 0.375 * sizeMultiplier + 'rem', right: 0.375 * sizeMultiplier + 'rem', padding: `${0.1 * sizeMultiplier}rem ${0.25 * sizeMultiplier}rem` }">
|
2021-09-26 22:34:08 +02:00
|
|
|
<p :style="{ fontSize: sizeMultiplier * 0.8 + 'rem' }">#{{ volumeNumber }}</p>
|
|
|
|
</div>
|
|
|
|
|
2021-10-09 00:30:20 +02:00
|
|
|
<!-- EBook Icon -->
|
2021-10-10 23:36:21 +02:00
|
|
|
<div
|
|
|
|
v-if="showSmallEBookIcon"
|
|
|
|
class="absolute rounded-full bg-blue-500 flex items-center justify-center bg-opacity-90 hover:scale-125 transform duration-200"
|
|
|
|
:style="{ bottom: 0.375 * sizeMultiplier + 'rem', right: 0.375 * sizeMultiplier + 'rem', padding: `${0.1 * sizeMultiplier}rem ${0.25 * sizeMultiplier}rem`, width: 1.5 * sizeMultiplier + 'rem', height: 1.5 * sizeMultiplier + 'rem' }"
|
|
|
|
@click.stop.prevent="clickReadEBook"
|
|
|
|
>
|
2021-10-02 20:50:39 +02:00
|
|
|
<!-- <p :style="{ fontSize: sizeMultiplier * 0.8 + 'rem' }">EBook</p> -->
|
2021-10-10 23:36:21 +02:00
|
|
|
<span class="material-icons text-white" :style="{ fontSize: sizeMultiplier * 1 + 'rem' }">auto_stories</span>
|
2021-10-02 20:50:39 +02:00
|
|
|
</div>
|
2021-09-27 13:52:21 +02:00
|
|
|
|
2021-09-24 23:14:33 +02:00
|
|
|
<div v-show="!isSelectionMode" class="absolute bottom-0 left-0 h-1 shadow-sm max-w-full" :class="userIsRead ? 'bg-success' : 'bg-yellow-400'" :style="{ width: width * userProgressPercent + 'px' }"></div>
|
2021-08-27 01:32:05 +02:00
|
|
|
|
2021-09-01 20:47:18 +02:00
|
|
|
<ui-tooltip v-if="showError" :text="errorText" class="absolute bottom-4 left-0">
|
|
|
|
<div :style="{ height: 1.5 * sizeMultiplier + 'rem', width: 2.5 * sizeMultiplier + 'rem' }" class="bg-error rounded-r-full shadow-md flex items-center justify-end border-r border-b border-red-300">
|
|
|
|
<span class="material-icons text-red-100 pr-1" :style="{ fontSize: 0.875 * sizeMultiplier + 'rem' }">priority_high</span>
|
|
|
|
</div>
|
|
|
|
</ui-tooltip>
|
|
|
|
</div>
|
|
|
|
</nuxt-link>
|
|
|
|
</div>
|
2021-08-27 01:32:05 +02:00
|
|
|
</div>
|
2021-08-18 00:01:11 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
audiobook: {
|
|
|
|
type: Object,
|
|
|
|
default: () => null
|
|
|
|
},
|
|
|
|
userProgress: {
|
|
|
|
type: Object,
|
|
|
|
default: () => null
|
2021-08-26 16:47:51 +02:00
|
|
|
},
|
|
|
|
width: {
|
|
|
|
type: Number,
|
|
|
|
default: 120
|
2021-09-26 22:34:08 +02:00
|
|
|
},
|
|
|
|
showVolumeNumber: Boolean
|
2021-08-18 00:01:11 +02:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isHovering: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2021-10-02 20:50:39 +02:00
|
|
|
showExperimentalFeatures() {
|
|
|
|
return this.$store.state.showExperimentalFeatures
|
|
|
|
},
|
2021-09-01 20:47:18 +02:00
|
|
|
isNew() {
|
2021-09-21 23:42:01 +02:00
|
|
|
return this.tags.includes('New')
|
2021-09-01 20:47:18 +02:00
|
|
|
},
|
|
|
|
tags() {
|
|
|
|
return this.audiobook.tags || []
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
audiobookId() {
|
|
|
|
return this.audiobook.id
|
|
|
|
},
|
2021-09-27 13:52:21 +02:00
|
|
|
hasEbook() {
|
|
|
|
return this.audiobook.numEbooks
|
|
|
|
},
|
2021-10-10 23:36:21 +02:00
|
|
|
hasTracks() {
|
|
|
|
return this.audiobook.numTracks
|
|
|
|
},
|
2021-08-27 01:32:05 +02:00
|
|
|
isSelectionMode() {
|
2021-09-28 13:44:40 +02:00
|
|
|
return !!this.selectedAudiobooks.length
|
2021-08-27 01:32:05 +02:00
|
|
|
},
|
|
|
|
selectedAudiobooks() {
|
|
|
|
return this.$store.state.selectedAudiobooks
|
|
|
|
},
|
|
|
|
selected() {
|
|
|
|
return this.$store.getters['getIsAudiobookSelected'](this.audiobookId)
|
|
|
|
},
|
|
|
|
processingBatch() {
|
|
|
|
return this.$store.state.processingBatch
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
book() {
|
|
|
|
return this.audiobook.book || {}
|
|
|
|
},
|
|
|
|
height() {
|
|
|
|
return this.width * 1.6
|
|
|
|
},
|
2021-08-26 16:47:51 +02:00
|
|
|
sizeMultiplier() {
|
|
|
|
return this.width / 120
|
|
|
|
},
|
|
|
|
paddingX() {
|
|
|
|
return 16 * this.sizeMultiplier
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
title() {
|
|
|
|
return this.book.title
|
|
|
|
},
|
2021-08-26 16:47:51 +02:00
|
|
|
playIconFontSize() {
|
|
|
|
return Math.max(2, 3 * this.sizeMultiplier)
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
author() {
|
|
|
|
return this.book.author
|
|
|
|
},
|
2021-08-25 03:24:40 +02:00
|
|
|
authorFL() {
|
|
|
|
return this.book.authorFL || this.author
|
|
|
|
},
|
|
|
|
authorLF() {
|
|
|
|
return this.book.authorLF || this.author
|
|
|
|
},
|
|
|
|
authorFormat() {
|
|
|
|
if (!this.orderBy || !this.orderBy.startsWith('book.author')) return null
|
|
|
|
return this.orderBy === 'book.authorLF' ? this.authorLF : this.authorFL
|
|
|
|
},
|
|
|
|
volumeNumber() {
|
|
|
|
return this.book.volumeNumber || null
|
|
|
|
},
|
|
|
|
orderBy() {
|
|
|
|
return this.$store.getters['user/getUserSetting']('orderBy')
|
|
|
|
},
|
|
|
|
filterBy() {
|
|
|
|
return this.$store.getters['user/getUserSetting']('filterBy')
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
userProgressPercent() {
|
|
|
|
return this.userProgress ? this.userProgress.progress || 0 : 0
|
|
|
|
},
|
2021-09-06 21:13:01 +02:00
|
|
|
userIsRead() {
|
|
|
|
return this.userProgress ? !!this.userProgress.isRead : false
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
showError() {
|
2021-10-10 23:36:21 +02:00
|
|
|
return this.hasMissingParts || this.hasInvalidParts || this.isMissing || this.isIncomplete
|
|
|
|
},
|
|
|
|
showReadButton() {
|
|
|
|
return !this.isSelectionMode && this.showExperimentalFeatures && !this.showPlayButton && this.hasEbook
|
|
|
|
},
|
|
|
|
showPlayButton() {
|
|
|
|
return !this.isSelectionMode && !this.isMissing && !this.isIncomplete && this.hasTracks
|
|
|
|
},
|
|
|
|
showSmallEBookIcon() {
|
|
|
|
return !this.isSelectionMode && this.showExperimentalFeatures && this.hasEbook
|
2021-09-18 01:40:30 +02:00
|
|
|
},
|
|
|
|
isMissing() {
|
|
|
|
return this.audiobook.isMissing
|
2021-08-18 00:01:11 +02:00
|
|
|
},
|
2021-10-10 23:36:21 +02:00
|
|
|
isIncomplete() {
|
|
|
|
return this.audiobook.isIncomplete
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
hasMissingParts() {
|
|
|
|
return this.audiobook.hasMissingParts
|
|
|
|
},
|
|
|
|
hasInvalidParts() {
|
|
|
|
return this.audiobook.hasInvalidParts
|
|
|
|
},
|
|
|
|
errorText() {
|
2021-09-18 01:40:30 +02:00
|
|
|
if (this.isMissing) return 'Audiobook directory is missing!'
|
2021-10-10 23:36:21 +02:00
|
|
|
else if (this.isIncomplete) return 'Audiobook has no audio tracks & ebook'
|
2021-08-18 00:01:11 +02:00
|
|
|
var txt = ''
|
|
|
|
if (this.hasMissingParts) {
|
|
|
|
txt = `${this.hasMissingParts} missing parts.`
|
|
|
|
}
|
|
|
|
if (this.hasInvalidParts) {
|
|
|
|
if (this.hasMissingParts) txt += ' '
|
|
|
|
txt += `${this.hasInvalidParts} invalid parts.`
|
|
|
|
}
|
|
|
|
return txt || 'Unknown Error'
|
2021-08-27 01:32:05 +02:00
|
|
|
},
|
|
|
|
overlayWrapperClasslist() {
|
|
|
|
var classes = []
|
|
|
|
if (this.isSelectionMode) classes.push('bg-opacity-60')
|
|
|
|
else classes.push('bg-opacity-40')
|
|
|
|
if (this.selected) {
|
|
|
|
classes.push('border-2 border-yellow-400')
|
|
|
|
}
|
|
|
|
return classes
|
2021-09-07 00:42:15 +02:00
|
|
|
},
|
|
|
|
userCanUpdate() {
|
|
|
|
return this.$store.getters['user/getUserCanUpdate']
|
|
|
|
},
|
|
|
|
userCanDelete() {
|
|
|
|
return this.$store.getters['user/getUserCanDelete']
|
2021-08-18 00:01:11 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2021-08-27 01:32:05 +02:00
|
|
|
selectBtnClick() {
|
|
|
|
if (this.processingBatch) return
|
|
|
|
this.$store.commit('toggleAudiobookSelected', this.audiobookId)
|
|
|
|
},
|
2021-08-18 00:01:11 +02:00
|
|
|
clickError(e) {
|
|
|
|
e.stopPropagation()
|
|
|
|
this.$router.push(`/audiobook/${this.audiobookId}`)
|
|
|
|
},
|
|
|
|
play() {
|
|
|
|
this.$store.commit('setStreamAudiobook', this.audiobook)
|
|
|
|
this.$root.socket.emit('open_stream', this.audiobookId)
|
|
|
|
},
|
|
|
|
editClick() {
|
2021-10-16 03:31:00 +02:00
|
|
|
// this.$store.commit('showEditModal', this.audiobook)
|
|
|
|
this.$emit('edit', this.audiobook)
|
2021-08-27 01:32:05 +02:00
|
|
|
},
|
|
|
|
clickCard(e) {
|
|
|
|
if (this.isSelectionMode) {
|
|
|
|
e.stopPropagation()
|
|
|
|
e.preventDefault()
|
|
|
|
this.selectBtnClick()
|
|
|
|
}
|
2021-10-10 23:36:21 +02:00
|
|
|
},
|
|
|
|
clickReadEBook() {
|
|
|
|
this.$store.commit('showEReader', this.audiobook)
|
2021-08-18 00:01:11 +02:00
|
|
|
}
|
2021-09-28 13:44:40 +02:00
|
|
|
}
|
2021-08-18 00:01:11 +02:00
|
|
|
}
|
|
|
|
</script>
|