2021-10-17 20:20:00 -05:00
|
|
|
<template>
|
2023-06-17 17:34:08 -05:00
|
|
|
<div v-if="show" class="fixed top-0 left-0 right-0 layout-wrapper w-full bg-primary z-40 pt-8" :class="{ 'reader-player-open': !!playerLibraryItemId }">
|
|
|
|
<div class="h-28 pt-8 w-full bg-bg px-2 fixed top-0 left-0 z-30 transition-transform" :class="showingToolbar ? 'translate-y-0' : '-translate-y-28'" @touchstart.stop @mousedown.stop @touchend.stop @mouseup.stop>
|
|
|
|
<div class="flex items-center mb-2">
|
|
|
|
<button type="button" class="inline-flex mx-2" @click.stop="show = false"><span class="material-icons-outlined text-3xl text-white">chevron_left</span></button>
|
|
|
|
<div class="flex-grow" />
|
|
|
|
<button v-if="isComic" type="button" class="inline-flex mx-2" @click.stop="clickTOCBtn"><span class="material-icons-outlined text-2xl text-white">format_list_bulleted</span></button>
|
|
|
|
<!-- <button v-if="isEpub" type="button" class="inline-flex mx-2" @click.stop="clickSettingsBtn"><span class="material-icons text-2xl text-white">settings</span></button> -->
|
|
|
|
<button v-if="comicHasMetadata" type="button" class="inline-flex mx-2" @click.stop="clickMetadataBtn"><span class="material-icons text-2xl text-white">more</span></button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p class="text-center truncate">{{ title }}</p>
|
2021-10-17 20:20:00 -05:00
|
|
|
</div>
|
2023-06-17 17:34:08 -05:00
|
|
|
|
|
|
|
<component v-if="readerComponentName" ref="readerComponent" :is="readerComponentName" :url="ebookUrl" :library-item="selectedLibraryItem" :is-local="isLocal" :keep-progress="keepProgress" @touchstart="touchstart" @touchend="touchend" @loaded="readerLoaded" />
|
2021-10-17 20:20:00 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-05-21 15:02:49 -05:00
|
|
|
import { Capacitor } from '@capacitor/core'
|
|
|
|
|
2021-10-17 20:20:00 -05:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
touchstartX: 0,
|
2022-12-06 17:07:27 -06:00
|
|
|
touchstartY: 0,
|
|
|
|
touchendX: 0,
|
|
|
|
touchendY: 0,
|
2023-06-17 17:34:08 -05:00
|
|
|
touchstartTime: 0,
|
|
|
|
touchIdentifier: null,
|
|
|
|
showingToolbar: false,
|
|
|
|
showTOCModal: false,
|
|
|
|
showSettingsModal: false,
|
|
|
|
comicHasMetadata: false,
|
|
|
|
chapters: []
|
2021-10-17 20:20:00 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
show: {
|
|
|
|
handler(newVal) {
|
|
|
|
if (newVal) {
|
2023-06-17 17:34:08 -05:00
|
|
|
this.showingToolbar = false
|
|
|
|
this.comicHasMetadata = false
|
2021-10-17 20:20:00 -05:00
|
|
|
this.registerListeners()
|
2023-06-17 17:34:08 -05:00
|
|
|
this.$showHideStatusBar(false)
|
2021-10-17 20:20:00 -05:00
|
|
|
} else {
|
|
|
|
this.unregisterListeners()
|
2023-06-17 17:34:08 -05:00
|
|
|
this.$showHideStatusBar(true)
|
2021-10-17 20:20:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
show: {
|
|
|
|
get() {
|
|
|
|
return this.$store.state.showReader
|
|
|
|
},
|
|
|
|
set(val) {
|
|
|
|
this.$store.commit('setShowReader', val)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
title() {
|
2022-04-16 06:10:10 -05:00
|
|
|
return this.mediaMetadata.title || 'No Title'
|
2021-10-17 20:20:00 -05:00
|
|
|
},
|
2022-04-16 06:10:10 -05:00
|
|
|
selectedLibraryItem() {
|
|
|
|
return this.$store.state.selectedLibraryItem
|
|
|
|
},
|
|
|
|
media() {
|
2023-06-04 11:13:05 -05:00
|
|
|
return this.selectedLibraryItem?.media || null
|
2022-04-16 06:10:10 -05:00
|
|
|
},
|
|
|
|
mediaMetadata() {
|
2023-06-04 11:13:05 -05:00
|
|
|
return this.media?.metadata || {}
|
2021-10-17 20:20:00 -05:00
|
|
|
},
|
|
|
|
readerComponentName() {
|
|
|
|
if (this.ebookType === 'epub') return 'readers-epub-reader'
|
|
|
|
else if (this.ebookType === 'mobi') return 'readers-mobi-reader'
|
|
|
|
else if (this.ebookType === 'comic') return 'readers-comic-reader'
|
2022-12-06 17:07:27 -06:00
|
|
|
else if (this.ebookType === 'pdf') return 'readers-pdf-reader'
|
2021-10-17 20:20:00 -05:00
|
|
|
return null
|
|
|
|
},
|
2022-04-16 06:10:10 -05:00
|
|
|
ebookFile() {
|
2023-06-11 11:12:52 -05:00
|
|
|
// ebook file id is passed when reading a supplementary ebook
|
|
|
|
if (this.ebookFileId) {
|
|
|
|
return this.selectedLibraryItem.libraryFiles.find((lf) => lf.ino === this.ebookFileId)
|
|
|
|
}
|
|
|
|
return this.media.ebookFile
|
2022-04-16 06:10:10 -05:00
|
|
|
},
|
|
|
|
ebookFormat() {
|
2023-06-11 11:12:52 -05:00
|
|
|
if (!this.ebookFile) return null
|
|
|
|
// Use file extension for supplementary ebook
|
|
|
|
if (!this.ebookFile.ebookFormat) {
|
|
|
|
return this.ebookFile.metadata.ext.toLowerCase().slice(1)
|
|
|
|
}
|
|
|
|
return this.ebookFile.ebookFormat
|
2022-04-16 06:10:10 -05:00
|
|
|
},
|
|
|
|
ebookType() {
|
|
|
|
if (this.isMobi) return 'mobi'
|
|
|
|
else if (this.isEpub) return 'epub'
|
|
|
|
else if (this.isPdf) return 'pdf'
|
|
|
|
else if (this.isComic) return 'comic'
|
|
|
|
return null
|
|
|
|
},
|
|
|
|
isEpub() {
|
|
|
|
return this.ebookFormat == 'epub'
|
|
|
|
},
|
|
|
|
isMobi() {
|
|
|
|
return this.ebookFormat == 'mobi' || this.ebookFormat == 'azw3'
|
2021-10-17 20:20:00 -05:00
|
|
|
},
|
2022-04-16 06:10:10 -05:00
|
|
|
isPdf() {
|
|
|
|
return this.ebookFormat == 'pdf'
|
|
|
|
},
|
|
|
|
isComic() {
|
|
|
|
return this.ebookFormat == 'cbz' || this.ebookFormat == 'cbr'
|
|
|
|
},
|
2023-05-21 15:02:49 -05:00
|
|
|
isLocal() {
|
|
|
|
return !!this.ebookFile?.isLocal
|
|
|
|
},
|
|
|
|
localContentUrl() {
|
|
|
|
return this.ebookFile?.contentUrl
|
|
|
|
},
|
2022-04-16 06:10:10 -05:00
|
|
|
ebookUrl() {
|
|
|
|
if (!this.ebookFile) return null
|
2023-05-21 15:02:49 -05:00
|
|
|
if (this.localContentUrl) {
|
|
|
|
return Capacitor.convertFileSrc(this.localContentUrl)
|
|
|
|
}
|
2022-12-06 17:07:27 -06:00
|
|
|
const serverAddress = this.$store.getters['user/getServerAddress']
|
2023-06-11 11:12:52 -05:00
|
|
|
|
|
|
|
if (this.ebookFileId) {
|
|
|
|
return `${serverAddress}/api/items/${this.selectedLibraryItem.id}/ebook/${this.ebookFileId}`
|
|
|
|
}
|
2023-06-04 11:13:05 -05:00
|
|
|
return `${serverAddress}/api/items/${this.selectedLibraryItem.id}/ebook`
|
2022-12-04 08:29:55 -06:00
|
|
|
},
|
|
|
|
playerLibraryItemId() {
|
|
|
|
return this.$store.state.playerLibraryItemId
|
2023-06-11 11:12:52 -05:00
|
|
|
},
|
|
|
|
keepProgress() {
|
|
|
|
return this.$store.state.ereaderKeepProgress
|
|
|
|
},
|
|
|
|
ebookFileId() {
|
|
|
|
return this.$store.state.ereaderFileId
|
2021-10-17 20:20:00 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2023-06-17 17:34:08 -05:00
|
|
|
readerLoaded(data) {
|
|
|
|
if (this.isComic) {
|
|
|
|
this.comicHasMetadata = data.hasMetadata
|
|
|
|
}
|
|
|
|
},
|
|
|
|
clickMetadataBtn() {
|
|
|
|
this.$refs.readerComponent?.clickShowInfoMenu()
|
|
|
|
},
|
|
|
|
clickTOCBtn() {
|
|
|
|
if (this.isComic) {
|
|
|
|
this.$refs.readerComponent?.clickShowPageMenu?.()
|
|
|
|
} else {
|
|
|
|
this.chapters = this.$refs.readerComponent?.chapters || []
|
|
|
|
this.showTOCModal = true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
clickSettingsBtn() {
|
|
|
|
this.showSettingsModal = true
|
|
|
|
},
|
2021-10-17 20:20:00 -05:00
|
|
|
next() {
|
|
|
|
if (this.$refs.readerComponent && this.$refs.readerComponent.next) {
|
|
|
|
this.$refs.readerComponent.next()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
prev() {
|
|
|
|
if (this.$refs.readerComponent && this.$refs.readerComponent.prev) {
|
|
|
|
this.$refs.readerComponent.prev()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
handleGesture() {
|
2023-06-17 17:34:08 -05:00
|
|
|
// Touch must be less than 1s. Must be > 60px drag and X distance > Y distance
|
2022-12-06 17:07:27 -06:00
|
|
|
const touchTimeMs = Date.now() - this.touchstartTime
|
|
|
|
if (touchTimeMs >= 1000) {
|
|
|
|
console.log('Touch too long', touchTimeMs)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const touchDistanceX = Math.abs(this.touchendX - this.touchstartX)
|
|
|
|
const touchDistanceY = Math.abs(this.touchendY - this.touchstartY)
|
2023-06-17 17:34:08 -05:00
|
|
|
const touchDistance = Math.sqrt(Math.pow(this.touchstartX - this.touchendX, 2) + Math.pow(this.touchstartY - this.touchendY, 2))
|
|
|
|
if (touchDistance < 60) {
|
|
|
|
this.toggleToolbar()
|
2023-03-06 10:58:08 -06:00
|
|
|
return
|
|
|
|
}
|
2022-12-06 17:07:27 -06:00
|
|
|
|
2023-06-17 17:34:08 -05:00
|
|
|
if (touchDistanceX < 60 || touchDistanceY > touchDistanceX) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.hideToolbar()
|
2021-10-17 20:20:00 -05:00
|
|
|
if (this.touchendX < this.touchstartX) {
|
|
|
|
this.next()
|
|
|
|
}
|
|
|
|
if (this.touchendX > this.touchstartX) {
|
|
|
|
this.prev()
|
|
|
|
}
|
|
|
|
},
|
2023-06-17 17:34:08 -05:00
|
|
|
showToolbar() {
|
|
|
|
this.showingToolbar = true
|
|
|
|
},
|
|
|
|
hideToolbar() {
|
|
|
|
this.showingToolbar = false
|
|
|
|
},
|
|
|
|
toggleToolbar() {
|
|
|
|
if (this.showingToolbar) this.hideToolbar()
|
|
|
|
else this.showToolbar()
|
|
|
|
},
|
2021-10-17 20:20:00 -05:00
|
|
|
touchstart(e) {
|
2023-06-17 17:34:08 -05:00
|
|
|
// Ignore rapid touch
|
|
|
|
if (this.touchstartTime && Date.now() - this.touchstartTime < 250) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-03-06 10:58:08 -06:00
|
|
|
this.touchstartX = e.touches[0].screenX
|
|
|
|
this.touchstartY = e.touches[0].screenY
|
2022-12-06 17:07:27 -06:00
|
|
|
this.touchstartTime = Date.now()
|
2023-06-17 17:34:08 -05:00
|
|
|
this.touchIdentifier = e.touches[0].identifier
|
2021-10-17 20:20:00 -05:00
|
|
|
},
|
|
|
|
touchend(e) {
|
2023-06-17 17:34:08 -05:00
|
|
|
if (this.touchIdentifier !== e.changedTouches[0].identifier) {
|
|
|
|
return
|
|
|
|
}
|
2021-10-17 20:20:00 -05:00
|
|
|
this.touchendX = e.changedTouches[0].screenX
|
2022-12-06 17:07:27 -06:00
|
|
|
this.touchendY = e.changedTouches[0].screenY
|
2021-10-17 20:20:00 -05:00
|
|
|
this.handleGesture()
|
|
|
|
},
|
2023-06-04 15:38:26 -05:00
|
|
|
closeEvt() {
|
|
|
|
this.show = false
|
|
|
|
},
|
2021-10-17 20:20:00 -05:00
|
|
|
registerListeners() {
|
2023-06-04 15:38:26 -05:00
|
|
|
this.$eventBus.$on('close-ebook', this.closeEvt)
|
2021-10-17 20:20:00 -05:00
|
|
|
document.body.addEventListener('touchstart', this.touchstart)
|
|
|
|
document.body.addEventListener('touchend', this.touchend)
|
|
|
|
},
|
|
|
|
unregisterListeners() {
|
2023-06-04 15:38:26 -05:00
|
|
|
this.$eventBus.$on('close-ebook', this.closeEvt)
|
2021-10-17 20:20:00 -05:00
|
|
|
document.body.removeEventListener('touchstart', this.touchstart)
|
|
|
|
document.body.removeEventListener('touchend', this.touchend)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
this.unregisterListeners()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|