mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
682 lines
24 KiB
Vue
682 lines
24 KiB
Vue
<template>
|
|
<div :style="{ top: positionY + 'px', left: positionX + 'px' }" @click="closeAndResetContextMenu" class="contextmenu" v-show="isVisible || showFromPreview" ref="contextmenu" :class="{ 'filePreviewFixed' : showFromPreview}">
|
|
<!-- ContextMenu for File Preview -->
|
|
<div class="menu-options" id="menu-list" v-if="showFromPreview">
|
|
<ul class="menu-option-group">
|
|
<li class="menu-option" @click="moveItem">
|
|
<div class="icon">
|
|
<corner-down-right-icon size="17"></corner-down-right-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.move') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="shareItem" v-if="$checkPermission('master')">
|
|
<div class="icon">
|
|
<link-icon size="17"></link-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{
|
|
item.shared
|
|
? $t('context_menu.share_edit')
|
|
: $t('context_menu.share')
|
|
}}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="deleteItem">
|
|
<div class="icon">
|
|
<trash-2-icon size="17"></trash-2-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.delete') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu-option-group">
|
|
<li class="menu-option" @click="downloadItem" v-if="!isFolder">
|
|
<div class="icon">
|
|
<download-cloud-icon size="17"></download-cloud-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.download') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!--ContextMenu for trash location-->
|
|
<div v-if="
|
|
$isThisLocation(['trash', 'trash-root']) && $checkPermission('master') && !showFromPreview
|
|
" id="menu-list" class="menu-options">
|
|
<ul class="menu-option-group">
|
|
<li class="menu-option" @click="$store.dispatch('restoreItem', item)" v-if="item && multiSelectContextMenu ">
|
|
<div class="icon">
|
|
<life-buoy-icon size="17"></life-buoy-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.restore') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="deleteItem" v-if="item">
|
|
<div class="icon">
|
|
<trash-2-icon size="17"></trash-2-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.delete') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="$store.dispatch('emptyTrash')">
|
|
<div class="icon">
|
|
<trash-icon size="17"></trash-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.empty_trash') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu-option-group" v-if="item && multiSelectContextMenu">
|
|
<li class="menu-option" @click="ItemDetail">
|
|
<div class="icon">
|
|
<eye-icon size="17"></eye-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.detail') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="downloadItem" v-if="!isFolder">
|
|
<div class="icon">
|
|
<download-cloud-icon size="17"></download-cloud-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.download') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!--ContextMenu for Base location with MASTER permission-->
|
|
<div v-if="$isThisLocation(['shared']) && $checkPermission('master') && !showFromPreview" id="menu-list" class="menu-options">
|
|
<ul class="menu-option-group" v-if="item && isFolder && multiSelectContextMenu">
|
|
<li class="menu-option" @click="addToFavourites">
|
|
<div class="icon">
|
|
<star-icon size="17"></star-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{
|
|
isInFavourites
|
|
? $t('context_menu.remove_from_favourites')
|
|
: $t('context_menu.add_to_favourites')
|
|
}}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu-option-group" v-if="item">
|
|
<li class="menu-option" @click="renameItem">
|
|
<div class="icon">
|
|
<edit2-icon size="17"></edit2-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.rename') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="shareItem" v-if="multiSelectContextMenu">
|
|
<div class="icon">
|
|
<link-icon size="17"></link-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{
|
|
item.shared
|
|
? $t('context_menu.share_edit')
|
|
: $t('context_menu.share')
|
|
}}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="deleteItem">
|
|
<div class="icon">
|
|
<trash-2-icon size="17"></trash-2-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.delete') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu-option-group" v-if="item && multiSelectContextMenu">
|
|
<li class="menu-option" @click="ItemDetail" v-if="item">
|
|
<div class="icon">
|
|
<eye-icon size="17"></eye-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.detail') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="downloadItem" v-if="!isFolder">
|
|
<div class="icon">
|
|
<download-cloud-icon size="17"></download-cloud-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.download') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!--ContextMenu for Base location with MASTER permission-->
|
|
<div v-if="
|
|
$isThisLocation(['base', 'participant_uploads', 'latest']) &&
|
|
$checkPermission('master') && !showFromPreview
|
|
" id="menu-list" class="menu-options">
|
|
<ul class="menu-option-group" v-if="!$isThisLocation(['participant_uploads', 'latest'])">
|
|
<li class="menu-option" @click="addToFavourites" v-if="item && isFolder && multiSelectContextMenu ">
|
|
<div class="icon">
|
|
<star-icon size="17"></star-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{
|
|
isInFavourites
|
|
? $t('context_menu.remove_from_favourites')
|
|
: $t('context_menu.add_to_favourites')
|
|
}}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="createFolder">
|
|
<div class="icon">
|
|
<folder-plus-icon size="17"></folder-plus-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.create_folder') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu-option-group" v-if="item">
|
|
<li class="menu-option" @click="renameItem">
|
|
<div class="icon">
|
|
<edit2-icon size="17"></edit2-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.rename') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="moveItem">
|
|
<div class="icon">
|
|
<corner-down-right-icon size="17"></corner-down-right-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.move') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="shareItem" v-if="multiSelectContextMenu">
|
|
<div class="icon">
|
|
<link-icon size="17"></link-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{
|
|
item.shared
|
|
? $t('context_menu.share_edit')
|
|
: $t('context_menu.share')
|
|
}}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="deleteItem">
|
|
<div class="icon">
|
|
<trash-2-icon size="17"></trash-2-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.delete') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu-option-group" v-if="item && multiSelectContextMenu">
|
|
<li class="menu-option" @click="ItemDetail">
|
|
<div class="icon">
|
|
<eye-icon size="17"></eye-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.detail') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="downloadItem" v-if="!isFolder">
|
|
<div class="icon">
|
|
<download-cloud-icon size="17"></download-cloud-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.download') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!--ContextMenu for Base location with EDITOR permission-->
|
|
<div v-if="$isThisLocation(['base', 'public']) && $checkPermission('editor') && !showFromPreview " id="menu-list" class="menu-options">
|
|
<ul class="menu-option-group">
|
|
<li class="menu-option" @click="createFolder">
|
|
<div class="icon">
|
|
<folder-plus-icon size="17"></folder-plus-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.create_folder') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu-option-group" v-if="item">
|
|
<li class="menu-option" @click="renameItem">
|
|
<div class="icon">
|
|
<edit2-icon size="17"></edit2-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.rename') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="moveItem">
|
|
<div class="icon">
|
|
<corner-down-right-icon size="17"></corner-down-right-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.move') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="deleteItem">
|
|
<div class="icon">
|
|
<trash-2-icon size="17"></trash-2-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.delete') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="menu-option-group" v-if="item && multiSelectContextMenu ">
|
|
<li class="menu-option" @click="ItemDetail">
|
|
<div class="icon">
|
|
<eye-icon size="17"></eye-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.detail') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="downloadItem" v-if="!isFolder">
|
|
<div class="icon">
|
|
<download-cloud-icon size="17"></download-cloud-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.download') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!--ContextMenu for Base location with VISITOR permission-->
|
|
<div v-if="
|
|
$isThisLocation(['base', 'public']) && $checkPermission('visitor') && !showFromPreview
|
|
" id="menu-list" class="menu-options">
|
|
<ul class="menu-option-group" v-if="item && multiSelectContextMenu">
|
|
<li class="menu-option" @click="ItemDetail">
|
|
<div class="icon">
|
|
<eye-icon size="17"></eye-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.detail') }}
|
|
</div>
|
|
</li>
|
|
<li class="menu-option" @click="downloadItem" v-if="!isFolder">
|
|
<div class="icon">
|
|
<download-cloud-icon size="17"></download-cloud-icon>
|
|
</div>
|
|
<div class="text-label">
|
|
{{ $t('context_menu.download') }}
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
CornerDownRightIcon,
|
|
DownloadCloudIcon,
|
|
FolderPlusIcon,
|
|
LifeBuoyIcon,
|
|
Trash2Icon,
|
|
Edit2Icon,
|
|
TrashIcon,
|
|
StarIcon,
|
|
LinkIcon,
|
|
EyeIcon
|
|
} from 'vue-feather-icons'
|
|
import { mapGetters } from 'vuex'
|
|
import { events } from '@/bus'
|
|
|
|
export default {
|
|
name: 'ContextMenu',
|
|
components: {
|
|
CornerDownRightIcon,
|
|
DownloadCloudIcon,
|
|
FolderPlusIcon,
|
|
LifeBuoyIcon,
|
|
Trash2Icon,
|
|
Edit2Icon,
|
|
TrashIcon,
|
|
LinkIcon,
|
|
StarIcon,
|
|
EyeIcon,
|
|
},
|
|
computed: {
|
|
...mapGetters(['user', 'fileInfoDetail']),
|
|
multiSelectContextMenu() {
|
|
|
|
// If is context Menu open on multi selected items open just options for the multi selected items
|
|
if(this.fileInfoDetail.length > 1 && this.fileInfoDetail.includes(this.item)) {
|
|
return false
|
|
}
|
|
// If is context Menu open for the non selected item open options for the single item
|
|
if(this.fileInfoDetail.length < 2 || !this.fileInfoDetail.includes(this.item)) {
|
|
return true
|
|
}
|
|
},
|
|
favourites() {
|
|
return this.user.relationships.favourites.data.attributes.folders
|
|
},
|
|
isFolder() {
|
|
return this.item && this.item.type === 'folder'
|
|
},
|
|
isFile() {
|
|
return (
|
|
this.item &&
|
|
this.item.type !== 'folder' &&
|
|
this.item &&
|
|
this.item.type !== 'image'
|
|
)
|
|
},
|
|
isImage() {
|
|
return this.item && this.item.type === 'image'
|
|
},
|
|
isInFavourites() {
|
|
return this.favourites.find((el) => el.unique_id == this.item.unique_id)
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
showFromPreview: false,
|
|
item: undefined,
|
|
isVisible: false,
|
|
positionX: 0,
|
|
positionY: 0
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
renameItem() {
|
|
events.$emit('popup:open', { name: 'rename-item', item: this.item })
|
|
},
|
|
moveItem() {
|
|
events.$emit('popup:open', { name: 'move', item: [this.item] })
|
|
},
|
|
shareItem() {
|
|
if (this.item.shared) {
|
|
// Open edit share popup
|
|
events.$emit('popup:open', { name: 'share-edit', item: this.item })
|
|
} else {
|
|
// Open create share popup
|
|
events.$emit('popup:open', { name: 'share-create', item: this.item })
|
|
}
|
|
},
|
|
addToFavourites() {
|
|
// Check if folder is in favourites and then add/remove from favourites
|
|
if (
|
|
this.favourites &&
|
|
!this.favourites.find((el) => el.unique_id == this.item.unique_id)
|
|
) {
|
|
//Add to favourite folder that is not selected
|
|
if(!this.fileInfoDetail.includes(this.item)){
|
|
this.$store.dispatch('addToFavourites', this.item)
|
|
}
|
|
|
|
//Add to favourites all selected folders
|
|
if(this.fileInfoDetail.includes(this.item)) {
|
|
this.$store.dispatch('addToFavourites', null)
|
|
}
|
|
} else {
|
|
this.$store.dispatch('removeFromFavourites', this.item)
|
|
}
|
|
},
|
|
downloadItem() {
|
|
// Download file
|
|
this.$downloadFile(this.item.file_url, this.item.name + '.' + this.item.mimetype)
|
|
},
|
|
ItemDetail() {
|
|
// Dispatch load file info detail
|
|
this.$store.commit('GET_FILEINFO_DETAIL', this.item)
|
|
|
|
// Show panel if is not open
|
|
this.$store.dispatch('fileInfoToggle', true)
|
|
},
|
|
deleteItem() {
|
|
// Dispatch remove item
|
|
// If is contet menu open on non selected item delete this single item
|
|
if(!this.fileInfoDetail.includes(this.item)){
|
|
this.$store.dispatch('deleteItem', this.item)
|
|
}
|
|
// If is context menu open to multi selected items dele this selected items
|
|
if(this.fileInfoDetail.includes(this.item)) {
|
|
this.$store.dispatch('deleteItem')
|
|
}
|
|
},
|
|
createFolder() {
|
|
// Create folder
|
|
this.$createFolder(this.$t('popup_create_folder.folder_default_name'))
|
|
},
|
|
closeAndResetContextMenu() {
|
|
// Close context menu
|
|
this.isVisible = false
|
|
|
|
// Reset item container
|
|
this.item = undefined
|
|
},
|
|
showFolderActionsMenu() {
|
|
let container = document.getElementById('folder-actions')
|
|
|
|
this.positionX = container.offsetLeft + 16
|
|
this.positionY = container.offsetTop + 30
|
|
|
|
// Show context menu
|
|
this.isVisible = true
|
|
},
|
|
showContextMenu(event) {
|
|
let parent = document.getElementById('menu-list')
|
|
let nodesSameClass = parent.getElementsByClassName('menu-option')
|
|
|
|
let VerticalOffsetArea = nodesSameClass.length * 50
|
|
let HorizontalOffsetArea = 190
|
|
|
|
let container = document.getElementById('files-view')
|
|
|
|
var offset = container.getClientRects()[0]
|
|
|
|
let x = event.clientX - offset.left
|
|
let y = event.clientY - offset.top
|
|
|
|
// Set position Y
|
|
if (container.offsetHeight - y < VerticalOffsetArea) {
|
|
this.positionY = y - VerticalOffsetArea
|
|
} else {
|
|
this.positionY = y
|
|
}
|
|
|
|
// Set position X
|
|
if (container.offsetWidth - x < HorizontalOffsetArea) {
|
|
this.positionX = x - HorizontalOffsetArea
|
|
} else {
|
|
this.positionX = x
|
|
}
|
|
|
|
// Show context menu
|
|
this.isVisible = true
|
|
},
|
|
showFilePreviewMenu() {
|
|
let container = document.getElementById('fast-preview-menu')
|
|
if (container) {
|
|
this.positionX = container.offsetLeft + 16
|
|
this.positionY = container.offsetTop + 51
|
|
}
|
|
}
|
|
|
|
},
|
|
watch: {
|
|
item(newValue, oldValue) {
|
|
if (oldValue != undefined && this.showFromPreview) {
|
|
this.showFromPreview = false
|
|
}
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
events.$on('actualShowingImage:ContextMenu', (item) => {
|
|
this.item = item
|
|
})
|
|
},
|
|
created() {
|
|
events.$on('showContextMenuPreview:show', (item) => {
|
|
if (!this.showFromPreview) {
|
|
this.item = item
|
|
this.showFromPreview = true
|
|
this.showFilePreviewMenu()
|
|
} else if (this.showFromPreview) {
|
|
this.showFromPreview = false
|
|
this.item = undefined
|
|
}
|
|
})
|
|
|
|
events.$on('showContextMenuPreview:hide', () => {
|
|
this.isVisible = false
|
|
this.showFromPreview = false
|
|
this.item = undefined
|
|
|
|
})
|
|
|
|
|
|
events.$on('contextMenu:show', (event, item) => {
|
|
// Store item
|
|
this.item = item
|
|
|
|
// Show context menu
|
|
setTimeout(() => this.showContextMenu(event, item), 10)
|
|
})
|
|
|
|
events.$on('contextMenu:hide', () => this.closeAndResetContextMenu())
|
|
|
|
events.$on('folder:actions', (folder) => {
|
|
// Store item
|
|
this.item = folder
|
|
|
|
if (this.isVisible) this.isVisible = false
|
|
else this.showFolderActionsMenu()
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "@assets/vue-file-manager/_variables";
|
|
@import "@assets/vue-file-manager/_mixins";
|
|
|
|
.filePreviewFixed {
|
|
position: fixed !important;
|
|
display: flex;
|
|
}
|
|
|
|
.menu-option {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.icon {
|
|
margin-right: 20px;
|
|
line-height: 0;
|
|
}
|
|
|
|
.text-label {
|
|
@include font-size(16);
|
|
}
|
|
}
|
|
|
|
.contextmenu {
|
|
min-width: 250px;
|
|
position: absolute;
|
|
z-index: 99;
|
|
box-shadow: $shadow;
|
|
background: white;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
|
|
&.showed {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.menu-options {
|
|
list-style: none;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
.menu-option-group {
|
|
padding: 5px 0;
|
|
border-bottom: 1px solid $light_mode_border;
|
|
|
|
&:first-child {
|
|
padding-top: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
padding-bottom: 0;
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.menu-option {
|
|
white-space: nowrap;
|
|
font-weight: 700;
|
|
@include font-size(14);
|
|
padding: 15px 20px;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
color: $text;
|
|
|
|
&:hover {
|
|
background: $light_background;
|
|
|
|
.text-label {
|
|
color: $theme;
|
|
}
|
|
|
|
path,
|
|
line,
|
|
polyline,
|
|
rect,
|
|
circle,
|
|
polygon {
|
|
stroke: $theme;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.contextmenu {
|
|
background: $dark_mode_foreground;
|
|
|
|
.menu-options {
|
|
.menu-option-group {
|
|
border-color: $dark_mode_border_color;
|
|
}
|
|
|
|
.menu-option {
|
|
color: $dark_mode_text_primary;
|
|
|
|
&:hover {
|
|
background: rgba($theme, 0.1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|