190 lines
4.8 KiB
Vue
190 lines
4.8 KiB
Vue
<template>
|
|
<div id="previewer">
|
|
<div class="bar">
|
|
<button
|
|
id="close"
|
|
class="action"
|
|
:title="$t('files.closePreview')"
|
|
:aria-label="$t('files.closePreview')"
|
|
@click="back"
|
|
>
|
|
<i class="material-icons">close</i>
|
|
</button>
|
|
|
|
<rename-button v-if="user.perm.rename" />
|
|
<delete-button v-if="user.perm.delete" />
|
|
<download-button v-if="user.perm.download" />
|
|
<info-button />
|
|
</div>
|
|
|
|
<button
|
|
v-show="hasPrevious"
|
|
class="action"
|
|
:aria-label="$t('buttons.previous')"
|
|
:title="$t('buttons.previous')"
|
|
@click="prev"
|
|
>
|
|
<i class="material-icons">chevron_left</i>
|
|
</button>
|
|
<button
|
|
v-show="hasNext"
|
|
class="action"
|
|
:aria-label="$t('buttons.next')"
|
|
:title="$t('buttons.next')"
|
|
@click="next"
|
|
>
|
|
<i class="material-icons">chevron_right</i>
|
|
</button>
|
|
|
|
<div class="preview">
|
|
<ExtendedImage v-if="req.type == 'image'" :src="raw" />
|
|
<audio v-else-if="req.type == 'audio'" :src="raw" autoplay controls />
|
|
<video v-else-if="req.type == 'video'" :src="raw" autoplay controls>
|
|
<track
|
|
v-for="(sub, index) in subtitles"
|
|
:key="index"
|
|
kind="captions"
|
|
:src="sub"
|
|
:label="'Subtitle ' + index"
|
|
:default="index === 0"
|
|
>Sorry, your browser doesn't support embedded videos,
|
|
but don't worry, you can
|
|
<a :href="download">download it</a>
|
|
and watch it with your favorite video player!
|
|
</video>
|
|
<object v-else-if="req.extension == '.pdf'" class="pdf" :data="raw" />
|
|
<a v-else-if="req.type == 'blob'" :href="download">
|
|
<h2 class="message">
|
|
{{ $t('buttons.download') }}
|
|
<i class="material-icons">file_download</i>
|
|
</h2>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
import url from '@/utils/url'
|
|
import { baseURL } from '@/utils/constants'
|
|
import { files as api } from '@/api'
|
|
import InfoButton from '@/components/buttons/Info'
|
|
import DeleteButton from '@/components/buttons/Delete'
|
|
import RenameButton from '@/components/buttons/Rename'
|
|
import DownloadButton from '@/components/buttons/Download'
|
|
import ExtendedImage from './ExtendedImage'
|
|
|
|
const mediaTypes = ['image', 'video', 'audio', 'blob']
|
|
|
|
export default {
|
|
name: 'Preview',
|
|
components: {
|
|
InfoButton,
|
|
DeleteButton,
|
|
RenameButton,
|
|
DownloadButton,
|
|
ExtendedImage
|
|
},
|
|
data: function() {
|
|
return {
|
|
previousLink: '',
|
|
nextLink: '',
|
|
listing: null,
|
|
subtitles: []
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState(['req', 'user', 'oldReq', 'jwt']),
|
|
hasPrevious() {
|
|
return this.previousLink !== ''
|
|
},
|
|
hasNext() {
|
|
return this.nextLink !== ''
|
|
},
|
|
download() {
|
|
return `${baseURL}/api/raw${this.req.path}?auth=${this.jwt}`
|
|
},
|
|
thumbnail() {
|
|
if (this.req.type === 'image') {
|
|
return `${baseURL}/api/thumbnail${this.req.path}?auth=${this.jwt}`
|
|
} else {
|
|
return `${baseURL}/api/raw${this.req.path}?auth=${this.jwt}`
|
|
}
|
|
},
|
|
raw() {
|
|
return `${this.thumbnail}&inline=true`
|
|
}
|
|
},
|
|
async mounted() {
|
|
window.addEventListener('keyup', this.key)
|
|
|
|
if (this.req.subtitles) {
|
|
this.subtitles = this.req.subtitles.map(
|
|
sub => `${baseURL}/api/raw${sub}?auth=${this.jwt}&inline=true`
|
|
)
|
|
}
|
|
|
|
try {
|
|
if (this.oldReq.items) {
|
|
this.updateLinks(this.oldReq.items)
|
|
} else {
|
|
const path = url.removeLastDir(this.$route.path)
|
|
const res = await api.fetch(path)
|
|
this.updateLinks(res.items)
|
|
}
|
|
} catch (e) {
|
|
this.$showError(e)
|
|
}
|
|
},
|
|
beforeDestroy() {
|
|
window.removeEventListener('keyup', this.key)
|
|
},
|
|
methods: {
|
|
back() {
|
|
const uri = url.removeLastDir(this.$route.path) + '/'
|
|
this.$router.push({ path: uri })
|
|
},
|
|
prev() {
|
|
this.$router.push({ path: this.previousLink })
|
|
},
|
|
next() {
|
|
this.$router.push({ path: this.nextLink })
|
|
},
|
|
key(event) {
|
|
event.preventDefault()
|
|
|
|
if (event.which === 13 || event.which === 39) {
|
|
// right arrow
|
|
if (this.hasNext) this.next()
|
|
} else if (event.which === 37) {
|
|
// left arrow
|
|
if (this.hasPrevious) this.prev()
|
|
}
|
|
},
|
|
updateLinks(items) {
|
|
for (let i = 0; i < items.length; i++) {
|
|
if (items[i].name !== this.req.name) {
|
|
continue
|
|
}
|
|
|
|
for (let j = i - 1; j >= 0; j--) {
|
|
if (mediaTypes.includes(items[j].type)) {
|
|
this.previousLink = items[j].url
|
|
break
|
|
}
|
|
}
|
|
|
|
for (let j = i + 1; j < items.length; j++) {
|
|
if (mediaTypes.includes(items[j].type)) {
|
|
this.nextLink = items[j].url
|
|
break
|
|
}
|
|
}
|
|
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|