mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
93 lines
2.0 KiB
Vue
93 lines
2.0 KiB
Vue
<template>
|
|
<div
|
|
class="file-full-preview-wrapper"
|
|
v-if="showFullPreview"
|
|
id="fileFullPreview"
|
|
ref="filePreview"
|
|
tabindex="-1"
|
|
@keydown.esc="(showFullPreview = false), hideMenu()"
|
|
@keydown.right="next"
|
|
@keydown.left="prev"
|
|
>
|
|
<FilePreviewNavigationPanel />
|
|
<MediaFullPreview v-if="isMedia" />
|
|
<FilePreviewActions />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { events } from "@/bus";
|
|
import { mapGetters } from "vuex";
|
|
|
|
import MediaFullPreview from "@/components/FilesView/MediaFullPreview";
|
|
import FilePreviewActions from "@/components/FilesView/FilePreviewActions";
|
|
import FilePreviewNavigationPanel from "@/components/FilesView/FilePreviewNavigationPanel";
|
|
|
|
export default {
|
|
components: {
|
|
MediaFullPreview,
|
|
FilePreviewNavigationPanel,
|
|
FilePreviewActions,
|
|
},
|
|
data() {
|
|
return {
|
|
showFullPreview: false,
|
|
};
|
|
},
|
|
methods: {
|
|
next: function () {
|
|
events.$emit("filePreviewAction:next");
|
|
},
|
|
prev: function () {
|
|
events.$emit("filePreviewAction:prev");
|
|
},
|
|
hideMenu() {
|
|
events.$emit("showContextMenuPreview:show");
|
|
},
|
|
},
|
|
|
|
updated() {
|
|
if (this.showFullPreview) {
|
|
this.$refs.filePreview.focus();
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters(["fileInfoDetail"]),
|
|
isMedia() {
|
|
return this.fileInfoDetail === "image" || "video" || "audio";
|
|
},
|
|
},
|
|
|
|
mounted() {
|
|
if (this.showFullPreview) {
|
|
let preview = document.getElementById("file-wrapper-preview");
|
|
preview.addEventListener("click", this.hideMenu);
|
|
}
|
|
events.$on("fileFullPreview:show", () => {
|
|
this.showFullPreview = true;
|
|
});
|
|
events.$on("fileFullPreview:hide", () => {
|
|
this.showFullPreview = false;
|
|
});
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "@assets/vue-file-manager/_variables";
|
|
|
|
.file-full-preview-wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
z-index: 7;
|
|
background-color: $light-background;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.file-full-preview-wrapper {
|
|
background-color: $dark_mode_background;
|
|
}
|
|
}
|
|
</style>
|