mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-08 00:54:33 +01:00
144 lines
4.5 KiB
Vue
144 lines
4.5 KiB
Vue
<template>
|
|
<modals-modal v-model="show" name="bookmarks" :width="500" :height="'unset'">
|
|
<template #outer>
|
|
<div class="absolute top-0 left-0 p-5 w-2/3 overflow-hidden">
|
|
<p class="text-3xl text-white truncate">{{ $strings.LabelYourBookmarks }}</p>
|
|
</div>
|
|
</template>
|
|
<div ref="container" class="w-full rounded-lg bg-bg box-shadow-md overflow-y-auto overflow-x-hidden" style="max-height: 80vh">
|
|
<div v-if="show" class="w-full h-full">
|
|
<template v-for="bookmark in bookmarks">
|
|
<modals-bookmarks-bookmark-item :key="bookmark.id" :highlight="currentTime === bookmark.time" :bookmark="bookmark" @click="clickBookmark" @update="submitUpdateBookmark" @delete="deleteBookmark" />
|
|
</template>
|
|
<div v-if="!bookmarks.length" class="flex h-32 items-center justify-center">
|
|
<p class="text-xl">{{ $strings.MessageNoBookmarks }}</p>
|
|
</div>
|
|
<div v-if="!hideCreate" class="w-full h-px bg-white bg-opacity-10" />
|
|
<form v-if="!hideCreate" @submit.prevent="submitCreateBookmark">
|
|
<div v-show="canCreateBookmark" class="flex px-4 py-2 items-center text-center border-b border-white border-opacity-10 text-white text-opacity-80">
|
|
<div class="w-16 max-w-16 text-center">
|
|
<p class="text-sm font-mono text-gray-400">
|
|
{{ this.$secondsToTimestamp(currentTime) }}
|
|
</p>
|
|
</div>
|
|
<div class="flex-grow px-2">
|
|
<ui-text-input v-model="newBookmarkTitle" placeholder="Note" class="w-full" />
|
|
</div>
|
|
<ui-btn type="submit" color="success" :padding-x="4" class="h-10"><span class="material-icons text-2xl -mt-px">add</span></ui-btn>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</modals-modal>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
value: Boolean,
|
|
bookmarks: {
|
|
type: Array,
|
|
default: () => []
|
|
},
|
|
currentTime: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
libraryItemId: String,
|
|
hideCreate: Boolean
|
|
},
|
|
data() {
|
|
return {
|
|
selectedBookmark: null,
|
|
showBookmarkTitleInput: false,
|
|
newBookmarkTitle: ''
|
|
}
|
|
},
|
|
watch: {
|
|
show(newVal) {
|
|
if (newVal) {
|
|
this.showBookmarkTitleInput = false
|
|
this.newBookmarkTitle = ''
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
show: {
|
|
get() {
|
|
return this.value
|
|
},
|
|
set(val) {
|
|
this.$emit('input', val)
|
|
}
|
|
},
|
|
canCreateBookmark() {
|
|
return !this.bookmarks.find((bm) => bm.time === this.currentTime)
|
|
},
|
|
dateFormat() {
|
|
return this.$store.state.serverSettings.dateFormat
|
|
},
|
|
timeFormat() {
|
|
return this.$store.state.serverSettings.timeFormat
|
|
}
|
|
},
|
|
methods: {
|
|
editBookmark(bm) {
|
|
this.selectedBookmark = bm
|
|
this.newBookmarkTitle = bm.title
|
|
this.showBookmarkTitleInput = true
|
|
},
|
|
deleteBookmark(bm) {
|
|
this.$axios
|
|
.$delete(`/api/me/item/${this.libraryItemId}/bookmark/${bm.time}`)
|
|
.then(() => {
|
|
this.$toast.success(this.$strings.ToastBookmarkRemoveSuccess)
|
|
})
|
|
.catch((error) => {
|
|
this.$toast.error(this.$strings.ToastBookmarkRemoveFailed)
|
|
console.error(error)
|
|
})
|
|
this.show = false
|
|
},
|
|
clickBookmark(bm) {
|
|
this.$emit('select', bm)
|
|
},
|
|
submitUpdateBookmark(updatedBookmark) {
|
|
var bookmark = { ...updatedBookmark }
|
|
this.$axios
|
|
.$patch(`/api/me/item/${this.libraryItemId}/bookmark`, bookmark)
|
|
.then(() => {
|
|
this.$toast.success(this.$strings.ToastBookmarkUpdateSuccess)
|
|
})
|
|
.catch((error) => {
|
|
this.$toast.error(this.$strings.ToastBookmarkUpdateFailed)
|
|
console.error(error)
|
|
})
|
|
this.show = false
|
|
},
|
|
submitCreateBookmark() {
|
|
if (!this.newBookmarkTitle) {
|
|
this.newBookmarkTitle = this.$formatDatetime(Date.now(), this.dateFormat, this.timeFormat)
|
|
}
|
|
var bookmark = {
|
|
title: this.newBookmarkTitle,
|
|
time: Math.floor(this.currentTime)
|
|
}
|
|
this.$axios
|
|
.$post(`/api/me/item/${this.libraryItemId}/bookmark`, bookmark)
|
|
.then(() => {
|
|
this.$toast.success(this.$strings.ToastBookmarkCreateSuccess)
|
|
})
|
|
.catch((error) => {
|
|
this.$toast.error(this.$strings.ToastBookmarkCreateFailed)
|
|
console.error(error)
|
|
})
|
|
|
|
this.newBookmarkTitle = ''
|
|
this.showBookmarkTitleInput = false
|
|
|
|
this.show = false
|
|
}
|
|
}
|
|
}
|
|
</script>
|