mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-01-05 05:29:45 +01:00
5078818295
Add Table of Contents
195 lines
5.6 KiB
Vue
195 lines
5.6 KiB
Vue
<template>
|
||
<div v-if="show" class="w-screen h-screen fixed top-0 left-0 z-60 bg-primary text-white">
|
||
|
||
<div class="absolute top-4 left-4 z-20">
|
||
<span v-if="hasToC && !tocOpen" ref="tocButton" class="material-icons cursor-pointer text-2xl"
|
||
@click="toggleToC">menu</span>
|
||
</div>
|
||
|
||
<div class="absolute top-4 left-1/2 transform -translate-x-1/2">
|
||
<h1 class="text-2xl mb-1" style="line-height: 1.15; font-weight: 100;">
|
||
<span style="font-weight: 600">{{ abTitle }}</span>
|
||
<span v-if="abAuthor" style="display: inline"> – </span>
|
||
<span v-if="abAuthor">{{ abAuthor }}</span>
|
||
</h1>
|
||
</div>
|
||
|
||
<div class="absolute top-4 right-4 z-20">
|
||
<span v-if="hasSettings" class="material-icons cursor-pointer text-2xl" @click="openSettings">settings</span>
|
||
<span class="material-icons cursor-pointer text-2xl" @click="close">close</span>
|
||
</div>
|
||
|
||
<component v-if="componentName" ref="readerComponent" :is="componentName" :url="ebookUrl"
|
||
:library-item="selectedLibraryItem" />
|
||
|
||
<div ref="tocContainer" class="w-full h-full fixed inset-0 invisible ">
|
||
<div @click="toggleToC" ref="tocOverlay"
|
||
class="w-full h-full duration-500 ease-out transition-all inset-0 absolute bg-gray-900 opacity-0"></div>
|
||
<div @click="toggleToC" class="w-96 h-full absolute left-0" style="background: #232323">
|
||
<div style="padding: 10px;">
|
||
<ul>
|
||
<li v-for="chapter in chapters" :key="chapter.id">
|
||
<a :href="chapter.href" @click.prevent="$refs.readerComponent.goToChapter(chapter.href)">{{ chapter.label
|
||
}}</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
chapters: [],
|
||
tocOpen: false
|
||
}
|
||
},
|
||
watch: {
|
||
show(newVal) {
|
||
if (newVal) {
|
||
this.init()
|
||
}
|
||
}
|
||
},
|
||
computed: {
|
||
show: {
|
||
get() {
|
||
return this.$store.state.showEReader
|
||
},
|
||
set(val) {
|
||
this.$store.commit('setShowEReader', val)
|
||
}
|
||
},
|
||
componentName() {
|
||
if (this.ebookType === 'epub') return 'readers-epub-reader'
|
||
else if (this.ebookType === 'mobi') return 'readers-mobi-reader'
|
||
else if (this.ebookType === 'pdf') return 'readers-pdf-reader'
|
||
else if (this.ebookType === 'comic') return 'readers-comic-reader'
|
||
return null
|
||
},
|
||
hasToC() {
|
||
return this.isEpub
|
||
},
|
||
hasSettings() {
|
||
return false
|
||
},
|
||
abTitle() {
|
||
return this.mediaMetadata.title
|
||
},
|
||
abAuthor() {
|
||
return this.mediaMetadata.authorName
|
||
},
|
||
selectedLibraryItem() {
|
||
return this.$store.state.selectedLibraryItem || {}
|
||
},
|
||
media() {
|
||
return this.selectedLibraryItem.media || {}
|
||
},
|
||
mediaMetadata() {
|
||
return this.media.metadata || {}
|
||
},
|
||
libraryId() {
|
||
return this.selectedLibraryItem.libraryId
|
||
},
|
||
folderId() {
|
||
return this.selectedLibraryItem.folderId
|
||
},
|
||
ebookFile() {
|
||
return this.media.ebookFile
|
||
},
|
||
ebookFormat() {
|
||
if (!this.ebookFile) return null
|
||
return this.ebookFile.ebookFormat
|
||
},
|
||
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'
|
||
},
|
||
isPdf() {
|
||
return this.ebookFormat == 'pdf'
|
||
},
|
||
isComic() {
|
||
return this.ebookFormat == 'cbz' || this.ebookFormat == 'cbr'
|
||
},
|
||
ebookUrl() {
|
||
if (!this.ebookFile) return null
|
||
let filepath = ''
|
||
if (this.selectedLibraryItem.isFile) {
|
||
filepath = this.$encodeUriPath(this.ebookFile.metadata.filename)
|
||
} else {
|
||
const itemRelPath = this.selectedLibraryItem.relPath
|
||
if (itemRelPath.startsWith('/')) itemRelPath = itemRelPath.slice(1)
|
||
const relPath = this.ebookFile.metadata.relPath
|
||
if (relPath.startsWith('/')) relPath = relPath.slice(1)
|
||
|
||
filepath = this.$encodeUriPath(`${itemRelPath}/${relPath}`)
|
||
}
|
||
return `/ebook/${this.libraryId}/${this.folderId}/${filepath}`
|
||
},
|
||
userToken() {
|
||
return this.$store.getters['user/getToken']
|
||
}
|
||
},
|
||
methods: {
|
||
toggleToC() {
|
||
this.tocOpen = !this.tocOpen;
|
||
this.chapters = this.$refs.readerComponent.chapters;
|
||
this.$refs.tocContainer.classList.toggle('invisible')
|
||
this.$refs.tocOverlay.classList.toggle('opacity-0')
|
||
this.$refs.tocOverlay.classList.toggle('opacity-50')
|
||
},
|
||
openSettings() { },
|
||
hotkey(action) {
|
||
console.log('Reader hotkey', action)
|
||
if (!this.$refs.readerComponent) return
|
||
|
||
if (action === this.$hotkeys.EReader.NEXT_PAGE) {
|
||
if (this.$refs.readerComponent.next) this.$refs.readerComponent.next()
|
||
} else if (action === this.$hotkeys.EReader.PREV_PAGE) {
|
||
if (this.$refs.readerComponent.prev) this.$refs.readerComponent.prev()
|
||
} else if (action === this.$hotkeys.EReader.CLOSE) {
|
||
this.close()
|
||
}
|
||
},
|
||
registerListeners() {
|
||
this.$eventBus.$on('reader-hotkey', this.hotkey)
|
||
},
|
||
unregisterListeners() {
|
||
this.$eventBus.$off('reader-hotkey', this.hotkey)
|
||
},
|
||
init() {
|
||
this.registerListeners()
|
||
},
|
||
close() {
|
||
this.unregisterListeners()
|
||
this.show = false
|
||
}
|
||
},
|
||
mounted() {
|
||
if (this.show) this.init()
|
||
},
|
||
beforeDestroy() {
|
||
this.unregisterListeners()
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
/* @import url(@/assets/calibre/basic.css); */
|
||
.ebook-viewer {
|
||
height: calc(100% - 96px);
|
||
}
|
||
</style> |