2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div v-show="files.length != 0" class="skeikyzd">
|
2023-07-12 03:26:53 +02:00
|
|
|
<VueDraggable
|
2023-04-08 02:01:42 +02:00
|
|
|
v-model="_files"
|
|
|
|
class="files"
|
|
|
|
animation="150"
|
|
|
|
delay="100"
|
|
|
|
delay-on-touch-only="true"
|
|
|
|
>
|
2023-07-12 04:20:58 +02:00
|
|
|
<div
|
|
|
|
class="file"
|
|
|
|
v-for="element in _files"
|
|
|
|
:key="element.id"
|
|
|
|
@click="showFileMenu(element, $event)"
|
|
|
|
@contextmenu.prevent="showFileMenu(element, $event)"
|
|
|
|
>
|
|
|
|
<MkDriveFileThumbnail
|
|
|
|
:data-id="element.id"
|
|
|
|
class="thumbnail"
|
|
|
|
:file="element"
|
|
|
|
fit="cover"
|
|
|
|
/>
|
|
|
|
<div v-if="element.isSensitive" class="sensitive">
|
|
|
|
<i class="ph-warning ph-bold ph-lg icon"></i>
|
2020-12-05 04:50:09 +01:00
|
|
|
</div>
|
2023-07-12 04:20:58 +02:00
|
|
|
</div>
|
2023-07-12 03:26:53 +02:00
|
|
|
</VueDraggable>
|
2023-04-08 02:01:42 +02:00
|
|
|
<p class="remain">{{ 16 - files.length }}/16</p>
|
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2023-07-12 04:38:49 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent, ref, computed } from "vue";
|
2023-07-12 03:26:53 +02:00
|
|
|
import { VueDraggable } from "vue-draggable-plus";
|
2023-04-08 02:01:42 +02:00
|
|
|
import MkDriveFileThumbnail from "@/components/MkDriveFileThumbnail.vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { i18n } from "@/i18n";
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-07-12 04:38:49 +02:00
|
|
|
const props = defineProps({
|
|
|
|
files: {
|
|
|
|
type: Array,
|
|
|
|
required: true,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2023-07-12 04:38:49 +02:00
|
|
|
detachMediaFn: {
|
|
|
|
type: Function,
|
|
|
|
required: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2023-07-12 04:38:49 +02:00
|
|
|
});
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-07-12 04:38:49 +02:00
|
|
|
const emits = defineEmits([
|
|
|
|
"updated",
|
|
|
|
"detach",
|
|
|
|
"changeSensitive",
|
|
|
|
"changeName",
|
|
|
|
]);
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2023-07-12 04:38:49 +02:00
|
|
|
let menu = ref<Promise<any> | null>(null);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-07-12 04:38:49 +02:00
|
|
|
const _files = computed({
|
|
|
|
get: () => props.files,
|
|
|
|
set: (value) => emits("updated", value),
|
|
|
|
});
|
2020-12-05 04:50:09 +01:00
|
|
|
|
2023-07-12 04:38:49 +02:00
|
|
|
const detachMedia = (id) => {
|
|
|
|
if (props.detachMediaFn) {
|
|
|
|
props.detachMediaFn(id);
|
|
|
|
} else {
|
|
|
|
emits("detach", id);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function toggleSensitive(file) {
|
|
|
|
os.api("drive/files/update", {
|
|
|
|
fileId: file.id,
|
|
|
|
isSensitive: !file.isSensitive,
|
|
|
|
}).then(() => {
|
|
|
|
emits("changeSensitive", file, !file.isSensitive);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function rename(file) {
|
|
|
|
const { canceled, result } = await os.inputText({
|
|
|
|
title: i18n.ts.enterFileName,
|
|
|
|
default: file.name,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
os.api("drive/files/update", {
|
|
|
|
fileId: file.id,
|
|
|
|
name: result,
|
|
|
|
}).then(() => {
|
|
|
|
emits("changeName", file, result);
|
|
|
|
file.name = result;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function describe(file) {
|
|
|
|
os.popup(
|
|
|
|
defineAsyncComponent(() => import("@/components/MkMediaCaption.vue")),
|
|
|
|
{
|
|
|
|
title: i18n.ts.describeFile,
|
|
|
|
input: {
|
|
|
|
placeholder: i18n.ts.inputNewDescription,
|
|
|
|
default: file.comment !== null ? file.comment : "",
|
|
|
|
},
|
|
|
|
image: file,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2023-07-12 04:38:49 +02:00
|
|
|
{
|
|
|
|
done: (result) => {
|
|
|
|
if (!result || result.canceled) return;
|
|
|
|
let comment = result.result.length === 0 ? null : result.result;
|
|
|
|
os.api("drive/files/update", {
|
|
|
|
fileId: file.id,
|
|
|
|
comment: comment,
|
|
|
|
}).then(() => {
|
|
|
|
file.comment = comment;
|
|
|
|
});
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2023-07-12 04:38:49 +02:00
|
|
|
"closed",
|
|
|
|
);
|
|
|
|
}
|
2021-05-28 02:38:09 +02:00
|
|
|
|
2023-07-12 04:38:49 +02:00
|
|
|
function showFileMenu(file, ev: MouseEvent) {
|
|
|
|
if (menu) return;
|
|
|
|
menu = os
|
|
|
|
.popupMenu(
|
|
|
|
[
|
2023-04-08 02:01:42 +02:00
|
|
|
{
|
2023-07-12 04:38:49 +02:00
|
|
|
text: i18n.ts.renameFile,
|
|
|
|
icon: "ph-cursor-text ph-bold ph-lg",
|
|
|
|
action: () => {
|
|
|
|
rename(file);
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
2021-05-28 02:38:09 +02:00
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
{
|
2023-07-12 04:38:49 +02:00
|
|
|
text: file.isSensitive
|
|
|
|
? i18n.ts.unmarkAsSensitive
|
|
|
|
: i18n.ts.markAsSensitive,
|
|
|
|
icon: file.isSensitive
|
|
|
|
? "ph-eye ph-bold ph-lg"
|
|
|
|
: "ph-eye-slash ph-bold ph-lg",
|
|
|
|
action: () => {
|
|
|
|
toggleSensitive(file);
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
2022-07-05 16:01:23 +02:00
|
|
|
},
|
2023-07-12 04:38:49 +02:00
|
|
|
{
|
|
|
|
text: i18n.ts.describeFile,
|
|
|
|
icon: "ph-subtitles ph-bold ph-lg",
|
|
|
|
action: () => {
|
|
|
|
describe(file);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.ts.attachCancel,
|
|
|
|
icon: "ph-x ph-bold ph-lg",
|
|
|
|
action: () => {
|
|
|
|
detachMedia(file.id);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
ev.currentTarget ?? ev.target,
|
|
|
|
)
|
|
|
|
.then(() => (menu = null));
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.skeikyzd {
|
2020-10-17 13:12:00 +02:00
|
|
|
padding: 8px 16px;
|
2020-01-29 20:37:25 +01:00
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .files {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
2022-07-05 16:01:23 +02:00
|
|
|
> .file {
|
2020-01-29 20:37:25 +01:00
|
|
|
position: relative;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
2020-10-17 13:12:00 +02:00
|
|
|
margin-right: 4px;
|
|
|
|
border-radius: 4px;
|
2020-01-29 20:37:25 +01: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;
|
2023-07-12 04:38:49 +02:00
|
|
|
background: var(--header);
|
|
|
|
color: var(--fg);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> .icon {
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .remain {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 8px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|