mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
- 'There is nothing' title changed in new folder - Play video after click on full preview - Expanded close cookie disclaimer area - Show fileinfopanel as default - Hidden file icons in DesktopToolbar.vue on ipad landscape - Changed background color in context menu dark mode mobile
683 lines
19 KiB
Vue
683 lines
19 KiB
Vue
<template>
|
|
<div class="file-wrapper" @click.stop="clickedItem" @dblclick="goToItem" spellcheck="false">
|
|
<!--Grid preview-->
|
|
<div :draggable="canDrag" @dragstart="$emit('dragstart')" @drop="
|
|
drop()
|
|
area = false" @dragleave="dragLeave" @dragover.prevent="dragEnter" class="file-item" :class="{'is-clicked' : isClicked , 'no-clicked' : !isClicked && this.$isMobile(), 'is-dragenter': area }">
|
|
<!--Thumbnail for item-->
|
|
<div class="icon-item">
|
|
|
|
<!-- MultiSelecting for the mobile version -->
|
|
<div :class="{'check-select-folder' : this.data.type === 'folder', 'check-select' : this.data.type !== 'folder'}" v-if="multiSelectMode">
|
|
<div class="select-box" :class="{'select-box-active' : isClicked } ">
|
|
<CheckIcon v-if="isClicked" class="icon" size="17"/>
|
|
</div>
|
|
</div>
|
|
|
|
<!--If is file or image, then link item-->
|
|
<span v-if="isFile || (isImage && !data.thumbnail)" class="file-icon-text">
|
|
{{ data.mimetype }}
|
|
</span>
|
|
|
|
<!--Folder thumbnail-->
|
|
<FontAwesomeIcon v-if="isFile || (isImage && !data.thumbnail)" class="file-icon" icon="file"/>
|
|
|
|
<!--Image thumbnail-->
|
|
<img loading="lazy" v-if="isImage && data.thumbnail" class="image" :src="data.thumbnail" :alt="data.name"/>
|
|
|
|
<!-- If folder have set emoji -->
|
|
<Emoji class="emoji" v-if="isFolder && folderIconHandle" :emoji="folderIconHandle" size="80" />
|
|
|
|
<!--Else show only folder icon-->
|
|
<FontAwesomeIcon v-if="isFolder && !folderIconHandle" :ref="`folder${this.data.unique_id}`" :class="{'is-deleted': isDeleted}" class="folder-icon" icon="folder"/>
|
|
|
|
</div>
|
|
|
|
<!--Name-->
|
|
<div class="item-name">
|
|
<!--Name-->
|
|
<b :ref="this.data.unique_id" @input="renameItem" @keydown.delete.stop @click.stop :contenteditable="canEditName" class="name">
|
|
{{ itemName }}
|
|
</b>
|
|
|
|
<div class="item-info">
|
|
|
|
<!--Shared Icon-->
|
|
<div v-if="$checkPermission('master') && data.shared" class="item-shared">
|
|
<link-icon size="12" class="shared-icon"></link-icon>
|
|
</div>
|
|
|
|
<!--Participant owner Icon-->
|
|
<div v-if="$checkPermission('master') && data.user_scope !== 'master'" class="item-shared">
|
|
<user-plus-icon size="12" class="shared-icon"></user-plus-icon>
|
|
</div>
|
|
|
|
<!--Filesize-->
|
|
<span v-if="! isFolder" class="item-size">{{ data.filesize }}</span>
|
|
|
|
<!--Folder item counts-->
|
|
<span v-if="isFolder" class="item-length">
|
|
{{ folderItems == 0 ? $t('folder.empty') : $tc('folder.item_counts', folderItems) }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<span @click.stop="showItemActions" class="show-actions" v-if="$isMobile() && ! ( $checkPermission('visitor') && isFolder || multiSelectMode ) && canShowMobileOptions">
|
|
<FontAwesomeIcon icon="ellipsis-h" class="icon-action"></FontAwesomeIcon>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { LinkIcon, UserPlusIcon, CheckIcon } from 'vue-feather-icons'
|
|
import Emoji from '@/components/Others/Emoji'
|
|
import { debounce } from 'lodash'
|
|
import { mapGetters } from 'vuex'
|
|
import { events } from '@/bus'
|
|
|
|
export default {
|
|
name: 'FileItemGrid',
|
|
props: ['data'],
|
|
components: {
|
|
UserPlusIcon,
|
|
CheckIcon,
|
|
LinkIcon,
|
|
Emoji
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'FilePreviewType', 'sharedDetail', 'fileInfoDetail'
|
|
]),
|
|
folderIconHandle(){
|
|
|
|
// If folder have set some color
|
|
if(this.data.icon_color) {
|
|
this.$nextTick(() => {
|
|
this.$refs[`folder${this.data.unique_id}`].firstElementChild.style.fill = `${this.data.icon_color}`
|
|
})
|
|
return false
|
|
}
|
|
|
|
// If folder have set some emoji
|
|
if(this.data.icon_emoji)
|
|
return this.data.icon_emoji
|
|
|
|
},
|
|
...mapGetters({ allData: 'data' }),
|
|
isClicked() {
|
|
return this.fileInfoDetail.some(element => element.unique_id == this.data.unique_id)
|
|
},
|
|
isFolder() {
|
|
return this.data.type === 'folder'
|
|
},
|
|
isFile() {
|
|
return this.data.type !== 'folder' && this.data.type !== 'image'
|
|
},
|
|
isPdf() {
|
|
return this.data.mimetype === 'pdf'
|
|
},
|
|
isImage() {
|
|
return this.data.type === 'image'
|
|
},
|
|
isVideo() {
|
|
return this.data.type === 'video'
|
|
},
|
|
isAudio() {
|
|
let mimetypes = ['mpeg', 'mp3', 'mp4', 'wan', 'flac']
|
|
return mimetypes.includes(this.data.mimetype) && this.data.type === 'audio'
|
|
},
|
|
canEditName() {
|
|
return !this.$isMobile()
|
|
&& !this.$isThisLocation(['trash', 'trash-root'])
|
|
&& !this.$checkPermission('visitor')
|
|
&& !(this.sharedDetail && this.sharedDetail.type === 'file')
|
|
},
|
|
canShowMobileOptions() {
|
|
return !(this.sharedDetail && this.sharedDetail.type === 'file')
|
|
},
|
|
canDrag() {
|
|
return !this.isDeleted && this.$checkPermission(['master', 'editor'])
|
|
},
|
|
timeStamp() {
|
|
return this.data.deleted_at ? this.$t('item_thumbnail.deleted_at', this.data.deleted_at) : this.data.created_at
|
|
},
|
|
folderItems() {
|
|
return this.data.deleted_at ? this.data.trashed_items : this.data.items
|
|
},
|
|
isDeleted() {
|
|
return this.data.deleted_at ? true : false
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
area: false,
|
|
itemName: undefined,
|
|
multiSelectMode: false
|
|
}
|
|
},
|
|
methods: {
|
|
drop() {
|
|
events.$emit('drop')
|
|
},
|
|
showItemActions() {
|
|
// Load file info detail
|
|
this.$store.commit('CLEAR_FILEINFO_DETAIL')
|
|
this.$store.commit('GET_FILEINFO_DETAIL', this.data)
|
|
|
|
events.$emit('mobileMenu:show')
|
|
},
|
|
dragEnter() {
|
|
if (this.data.type !== 'folder') return
|
|
|
|
this.area = true
|
|
},
|
|
dragLeave() {
|
|
this.area = false
|
|
},
|
|
clickedItem(e) {
|
|
events.$emit('unClick')
|
|
|
|
if (!this.$isMobile()) {
|
|
|
|
// After click deselect new folder rename input
|
|
document.getSelection().removeAllRanges();
|
|
|
|
if (e.ctrlKey || e.metaKey && !e.shiftKey) {
|
|
// Click + Ctrl
|
|
if (this.fileInfoDetail.some(item => item.unique_id === this.data.unique_id)) {
|
|
this.$store.commit('REMOVE_ITEM_FILEINFO_DETAIL', this.data)
|
|
} else {
|
|
this.$store.commit('GET_FILEINFO_DETAIL', this.data)
|
|
}
|
|
} else if (e.shiftKey) {
|
|
// Click + Shift
|
|
let lastItem = this.allData.indexOf(this.fileInfoDetail[this.fileInfoDetail.length - 1])
|
|
let clickedItem = this.allData.indexOf(this.data)
|
|
|
|
// If Click + Shift + Ctrl dont remove already selected items
|
|
if (!e.ctrlKey && !e.metaKey) {
|
|
this.$store.commit('CLEAR_FILEINFO_DETAIL')
|
|
}
|
|
|
|
//Shift selecting from top to bottom
|
|
if (lastItem < clickedItem) {
|
|
for (let i = lastItem; i <= clickedItem; i++) {
|
|
this.$store.commit('GET_FILEINFO_DETAIL', this.allData[i])
|
|
}
|
|
//Shift selecting from bottom to top
|
|
} else {
|
|
for (let i = lastItem; i >= clickedItem; i--) {
|
|
this.$store.commit('GET_FILEINFO_DETAIL', this.allData[i])
|
|
}
|
|
}
|
|
} else {
|
|
// Click
|
|
this.$store.commit('CLEAR_FILEINFO_DETAIL')
|
|
this.$store.commit('GET_FILEINFO_DETAIL', this.data)
|
|
}
|
|
}
|
|
|
|
if (!this.multiSelectMode && this.$isMobile()) {
|
|
// Open in mobile version on first click
|
|
if (this.$isMobile() && this.isFolder) {
|
|
// Go to folder
|
|
if (this.$isThisLocation('public')) {
|
|
this.$store.dispatch('browseShared', [{ folder: this.data, back: false, init: false }])
|
|
} else {
|
|
this.$store.dispatch('getFolder', [{ folder: this.data, back: false, init: false }])
|
|
}
|
|
}
|
|
|
|
if (this.$isMobile()) {
|
|
if (this.isImage || this.isVideo || this.isAudio) {
|
|
this.$store.commit('GET_FILEINFO_DETAIL', this.data)
|
|
events.$emit('fileFullPreview:show')
|
|
}
|
|
}
|
|
}
|
|
|
|
if (this.multiSelectMode && this.$isMobile()) {
|
|
if (this.fileInfoDetail.some(item => item.unique_id === this.data.unique_id)) {
|
|
this.$store.commit('REMOVE_ITEM_FILEINFO_DETAIL', this.data)
|
|
} else {
|
|
this.$store.commit('GET_FILEINFO_DETAIL', this.data)
|
|
}
|
|
}
|
|
// Get target classname
|
|
let itemClass = e.target.className
|
|
|
|
if (
|
|
['name', 'icon', 'file-link', 'file-icon-text'].includes(
|
|
itemClass
|
|
)
|
|
)
|
|
return
|
|
},
|
|
goToItem() {
|
|
if (this.isImage || this.isVideo || this.isAudio) {
|
|
events.$emit('fileFullPreview:show')
|
|
|
|
} else if (this.isFile || !this.isFolder && !this.isPdf && !this.isVideo && !this.isAudio && !this.isImage) {
|
|
this.$downloadFile(this.data.file_url, this.data.name + '.' + this.data.mimetype)
|
|
|
|
} else if (this.isFolder) {
|
|
|
|
//Clear selected data after open another folder
|
|
this.$store.commit('CLEAR_FILEINFO_DETAIL')
|
|
|
|
if (this.$isThisLocation('public')) {
|
|
this.$store.dispatch('browseShared', [{ folder: this.data, back: false, init: false }])
|
|
} else {
|
|
this.$store.dispatch('getFolder', [{ folder: this.data, back: false, init: false }])
|
|
}
|
|
}
|
|
},
|
|
renameItem: debounce(function(e) {
|
|
|
|
// Prevent submit empty string
|
|
if (e.target.innerText.trim() === '') return
|
|
|
|
this.$store.dispatch('renameItem', {
|
|
unique_id: this.data.unique_id,
|
|
type: this.data.type,
|
|
name: e.target.innerText
|
|
})
|
|
}, 300)
|
|
},
|
|
created() {
|
|
this.itemName = this.data.name
|
|
|
|
events.$on('newFolder:focus', (unique_id) => {
|
|
|
|
if(this.data.unique_id == unique_id) {
|
|
this.$refs[unique_id].focus()
|
|
document.execCommand('selectAll')
|
|
}
|
|
})
|
|
|
|
events.$on('mobileSelecting:start', () => {
|
|
this.multiSelectMode = true
|
|
this.$store.commit('CLEAR_FILEINFO_DETAIL')
|
|
})
|
|
|
|
events.$on('mobileSelecting:stop', () => {
|
|
this.multiSelectMode = false
|
|
this.$store.commit('CLEAR_FILEINFO_DETAIL')
|
|
})
|
|
// Change item name
|
|
events.$on('change:name', (item) => {
|
|
if (this.data.unique_id == item.unique_id) this.itemName = item.name
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
|
|
.check-select {
|
|
margin-right: 10px;
|
|
margin-left: 3px;
|
|
position: absolute;
|
|
top: -10px;
|
|
z-index: 5;
|
|
left: 0px;
|
|
}
|
|
|
|
.check-select-folder {
|
|
margin-right: 10px;
|
|
margin-left: 3px;
|
|
position: absolute;
|
|
top: 8px;
|
|
z-index: 5;
|
|
left: 10px;
|
|
}
|
|
|
|
.select-box {
|
|
width: 20px;
|
|
height: 20px;
|
|
background-color: $light_background;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 5px;
|
|
box-shadow: 0 3px 15px 2px hsla(220, 36%, 16%, 0.05);
|
|
}
|
|
|
|
.select-box-active {
|
|
background-color: $theme;
|
|
|
|
.icon {
|
|
stroke: white;
|
|
}
|
|
}
|
|
|
|
|
|
.show-actions {
|
|
cursor: pointer;
|
|
padding: 4px 26px;
|
|
|
|
.icon-action {
|
|
@include font-size(12);
|
|
}
|
|
|
|
path {
|
|
fill: $theme;
|
|
}
|
|
}
|
|
|
|
.file-wrapper {
|
|
user-select: none;
|
|
position: relative;
|
|
text-align: center;
|
|
display: inline-block;
|
|
vertical-align: text-top;
|
|
width: 100%;
|
|
|
|
.item-name {
|
|
display: block;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
line-height: 20px;
|
|
|
|
.item-size,
|
|
.item-length {
|
|
@include font-size(11);
|
|
font-weight: 400;
|
|
color: rgba($text, 0.7);
|
|
display: inline-block;
|
|
}
|
|
|
|
.item-info {
|
|
display: block;
|
|
line-height: 1;
|
|
}
|
|
|
|
.item-shared {
|
|
display: inline-block;
|
|
|
|
.label {
|
|
@include font-size(12);
|
|
font-weight: 400;
|
|
color: $theme;
|
|
}
|
|
|
|
.shared-icon {
|
|
vertical-align: middle;
|
|
|
|
path, circle, line {
|
|
stroke: $theme;
|
|
}
|
|
}
|
|
}
|
|
|
|
.name {
|
|
color: $text;
|
|
@include font-size(14);
|
|
font-weight: 700;
|
|
max-height: 40px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
word-break: break-all;
|
|
|
|
&[contenteditable] {
|
|
-webkit-user-select: text;
|
|
user-select: text;
|
|
}
|
|
|
|
&[contenteditable='true']:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&.actived {
|
|
max-height: initial;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.selected {
|
|
.file-item {
|
|
background: $light_background;
|
|
}
|
|
}
|
|
|
|
.file-item {
|
|
border: 2px dashed transparent;
|
|
width: 165px;
|
|
margin: 0 auto;
|
|
cursor: pointer;
|
|
position: relative;
|
|
padding: 15px 0;
|
|
|
|
&.is-dragenter {
|
|
border: 2px dashed $theme;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
&.no-clicked {
|
|
background: white !important;
|
|
|
|
.item-name {
|
|
.name {
|
|
color: $text !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&.is-clicked {
|
|
border-radius: 8px;
|
|
background: $light_background;
|
|
}
|
|
}
|
|
|
|
.icon-item {
|
|
text-align: center;
|
|
position: relative;
|
|
height: 110px;
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.emoji {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.file-link {
|
|
display: block;
|
|
}
|
|
|
|
.file-icon {
|
|
@include font-size(100);
|
|
margin: 0 auto;
|
|
|
|
path {
|
|
fill: #fafafc;
|
|
stroke: #dfe0e8;
|
|
stroke-width: 1;
|
|
}
|
|
}
|
|
|
|
.file-icon-text {
|
|
margin: 5px auto 0;
|
|
position: absolute;
|
|
text-align: center;
|
|
left: 0;
|
|
right: 0;
|
|
color: $theme;
|
|
@include font-size(12);
|
|
font-weight: 600;
|
|
user-select: none;
|
|
max-width: 65px;
|
|
max-height: 20px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.image {
|
|
max-width: 95%;
|
|
object-fit: cover;
|
|
user-select: none;
|
|
height: 110px;
|
|
border-radius: 5px;
|
|
margin: 0 auto;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.folder-icon {
|
|
align-items: flex-end;
|
|
@include font-size(80);
|
|
margin: 0 auto;
|
|
|
|
path {
|
|
fill: $theme;
|
|
}
|
|
|
|
&.is-deleted {
|
|
path {
|
|
fill: $dark_background;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 960px) {
|
|
|
|
.file-wrapper {
|
|
|
|
.icon-item {
|
|
margin-bottom: 15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 690px) {
|
|
.file-wrapper {
|
|
|
|
.file-item {
|
|
width: 120px;
|
|
}
|
|
|
|
.icon-item {
|
|
margin-bottom: 10px;
|
|
height: 90px;
|
|
|
|
.file-icon {
|
|
@include font-size(75);
|
|
}
|
|
|
|
.file-icon-text {
|
|
@include font-size(12);
|
|
}
|
|
|
|
.folder-icon {
|
|
@include font-size(75);
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.image {
|
|
width: 90px;
|
|
height: 90px;
|
|
}
|
|
}
|
|
|
|
.item-name .name {
|
|
@include font-size(13);
|
|
line-height: .9;
|
|
max-height: 30px;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
.select-box {
|
|
background-color: lighten($dark_mode_foreground, 10%);
|
|
}
|
|
|
|
.select-box-active {
|
|
background-color: lighten($theme, 5%);
|
|
|
|
.icon {
|
|
stroke: white;
|
|
}
|
|
}
|
|
|
|
.file-wrapper {
|
|
|
|
.icon-item {
|
|
|
|
.file-icon {
|
|
|
|
path {
|
|
fill: $dark_mode_foreground;
|
|
stroke: #2F3C54;
|
|
}
|
|
}
|
|
|
|
.folder-icon {
|
|
|
|
&.is-deleted {
|
|
path {
|
|
fill: lighten($dark_mode_foreground, 5%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.file-item {
|
|
&.no-clicked {
|
|
background: $dark_mode_background !important;
|
|
|
|
.file-icon {
|
|
|
|
path {
|
|
fill: $dark_mode_foreground !important;
|
|
stroke: #2F3C54;
|
|
}
|
|
}
|
|
|
|
.item-name {
|
|
|
|
.name {
|
|
color: $dark_mode_text_primary !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&.is-clicked {
|
|
background: $dark_mode_foreground;
|
|
|
|
.file-icon {
|
|
|
|
path {
|
|
fill: $dark_mode_background;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.item-name {
|
|
|
|
.name {
|
|
color: $dark_mode_text_primary;
|
|
}
|
|
|
|
.item-size,
|
|
.item-length {
|
|
color: $dark_mode_text_secondary;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
|
|
</style>
|