mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-30 15:45:14 +02:00
533 lines
No EOL
19 KiB
Vue
533 lines
No EOL
19 KiB
Vue
<template>
|
|
<div class="w-full h-full px-3 py-4 overflow-y-auto overflow-x-hidden relative bg-bg">
|
|
<div class="flex mb-2">
|
|
<div class="w-10 min-w-10">
|
|
<covers-preview-cover :src="coverUrl" :width="40" :book-cover-aspect-ratio="bookCoverAspectRatio" :show-resolution="false" class="md:hidden" />
|
|
</div>
|
|
<div class="flex-grow px-2">
|
|
<div class="-mt-0.5 mb-0.5">
|
|
<nuxt-link :to="`/item/${libraryItemId}`" class="text-sm text-gray-200 underline">{{ podcast.metadata.title }}</nuxt-link>
|
|
</div>
|
|
<p v-if="publishedAt" class="text-xs text-gray-300">{{ $dateDistanceFromNow(publishedAt) }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="text-lg font-semibold">
|
|
{{ title }}
|
|
</p>
|
|
|
|
<div v-if="episodeNumber || season || episodeType" class="flex py-2 items-center -mx-0.5">
|
|
<div v-if="episodeNumber" class="px-2 pt-px pb-0.5 mx-0.5 bg-primary bg-opacity-60 rounded-full text-xs font-light text-gray-200">Episode #{{ episodeNumber }}</div>
|
|
<div v-if="season" class="px-2 pt-px pb-0.5 mx-0.5 bg-primary bg-opacity-60 rounded-full text-xs font-light text-gray-200">Season #{{ season }}</div>
|
|
<div v-if="episodeType" class="px-2 pt-px pb-0.5 mx-0.5 bg-primary bg-opacity-60 rounded-full text-xs font-light text-gray-200 capitalize">
|
|
{{ episodeType }}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- user progress card -->
|
|
<div v-if="progressPercent > 0" class="px-4 py-2 bg-primary text-sm font-semibold rounded-md text-gray-200 mt-4 relative" :class="resettingProgress ? 'opacity-25' : ''">
|
|
<p class="leading-6">Your Progress: {{ Math.round(progressPercent * 100) }}%</p>
|
|
<p v-if="progressPercent < 1" class="text-gray-400 text-xs">{{ $elapsedPretty(userTimeRemaining) }} remaining</p>
|
|
<p v-else class="text-gray-400 text-xs">Finished {{ $formatDate(userProgressFinishedAt) }}</p>
|
|
</div>
|
|
|
|
<!-- action buttons -->
|
|
<div class="flex mt-4 -mx-1">
|
|
<ui-btn color="success" class="flex items-center justify-center flex-grow mx-1" :padding-x="4" @click="playClick">
|
|
<span class="material-icons">{{ playerIsPlaying ? 'pause' : 'play_arrow' }}</span>
|
|
<span class="px-1 text-sm">{{ playerIsPlaying ? 'Pause' : localEpisodeId ? 'Play' : 'Stream' }}</span>
|
|
</ui-btn>
|
|
<ui-btn v-if="showDownload" :color="downloadItem ? 'warning' : 'primary'" class="flex items-center justify-center mx-1" :padding-x="2" @click="downloadClick">
|
|
<span class="material-icons" :class="downloadItem ? 'animate-pulse' : ''">{{ downloadItem ? 'downloading' : 'download' }}</span>
|
|
</ui-btn>
|
|
<ui-btn color="primary" class="flex items-center justify-center mx-1" :padding-x="2" @click="showMoreMenu = true">
|
|
<span class="material-icons">more_vert</span>
|
|
</ui-btn>
|
|
</div>
|
|
|
|
<p class="text-sm text-gray-200 mt-1.5 mb-0.5 default-style" v-html="description" />
|
|
|
|
<!-- loading overlay -->
|
|
<div v-if="processing" class="absolute top-0 left-0 w-full h-full bg-black bg-opacity-30 flex items-center justify-center">
|
|
<widgets-loading-spinner size="la-lg" />
|
|
</div>
|
|
|
|
<modals-dialog v-model="showMoreMenu" :items="moreMenuItems" @action="moreMenuAction" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Capacitor } from '@capacitor/core'
|
|
import { Dialog } from '@capacitor/dialog'
|
|
import { AbsFileSystem, AbsDownloader } from '@/plugins/capacitor'
|
|
|
|
export default {
|
|
async asyncData({ store, params, redirect, app }) {
|
|
const libraryItemId = params.id
|
|
const episodeId = params.episode
|
|
|
|
let libraryItem = null
|
|
let episode = null
|
|
let localEpisode = null
|
|
|
|
if (libraryItemId.startsWith('local')) {
|
|
libraryItem = await app.$db.getLocalLibraryItem(libraryItemId)
|
|
console.log('Got lli', libraryItemId)
|
|
} else if (store.state.user.serverConnectionConfig) {
|
|
libraryItem = await app.$axios.$get(`/api/items/${libraryItemId}?expanded=1`).catch((error) => {
|
|
console.error('Failed', error)
|
|
return false
|
|
})
|
|
|
|
if (libraryItem) {
|
|
const localLibraryItem = await app.$db.getLocalLibraryItemByLId(libraryItemId)
|
|
if (localLibraryItem) {
|
|
console.log('Library item has local library item also', localLibraryItem.id)
|
|
libraryItem.localLibraryItem = localLibraryItem
|
|
|
|
localEpisode = localLibraryItem.media.episodes.find((ep) => ep.serverEpisodeId === episodeId)
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!libraryItem) {
|
|
console.error('No item...', params.id)
|
|
return redirect('/')
|
|
}
|
|
|
|
episode = libraryItem.media.episodes.find((ep) => ep.id === episodeId)
|
|
if (localEpisode) {
|
|
// For server episodes that have a matching local episode
|
|
episode.localEpisode = localEpisode
|
|
}
|
|
|
|
if (!episode) {
|
|
console.error('No episode...', params.episode)
|
|
return redirect(`/item/${libraryItemId}`)
|
|
}
|
|
|
|
return {
|
|
libraryItem,
|
|
episode
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
showMoreMenu: false,
|
|
processing: false,
|
|
resettingProgress: false
|
|
}
|
|
},
|
|
computed: {
|
|
bookCoverAspectRatio() {
|
|
return this.$store.getters['libraries/getBookCoverAspectRatio']
|
|
},
|
|
isAdminOrUp() {
|
|
return this.$store.getters['user/getIsAdminOrUp']
|
|
},
|
|
isIos() {
|
|
return this.$platform === 'ios'
|
|
},
|
|
mediaType() {
|
|
return 'podcast'
|
|
},
|
|
userCanDownload() {
|
|
return this.$store.getters['user/getUserCanDownload']
|
|
},
|
|
isLocal() {
|
|
return this.libraryItem.isLocal
|
|
},
|
|
localLibraryItem() {
|
|
if (this.isLocal) return this.libraryItem
|
|
return this.libraryItem.localLibraryItem
|
|
},
|
|
libraryItemId() {
|
|
return this.libraryItem.id
|
|
},
|
|
isConnectedToServer() {
|
|
if (!this.isLocal) return true
|
|
if (!this.libraryItem.serverAddress) return false
|
|
return this.$store.getters['user/getServerAddress'] === this.libraryItem.serverAddress
|
|
},
|
|
serverLibraryItemId() {
|
|
if (!this.isLocal) return this.libraryItemId
|
|
// Check if local library item is connected to the current server
|
|
if (!this.libraryItem.libraryItemId) return null
|
|
if (this.isConnectedToServer) {
|
|
return this.libraryItem.libraryItemId
|
|
}
|
|
return null
|
|
},
|
|
localLibraryItemId() {
|
|
return this.localLibraryItem?.id || null
|
|
},
|
|
localEpisode() {
|
|
if (this.isLocal) return this.episode
|
|
return this.episode.localEpisode
|
|
},
|
|
localEpisodeId() {
|
|
if (this.localEpisode) return this.localEpisode.id
|
|
return null
|
|
},
|
|
serverEpisodeId() {
|
|
if (!this.isLocal) return this.episode.id
|
|
if (this.isConnectedToServer) {
|
|
return this.episode.serverEpisodeId
|
|
}
|
|
return null
|
|
},
|
|
podcast() {
|
|
return this.libraryItem.media
|
|
},
|
|
audioFile() {
|
|
return this.episode.audioFile
|
|
},
|
|
title() {
|
|
return this.episode.title || ''
|
|
},
|
|
description() {
|
|
return this.episode.description || ''
|
|
},
|
|
episodeNumber() {
|
|
return this.episode.episode
|
|
},
|
|
season() {
|
|
return this.episode.season
|
|
},
|
|
episodeType() {
|
|
if (this.episode.episodeType === 'full') return null // only show Trailer/Bonus
|
|
return this.episode.episodeType
|
|
},
|
|
duration() {
|
|
return this.$secondsToTimestamp(this.episode.duration)
|
|
},
|
|
coverUrl() {
|
|
if (this.isLocal) {
|
|
if (!this.libraryItem.coverContentUrl) return '/book_placeholder.jpg'
|
|
return Capacitor.convertFileSrc(this.libraryItem.coverContentUrl)
|
|
}
|
|
return this.$store.getters['globals/getLibraryItemCoverSrcById'](this.libraryItemId)
|
|
},
|
|
isPlaying() {
|
|
if (this.playerIsLocal && this.localLibraryItemId && this.localEpisodeId) {
|
|
// Check is streaming local version of this episode
|
|
return this.$store.getters['getIsEpisodeStreaming'](this.localLibraryItemId, this.localEpisodeId)
|
|
}
|
|
return this.$store.getters['getIsEpisodeStreaming'](this.libraryItemId, this.episode.id)
|
|
},
|
|
playerIsLocal() {
|
|
return !!this.$store.state.playerIsLocal
|
|
},
|
|
playerIsPlaying() {
|
|
return this.$store.state.playerIsPlaying && this.isPlaying
|
|
},
|
|
userItemProgress() {
|
|
if (this.isLocal) return this.localItemProgress
|
|
return this.serverItemProgress
|
|
},
|
|
localItemProgress() {
|
|
if (!this.localLibraryItemId || !this.localEpisodeId) return null
|
|
return this.$store.getters['globals/getLocalMediaProgressById'](this.localLibraryItemId, this.localEpisodeId)
|
|
},
|
|
serverItemProgress() {
|
|
if (!this.serverLibraryItemId || !this.serverEpisodeId) return null
|
|
return this.$store.getters['user/getUserMediaProgress'](this.serverLibraryItemId, this.serverEpisodeId)
|
|
},
|
|
progressPercent() {
|
|
return this.userItemProgress ? this.userItemProgress.progress : 0
|
|
},
|
|
userIsFinished() {
|
|
return this.userItemProgress ? !!this.userItemProgress.isFinished : false
|
|
},
|
|
userProgressFinishedAt() {
|
|
return this.userItemProgress ? this.userItemProgress.finishedAt : 0
|
|
},
|
|
userTimeRemaining() {
|
|
if (!this.userItemProgress) return 0
|
|
const duration = this.userItemProgress.duration || this.episode.duration
|
|
return duration - this.userItemProgress.currentTime
|
|
},
|
|
timeRemaining() {
|
|
if (this.playerIsPlaying) return 'Playing'
|
|
if (!this.progressPercent) return this.$elapsedPretty(this.episode.duration)
|
|
if (this.userIsFinished) return 'Finished'
|
|
const remaining = Math.floor(this.userItemProgress.duration - this.userItemProgress.currentTime)
|
|
return `${this.$elapsedPretty(remaining)} left`
|
|
},
|
|
publishedAt() {
|
|
return this.episode.publishedAt
|
|
},
|
|
downloadItem() {
|
|
return this.$store.getters['globals/getDownloadItem'](this.libraryItemId, this.episode.id)
|
|
},
|
|
showDownload() {
|
|
return this.userCanDownload && !this.localEpisode
|
|
},
|
|
moreMenuItems() {
|
|
const items = []
|
|
|
|
if (!this.userIsFinished) {
|
|
items.push({
|
|
text: 'Mark as Finished',
|
|
value: 'markFinished',
|
|
icon: 'beenhere'
|
|
})
|
|
}
|
|
|
|
if (this.progressPercent > 0) {
|
|
items.push({
|
|
text: 'Discard Progress',
|
|
value: 'discardProgress',
|
|
icon: 'backspace'
|
|
})
|
|
}
|
|
|
|
if (!this.isLocal) {
|
|
items.push({
|
|
text: 'Add to Playlist',
|
|
value: 'playlist',
|
|
icon: 'playlist_add'
|
|
})
|
|
|
|
if (this.isAdminOrUp) {
|
|
items.push({
|
|
text: 'Remove from Server',
|
|
value: 'remove_from_server',
|
|
icon: 'delete_forever'
|
|
})
|
|
}
|
|
}
|
|
|
|
return items
|
|
}
|
|
},
|
|
methods: {
|
|
async playClick() {
|
|
await this.$hapticsImpact()
|
|
if (this.playerIsPlaying) {
|
|
this.$eventBus.$emit('pause-item')
|
|
} else {
|
|
if (this.localEpisodeId && this.localLibraryItemId && !this.isLocal) {
|
|
console.log('Play local episode', this.localEpisodeId, this.localLibraryItemId)
|
|
|
|
this.$eventBus.$emit('play-item', {
|
|
libraryItemId: this.localLibraryItemId,
|
|
episodeId: this.localEpisodeId,
|
|
serverLibraryItemId: this.serverLibraryItemId,
|
|
serverEpisodeId: this.serverEpisodeId
|
|
})
|
|
} else {
|
|
this.$eventBus.$emit('play-item', {
|
|
libraryItemId: this.libraryItemId,
|
|
episodeId: this.episode.id,
|
|
serverLibraryItemId: this.serverLibraryItemId,
|
|
serverEpisodeId: this.serverEpisodeId
|
|
})
|
|
}
|
|
}
|
|
},
|
|
async downloadClick() {
|
|
if (this.downloadItem) return
|
|
await this.$hapticsImpact()
|
|
if (this.isIos) {
|
|
// no local folders on iOS
|
|
this.startDownload()
|
|
} else {
|
|
this.download()
|
|
}
|
|
},
|
|
async download(selectedLocalFolder = null) {
|
|
let localFolder = selectedLocalFolder
|
|
if (!localFolder) {
|
|
const localFolders = (await this.$db.getLocalFolders()) || []
|
|
console.log('Local folders loaded', localFolders.length)
|
|
const foldersWithMediaType = localFolders.filter((lf) => {
|
|
console.log('Checking local folder', lf.mediaType)
|
|
return lf.mediaType == this.mediaType
|
|
})
|
|
console.log('Folders with media type', this.mediaType, foldersWithMediaType.length)
|
|
const internalStorageFolder = foldersWithMediaType.find((f) => f.id === `internal-${this.mediaType}`)
|
|
if (!foldersWithMediaType.length) {
|
|
localFolder = {
|
|
id: `internal-${this.mediaType}`,
|
|
name: 'Internal App Storage',
|
|
mediaType: this.mediaType
|
|
}
|
|
} else if (foldersWithMediaType.length === 1 && internalStorageFolder) {
|
|
localFolder = internalStorageFolder
|
|
} else {
|
|
this.$store.commit('globals/showSelectLocalFolderModal', {
|
|
mediaType: this.mediaType,
|
|
callback: (folder) => {
|
|
this.download(folder)
|
|
}
|
|
})
|
|
return
|
|
}
|
|
}
|
|
|
|
console.log('Local folder', JSON.stringify(localFolder))
|
|
|
|
const startDownloadMessage = `Start download for "${this.title}" to folder ${localFolder.name}?`
|
|
const { value } = await Dialog.confirm({
|
|
title: 'Confirm',
|
|
message: startDownloadMessage
|
|
})
|
|
if (value) {
|
|
this.startDownload(localFolder)
|
|
}
|
|
},
|
|
async selectFolder() {
|
|
const folderObj = await AbsFileSystem.selectFolder({ mediaType: this.mediaType })
|
|
if (folderObj.error) {
|
|
return this.$toast.error(`Error: ${folderObj.error || 'Unknown Error'}`)
|
|
}
|
|
return folderObj
|
|
},
|
|
async startDownload(localFolder) {
|
|
const payload = {
|
|
libraryItemId: this.libraryItemId,
|
|
episodeId: this.episode.id
|
|
}
|
|
if (localFolder) {
|
|
payload.localFolderId = localFolder.id
|
|
}
|
|
const downloadRes = await AbsDownloader.downloadLibraryItem(payload)
|
|
if (downloadRes && downloadRes.error) {
|
|
const errorMsg = downloadRes.error || 'Unknown error'
|
|
console.error('Download error', errorMsg)
|
|
this.$toast.error(errorMsg)
|
|
}
|
|
},
|
|
moreMenuAction(action) {
|
|
this.showMoreMenu = false
|
|
if (action === 'markFinished') {
|
|
this.toggleFinished()
|
|
} else if (action === 'discardProgress') {
|
|
this.discardProgress()
|
|
} else if (action === 'playlist' && !this.isLocal) {
|
|
this.$store.commit('globals/setSelectedPlaylistItems', [{ libraryItem: this.libraryItem, episode: this.episode }])
|
|
this.$store.commit('globals/setShowPlaylistsAddCreateModal', true)
|
|
} else if (action === 'remove_from_server' && !this.isLocal && this.isAdminOrUp) {
|
|
this.deleteEpisodeFromServerClick()
|
|
}
|
|
},
|
|
async discardProgress() {
|
|
await this.$hapticsImpact()
|
|
|
|
const { value } = await Dialog.confirm({
|
|
title: 'Confirm',
|
|
message: 'Are you sure you want to reset your progress?'
|
|
})
|
|
if (value) {
|
|
this.resettingProgress = true
|
|
|
|
const serverItemProgressId = this.serverItemProgress?.id
|
|
if (this.localItemProgress) {
|
|
await this.$db.removeLocalMediaProgress(this.localItemProgress.id)
|
|
this.$store.commit('globals/removeLocalMediaProgress', this.localItemProgress.id)
|
|
}
|
|
|
|
if (serverItemProgressId) {
|
|
await this.$axios
|
|
.$delete(`/api/me/progress/${serverItemProgressId}`)
|
|
.then(() => {
|
|
console.log('Progress reset complete')
|
|
this.$toast.success(`Your progress was reset`)
|
|
this.$store.commit('user/removeMediaProgress', serverItemProgressId)
|
|
})
|
|
.catch((error) => {
|
|
console.error('Progress reset failed', error)
|
|
})
|
|
}
|
|
|
|
this.resettingProgress = false
|
|
}
|
|
},
|
|
async toggleFinished() {
|
|
await this.$hapticsImpact()
|
|
|
|
if (this.isLocal || this.localEpisode) {
|
|
const isFinished = !this.userIsFinished
|
|
const localLibraryItemId = this.localLibraryItemId
|
|
const localEpisodeId = this.localEpisodeId
|
|
const payload = await this.$db.updateLocalMediaProgressFinished({ localLibraryItemId, localEpisodeId, isFinished })
|
|
console.log('toggleFinished payload', JSON.stringify(payload))
|
|
|
|
if (!payload || payload.error) {
|
|
var errorMsg = payload ? payload.error : 'Unknown error'
|
|
this.$toast.error(errorMsg)
|
|
} else {
|
|
const localMediaProgress = payload.localMediaProgress
|
|
console.log('toggleFinished localMediaProgress', JSON.stringify(localMediaProgress))
|
|
if (localMediaProgress) {
|
|
this.$store.commit('globals/updateLocalMediaProgress', localMediaProgress)
|
|
}
|
|
|
|
if (payload.server) {
|
|
this.$toast.success(`Local & Server Item marked as ${isFinished ? 'Finished' : 'Not Finished'}`)
|
|
} else {
|
|
this.$toast.success(`Local Item marked as ${isFinished ? 'Finished' : 'Not Finished'}`)
|
|
}
|
|
}
|
|
} else {
|
|
const updatePayload = {
|
|
isFinished: !this.userIsFinished
|
|
}
|
|
this.$axios
|
|
.$patch(`/api/me/progress/${this.libraryItemId}/${this.episode.id}`, updatePayload)
|
|
.then(() => {
|
|
this.$toast.success(`Item marked as ${updatePayload.isFinished ? 'Finished' : 'Not Finished'}`)
|
|
})
|
|
.catch((error) => {
|
|
console.error('Failed', error)
|
|
this.$toast.error(`Failed to mark as ${updatePayload.isFinished ? 'Finished' : 'Not Finished'}`)
|
|
})
|
|
}
|
|
},
|
|
async deleteEpisodeFromServerClick() {
|
|
await this.$hapticsImpact()
|
|
|
|
const { value } = await Dialog.confirm({
|
|
title: 'Confirm',
|
|
message: `Are you sure you want to delete episode "${this.title}" from the server?\nWarning: This will delete the audio file.`
|
|
})
|
|
|
|
if (value) {
|
|
this.processing = true
|
|
this.$axios
|
|
.$delete(`/api/podcasts/${this.libraryItemId}/episode/${this.episode.id}?hard=1`)
|
|
.then(() => {
|
|
this.$toast.success('Episode deleted from server')
|
|
this.$router.replace(`/item/${this.libraryItemId}`)
|
|
})
|
|
.catch((error) => {
|
|
const errorMsg = error.response && error.response.data ? error.response.data : 'Failed to delete episode'
|
|
console.error('Failed to delete episode', error)
|
|
this.$toast.error(errorMsg)
|
|
})
|
|
.finally(() => {
|
|
this.processing = false
|
|
})
|
|
}
|
|
},
|
|
newLocalLibraryItem(item) {
|
|
if (item.libraryItemId == this.libraryItemId) {
|
|
console.log('New local library item', item.id)
|
|
this.$set(this.libraryItem, 'localLibraryItem', item)
|
|
|
|
const episode = item.media.episodes.find((ep) => ep.serverEpisodeId === this.episode.id)
|
|
if (episode) {
|
|
this.$set(this.episode, 'localEpisode', episode)
|
|
}
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$eventBus.$on('new-local-library-item', this.newLocalLibraryItem)
|
|
},
|
|
beforeDestroy() {
|
|
this.$eventBus.$off('new-local-library-item', this.newLocalLibraryItem)
|
|
}
|
|
}
|
|
</script> |