2021-12-01 03:02:40 +01:00
|
|
|
<template>
|
2021-12-18 03:52:11 +01:00
|
|
|
<div ref="card" :id="`series-card-${index}`" :style="{ width: width + 'px', height: height + 'px' }" class="rounded-sm z-30 cursor-pointer" @mousedown.prevent @mouseup.prevent @mousemove.prevent @mouseover="mouseover" @mouseleave="mouseleave" @click="clickCard">
|
2021-12-04 23:21:10 +01:00
|
|
|
<div class="absolute top-0 left-0 w-full box-shadow-book shadow-height" />
|
2021-12-25 20:57:48 +01:00
|
|
|
<div class="w-full h-full bg-primary relative rounded overflow-hidden z-0">
|
2021-12-02 22:49:03 +01:00
|
|
|
<covers-group-cover v-if="series" ref="cover" :id="seriesId" :name="title" :book-items="books" :width="width" :height="height" :book-cover-aspect-ratio="bookCoverAspectRatio" :group-to="seriesBooksRoute" />
|
2021-12-01 03:02:40 +01:00
|
|
|
</div>
|
|
|
|
|
2022-01-24 23:46:14 +01:00
|
|
|
<div class="absolute z-10 top-1.5 right-1.5 rounded-md leading-3 text-sm p-1 font-semibold text-white flex items-center justify-center" style="background-color: #cd9d49dd">{{ books.length }}</div>
|
|
|
|
|
2021-12-26 20:42:27 +01:00
|
|
|
<div v-if="hasValidCovers" class="bg-black bg-opacity-60 absolute top-0 left-0 w-full h-full flex items-center justify-center text-center transition-opacity" :class="isHovering ? '' : 'opacity-0'" :style="{ padding: `${sizeMultiplier}rem` }">
|
2021-12-02 22:49:03 +01:00
|
|
|
<p class="font-book" :style="{ fontSize: 1.2 * sizeMultiplier + 'rem' }">{{ title }}</p>
|
|
|
|
</div>
|
2021-12-01 03:02:40 +01:00
|
|
|
<!-- <div v-if="isHovering || isSelectionMode" class="absolute top-0 left-0 w-full h-full bg-black bg-opacity-40">
|
|
|
|
</div> -->
|
2021-12-18 03:52:11 +01:00
|
|
|
<div v-if="!isCategorized" class="categoryPlacard absolute z-30 left-0 right-0 mx-auto -bottom-6 h-6 rounded-md font-book text-center" :style="{ width: Math.min(160, width) + 'px' }">
|
2021-12-02 22:49:03 +01:00
|
|
|
<div class="w-full h-full shinyBlack flex items-center justify-center rounded-sm border" :style="{ padding: `0rem ${0.5 * sizeMultiplier}rem` }">
|
2021-12-01 03:02:40 +01:00
|
|
|
<p class="truncate" :style="{ fontSize: labelFontSize + 'rem' }">{{ title }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
index: Number,
|
2021-12-02 22:49:03 +01:00
|
|
|
width: Number,
|
|
|
|
height: Number,
|
2021-12-18 03:52:11 +01:00
|
|
|
bookCoverAspectRatio: Number,
|
|
|
|
isCategorized: Boolean,
|
|
|
|
seriesMount: {
|
|
|
|
type: Object,
|
|
|
|
default: () => null
|
|
|
|
}
|
2021-12-01 03:02:40 +01:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
series: null,
|
|
|
|
isSelectionMode: false,
|
|
|
|
selected: false,
|
|
|
|
isHovering: false,
|
|
|
|
imageReady: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
labelFontSize() {
|
|
|
|
if (this.width < 160) return 0.75
|
|
|
|
return 0.875
|
|
|
|
},
|
|
|
|
sizeMultiplier() {
|
2021-12-02 22:49:03 +01:00
|
|
|
if (this.bookCoverAspectRatio === 1) return this.width / (120 * 1.6 * 2)
|
|
|
|
return this.width / 240
|
2021-12-01 03:02:40 +01:00
|
|
|
},
|
|
|
|
title() {
|
|
|
|
return this.series ? this.series.name : ''
|
|
|
|
},
|
|
|
|
books() {
|
|
|
|
return this.series ? this.series.books || [] : []
|
|
|
|
},
|
|
|
|
store() {
|
|
|
|
return this.$store || this.$nuxt.$store
|
|
|
|
},
|
|
|
|
currentLibraryId() {
|
|
|
|
return this.store.state.libraries.currentLibraryId
|
2021-12-02 02:07:03 +01:00
|
|
|
},
|
|
|
|
seriesBooksRoute() {
|
|
|
|
return `/library/${this.currentLibraryId}/series/${this.$encode(this.title)}`
|
2021-12-02 22:49:03 +01:00
|
|
|
},
|
|
|
|
seriesId() {
|
2021-12-18 03:52:11 +01:00
|
|
|
return this.series ? this.$encode(this.title) : null
|
2021-12-02 22:49:03 +01:00
|
|
|
},
|
|
|
|
hasValidCovers() {
|
|
|
|
var validCovers = this.books.map((bookItem) => bookItem.book.cover)
|
|
|
|
return !!validCovers.length
|
2021-12-01 03:02:40 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
setEntity(_series) {
|
|
|
|
this.series = _series
|
|
|
|
},
|
|
|
|
setSelectionMode(val) {
|
|
|
|
this.isSelectionMode = val
|
|
|
|
},
|
|
|
|
mouseover() {
|
|
|
|
this.isHovering = true
|
|
|
|
},
|
|
|
|
mouseleave() {
|
|
|
|
this.isHovering = false
|
|
|
|
},
|
|
|
|
clickCard() {
|
|
|
|
if (!this.series) return
|
|
|
|
var router = this.$router || this.$nuxt.$router
|
2021-12-04 01:07:42 +01:00
|
|
|
router.push(`/library/${this.currentLibraryId}/series/${this.seriesId}`)
|
2021-12-01 03:02:40 +01:00
|
|
|
},
|
|
|
|
imageLoaded() {
|
|
|
|
this.imageReady = true
|
|
|
|
},
|
|
|
|
destroy() {
|
|
|
|
// destroy the vue listeners, etc
|
|
|
|
this.$destroy()
|
|
|
|
|
|
|
|
// remove the element from the DOM
|
|
|
|
if (this.$el && this.$el.parentNode) {
|
|
|
|
this.$el.parentNode.removeChild(this.$el)
|
|
|
|
} else if (this.$el && this.$el.remove) {
|
|
|
|
this.$el.remove()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-12-18 03:52:11 +01:00
|
|
|
mounted() {
|
|
|
|
if (this.seriesMount) {
|
|
|
|
this.setEntity(this.seriesMount)
|
|
|
|
}
|
|
|
|
},
|
2021-12-02 22:49:03 +01:00
|
|
|
beforeDestroy() {}
|
2021-12-01 03:02:40 +01:00
|
|
|
}
|
2021-12-04 23:21:10 +01:00
|
|
|
</script>
|