2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
|
|
|
<div class="ncvczrfv"
|
2020-10-17 11:12:00 +00:00
|
|
|
:class="{ isSelected }"
|
2021-11-19 10:36:12 +00:00
|
|
|
draggable="true"
|
|
|
|
:title="title"
|
2020-01-29 19:37:25 +00:00
|
|
|
@click="onClick"
|
2020-10-17 11:12:00 +00:00
|
|
|
@contextmenu.stop="onContextmenu"
|
2020-01-29 19:37:25 +00:00
|
|
|
@dragstart="onDragstart"
|
|
|
|
@dragend="onDragend"
|
|
|
|
>
|
2022-01-18 14:06:16 +00:00
|
|
|
<div v-if="$i?.avatarId == file.id" class="label">
|
2021-11-11 17:02:25 +00:00
|
|
|
<img src="/client-assets/label.svg"/>
|
2022-01-18 14:06:16 +00:00
|
|
|
<p>{{ i18n.locale.avatar }}</p>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2022-01-18 14:06:16 +00:00
|
|
|
<div v-if="$i?.bannerId == file.id" class="label">
|
2021-11-11 17:02:25 +00:00
|
|
|
<img src="/client-assets/label.svg"/>
|
2022-01-18 14:06:16 +00:00
|
|
|
<p>{{ i18n.locale.banner }}</p>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-if="file.isSensitive" class="label red">
|
2021-11-11 17:02:25 +00:00
|
|
|
<img src="/client-assets/label-red.svg"/>
|
2022-01-18 14:06:16 +00:00
|
|
|
<p>{{ i18n.locale.nsfw }}</p>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkDriveFileThumbnail class="thumbnail" :file="file" fit="contain"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
<p class="name">
|
|
|
|
<span>{{ file.name.lastIndexOf('.') != -1 ? file.name.substr(0, file.name.lastIndexOf('.')) : file.name }}</span>
|
2021-11-19 10:36:12 +00:00
|
|
|
<span v-if="file.name.lastIndexOf('.') != -1" class="ext">{{ file.name.substr(file.name.lastIndexOf('.')) }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, ref } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
2021-11-11 17:02:25 +00:00
|
|
|
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
2020-10-17 11:12:00 +00:00
|
|
|
import MkDriveFileThumbnail from './drive-file-thumbnail.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
import * as os from '@/os';
|
2022-01-18 14:06:16 +00:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { $i } from '@/account';
|
|
|
|
|
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
file: Misskey.entities.DriveFile;
|
|
|
|
isSelected?: boolean;
|
|
|
|
selectMode?: boolean;
|
|
|
|
}>(), {
|
|
|
|
isSelected: false,
|
|
|
|
selectMode: false,
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(e: 'chosen', r: Misskey.entities.DriveFile): void;
|
|
|
|
(e: 'dragstart'): void;
|
|
|
|
(e: 'dragend'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const isDragging = ref(false);
|
|
|
|
|
|
|
|
const title = computed(() => `${props.file.name}\n${props.file.type} ${bytes(props.file.size)}`);
|
|
|
|
|
|
|
|
function getMenu() {
|
|
|
|
return [{
|
|
|
|
text: i18n.locale.rename,
|
|
|
|
icon: 'fas fa-i-cursor',
|
|
|
|
action: rename
|
|
|
|
}, {
|
|
|
|
text: props.file.isSensitive ? i18n.locale.unmarkAsSensitive : i18n.locale.markAsSensitive,
|
|
|
|
icon: props.file.isSensitive ? 'fas fa-eye' : 'fas fa-eye-slash',
|
|
|
|
action: toggleSensitive
|
|
|
|
}, {
|
|
|
|
text: i18n.locale.describeFile,
|
|
|
|
icon: 'fas fa-i-cursor',
|
|
|
|
action: describe
|
|
|
|
}, null, {
|
|
|
|
text: i18n.locale.copyUrl,
|
|
|
|
icon: 'fas fa-link',
|
|
|
|
action: copyUrl
|
|
|
|
}, {
|
|
|
|
type: 'a',
|
|
|
|
href: props.file.url,
|
|
|
|
target: '_blank',
|
|
|
|
text: i18n.locale.download,
|
|
|
|
icon: 'fas fa-download',
|
|
|
|
download: props.file.name
|
|
|
|
}, null, {
|
|
|
|
text: i18n.locale.delete,
|
|
|
|
icon: 'fas fa-trash-alt',
|
|
|
|
danger: true,
|
|
|
|
action: deleteFile
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
function onClick(ev: MouseEvent) {
|
|
|
|
if (props.selectMode) {
|
|
|
|
emit('chosen', props.file);
|
|
|
|
} else {
|
|
|
|
os.popupMenu(getMenu(), (ev.currentTarget || ev.target || undefined) as HTMLElement | undefined);
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
function onContextmenu(e: MouseEvent) {
|
|
|
|
os.contextMenu(getMenu(), e);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-18 14:06:16 +00:00
|
|
|
function onDragstart(e: DragEvent) {
|
|
|
|
if (e.dataTransfer) {
|
|
|
|
e.dataTransfer.effectAllowed = 'move';
|
|
|
|
e.dataTransfer.setData(_DATA_TRANSFER_DRIVE_FILE_, JSON.stringify(props.file));
|
|
|
|
}
|
|
|
|
isDragging.value = true;
|
|
|
|
|
|
|
|
emit('dragstart');
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDragend() {
|
|
|
|
isDragging.value = false;
|
|
|
|
emit('dragend');
|
|
|
|
}
|
|
|
|
|
|
|
|
function rename() {
|
|
|
|
os.inputText({
|
|
|
|
title: i18n.locale.renameFile,
|
|
|
|
placeholder: i18n.locale.inputNewFileName,
|
|
|
|
default: props.file.name,
|
|
|
|
}).then(({ canceled, result: name }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
os.api('drive/files/update', {
|
|
|
|
fileId: props.file.id,
|
|
|
|
name: name
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function describe() {
|
|
|
|
os.popup(import('@/components/media-caption.vue'), {
|
|
|
|
title: i18n.locale.describeFile,
|
|
|
|
input: {
|
|
|
|
placeholder: i18n.locale.inputNewDescription,
|
|
|
|
default: props.file.comment !== null ? props.file.comment : '',
|
2021-05-28 00:38:09 +00:00
|
|
|
},
|
2022-01-18 14:06:16 +00:00
|
|
|
image: props.file
|
|
|
|
}, {
|
|
|
|
done: result => {
|
|
|
|
if (!result || result.canceled) return;
|
|
|
|
let comment = result.result;
|
2020-10-17 11:12:00 +00:00
|
|
|
os.api('drive/files/update', {
|
2022-01-18 14:06:16 +00:00
|
|
|
fileId: props.file.id,
|
|
|
|
comment: comment.length == 0 ? null : comment
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2022-01-18 14:06:16 +00:00
|
|
|
}
|
|
|
|
}, 'closed');
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleSensitive() {
|
|
|
|
os.api('drive/files/update', {
|
|
|
|
fileId: props.file.id,
|
|
|
|
isSensitive: !props.file.isSensitive
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function copyUrl() {
|
|
|
|
copyToClipboard(props.file.url);
|
|
|
|
os.success();
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
function addApp() {
|
|
|
|
alert('not implemented yet');
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
async function deleteFile() {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.t('driveFileDeleteConfirm', { name: props.file.name }),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (canceled) return;
|
|
|
|
os.api('drive/files/delete', {
|
|
|
|
fileId: props.file.id
|
|
|
|
});
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ncvczrfv {
|
|
|
|
position: relative;
|
|
|
|
padding: 8px 0 0 0;
|
|
|
|
min-height: 180px;
|
2021-12-10 01:46:29 +00:00
|
|
|
border-radius: 8px;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
&, * {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
> * {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
&:hover {
|
|
|
|
background: rgba(#000, 0.05);
|
|
|
|
|
|
|
|
> .label {
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
background: #0b65a5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.red {
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
background: #c12113;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: rgba(#000, 0.1);
|
|
|
|
|
|
|
|
> .label {
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
background: #0b588c;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.red {
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
background: #ce2212;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
&.isSelected {
|
2020-01-29 19:37:25 +00:00
|
|
|
background: var(--accent);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--accentLighten);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: var(--accentDarken);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .label {
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .thumbnail {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .label {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
background: #0c7ac9;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
top: 0;
|
|
|
|
left: 57px;
|
|
|
|
width: 28px;
|
|
|
|
height: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
top: 57px;
|
|
|
|
left: 0;
|
|
|
|
width: 8px;
|
|
|
|
height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.red {
|
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
background: #c12113;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> img {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 3;
|
|
|
|
top: 19px;
|
|
|
|
left: -28px;
|
|
|
|
width: 120px;
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 28px;
|
|
|
|
color: #fff;
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .thumbnail {
|
2021-04-10 03:40:50 +00:00
|
|
|
width: 110px;
|
|
|
|
height: 110px;
|
2020-01-29 19:37:25 +00:00
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
display: block;
|
|
|
|
margin: 4px 0 0 0;
|
|
|
|
font-size: 0.8em;
|
|
|
|
text-align: center;
|
|
|
|
word-break: break-all;
|
|
|
|
color: var(--fg);
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
> .ext {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|