mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
64 lines
1.4 KiB
Vue
64 lines
1.4 KiB
Vue
<template>
|
|
<div v-if="isFullPreview" class="file-preview z-40" ref="filePreview" tabindex="-1" @keydown.esc="closeFilePreview" @keydown.right="next" @keydown.left="prev">
|
|
<FilePreviewToolbar />
|
|
<FilePreviewMedia />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import FilePreviewToolbar from './FilePreviewToolbar'
|
|
import FilePreviewMedia from './FilePreviewMedia'
|
|
import { events } from '../../bus'
|
|
|
|
export default {
|
|
name: 'FilePreview',
|
|
components: {
|
|
FilePreviewToolbar,
|
|
FilePreviewMedia,
|
|
},
|
|
data() {
|
|
return {
|
|
isFullPreview: false,
|
|
}
|
|
},
|
|
methods: {
|
|
closeFilePreview() {
|
|
this.isFullPreview = false
|
|
this.$store.commit('FAST_PREVIEW_CLEAR')
|
|
},
|
|
next() {
|
|
events.$emit('file-preview:next')
|
|
},
|
|
prev() {
|
|
events.$emit('file-preview:prev')
|
|
},
|
|
},
|
|
updated() {
|
|
if (this.isFullPreview) {
|
|
this.$refs.filePreview.focus()
|
|
}
|
|
},
|
|
mounted() {
|
|
events.$on('file-preview:show', () => (this.isFullPreview = true))
|
|
events.$on('file-preview:hide', () => this.closeFilePreview())
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../../../sass/vuefilemanager/variables';
|
|
|
|
.file-preview {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
background-color: white;
|
|
}
|
|
|
|
.dark {
|
|
.file-preview {
|
|
background-color: $dark_mode_background;
|
|
}
|
|
}
|
|
</style>
|