2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-show="files.length != 0" class="skeikyzd">
|
|
|
|
<XDraggable v-model="_files" class="files" item-key="id" animation="150" delay="100" delay-on-touch-only="true">
|
2020-12-04 21:50:09 -06:00
|
|
|
<template #item="{element}">
|
|
|
|
<div @click="showFileMenu(element, $event)" @contextmenu.prevent="showFileMenu(element, $event)">
|
|
|
|
<MkDriveFileThumbnail :data-id="element.id" class="thumbnail" :file="element" fit="cover"/>
|
2021-11-19 04:36:12 -06:00
|
|
|
<div v-if="element.isSensitive" class="sensitive">
|
2021-04-20 09:22:59 -05:00
|
|
|
<i class="fas fa-exclamation-triangle icon"></i>
|
2020-12-04 21:50:09 -06:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</div>
|
2020-12-04 21:50:09 -06:00
|
|
|
</template>
|
2020-10-17 06:12:00 -05:00
|
|
|
</XDraggable>
|
2020-01-29 13:37:25 -06:00
|
|
|
<p class="remain">{{ 4 - files.length }}/4</p>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
|
|
import MkDriveFileThumbnail from './drive-file-thumbnail.vue'
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
components: {
|
2020-12-04 21:50:09 -06:00
|
|
|
XDraggable: defineAsyncComponent(() => import('vuedraggable').then(x => x.default)),
|
2020-10-17 06:12:00 -05:00
|
|
|
MkDriveFileThumbnail
|
2020-01-29 13:37:25 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
files: {
|
|
|
|
type: Array,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
detachMediaFn: {
|
|
|
|
type: Function,
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-12-04 21:50:09 -06:00
|
|
|
emits: ['updated', 'detach', 'changeSensitive', 'changeName'],
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
data() {
|
|
|
|
return {
|
2020-02-03 18:20:10 -06:00
|
|
|
menu: null as Promise<null> | null,
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2020-12-04 21:50:09 -06:00
|
|
|
computed: {
|
|
|
|
_files: {
|
|
|
|
get() {
|
|
|
|
return this.files;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$emit('updated', value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
methods: {
|
|
|
|
detachMedia(id) {
|
|
|
|
if (this.detachMediaFn) {
|
|
|
|
this.detachMediaFn(id);
|
2020-10-17 06:12:00 -05:00
|
|
|
} else {
|
|
|
|
this.$emit('detach', id);
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
toggleSensitive(file) {
|
2020-10-17 06:12:00 -05:00
|
|
|
os.api('drive/files/update', {
|
2020-01-29 13:37:25 -06:00
|
|
|
fileId: file.id,
|
|
|
|
isSensitive: !file.isSensitive
|
|
|
|
}).then(() => {
|
2020-12-04 21:50:09 -06:00
|
|
|
this.$emit('changeSensitive', file, !file.isSensitive);
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
},
|
|
|
|
async rename(file) {
|
2021-11-18 03:45:58 -06:00
|
|
|
const { canceled, result } = await os.inputText({
|
2020-12-25 19:47:36 -06:00
|
|
|
title: this.$ts.enterFileName,
|
2021-11-18 03:45:58 -06:00
|
|
|
default: file.name,
|
2020-01-29 13:37:25 -06:00
|
|
|
allowEmpty: false
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2020-10-17 06:12:00 -05:00
|
|
|
os.api('drive/files/update', {
|
2020-01-29 13:37:25 -06:00
|
|
|
fileId: file.id,
|
|
|
|
name: result
|
|
|
|
}).then(() => {
|
2020-12-04 21:50:09 -06:00
|
|
|
this.$emit('changeName', file, result);
|
2020-01-29 13:37:25 -06:00
|
|
|
file.name = result;
|
|
|
|
});
|
|
|
|
},
|
2021-05-27 19:38:09 -05:00
|
|
|
|
|
|
|
async describe(file) {
|
2021-11-11 11:02:25 -06:00
|
|
|
os.popup(import("@/components/media-caption.vue"), {
|
2021-05-27 19:38:09 -05:00
|
|
|
title: this.$ts.describeFile,
|
|
|
|
input: {
|
|
|
|
placeholder: this.$ts.inputNewDescription,
|
|
|
|
default: file.comment !== null ? file.comment : "",
|
|
|
|
},
|
|
|
|
image: file
|
|
|
|
}, {
|
|
|
|
done: result => {
|
|
|
|
if (!result || result.canceled) return;
|
|
|
|
let comment = result.result;
|
|
|
|
os.api('drive/files/update', {
|
|
|
|
fileId: file.id,
|
|
|
|
comment: comment.length == 0 ? null : comment
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, 'closed');
|
|
|
|
},
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
showFileMenu(file, ev: MouseEvent) {
|
2020-02-03 18:20:10 -06:00
|
|
|
if (this.menu) return;
|
2021-08-07 22:19:10 -05:00
|
|
|
this.menu = os.popupMenu([{
|
2020-12-25 19:47:36 -06:00
|
|
|
text: this.$ts.renameFile,
|
2021-04-25 08:32:46 -05:00
|
|
|
icon: 'fas fa-i-cursor',
|
2020-10-17 06:12:00 -05:00
|
|
|
action: () => { this.rename(file) }
|
|
|
|
}, {
|
2020-12-25 19:47:36 -06:00
|
|
|
text: file.isSensitive ? this.$ts.unmarkAsSensitive : this.$ts.markAsSensitive,
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: file.isSensitive ? 'fas fa-eye-slash' : 'fas fa-eye',
|
2020-10-17 06:12:00 -05:00
|
|
|
action: () => { this.toggleSensitive(file) }
|
2021-05-27 19:38:09 -05:00
|
|
|
}, {
|
|
|
|
text: this.$ts.describeFile,
|
|
|
|
icon: 'fas fa-i-cursor',
|
|
|
|
action: () => { this.describe(file) }
|
2020-10-17 06:12:00 -05:00
|
|
|
}, {
|
2020-12-25 19:47:36 -06:00
|
|
|
text: this.$ts.attachCancel,
|
2021-04-20 09:22:59 -05:00
|
|
|
icon: 'fas fa-times-circle',
|
2020-10-17 06:12:00 -05:00
|
|
|
action: () => { this.detachMedia(file.id) }
|
|
|
|
}], ev.currentTarget || ev.target).then(() => this.menu = null);
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.skeikyzd {
|
2020-10-17 06:12:00 -05:00
|
|
|
padding: 8px 16px;
|
2020-01-29 13:37:25 -06:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .files {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
position: relative;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
2020-10-17 06:12:00 -05:00
|
|
|
margin-right: 4px;
|
|
|
|
border-radius: 4px;
|
2021-03-02 07:57:16 -06:00
|
|
|
overflow: hidden;
|
2020-01-29 13:37:25 -06:00
|
|
|
cursor: move;
|
|
|
|
|
|
|
|
&:hover > .remove {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .thumbnail {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: 1;
|
|
|
|
color: var(--fg);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .sensitive {
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 2;
|
|
|
|
background: rgba(17, 17, 17, .7);
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
> .icon {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .remain {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|