2023-10-10 01:43:43 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkInfo>{{ i18n.ts._fileViewer.thisPageCanBeSeenFromTheAuthor }}</MkInfo>
|
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
<div v-else-if="file" class="_gaps">
|
|
|
|
<div :class="$style.filePreviewRoot">
|
|
|
|
<MkMediaList :mediaList="[file]"></MkMediaList>
|
|
|
|
</div>
|
|
|
|
<div :class="$style.fileQuickActionsRoot">
|
|
|
|
<button class="_button" :class="$style.fileNameEditBtn" @click="rename()">
|
|
|
|
<h2 class="_nowrap" :class="$style.fileName">{{ file.name }}</h2>
|
2023-10-13 17:07:41 +00:00
|
|
|
<i class="ph-pencil ph-bold ph-lg" :class="$style.fileNameEditIcon"></i>
|
2023-10-10 01:43:43 +00:00
|
|
|
</button>
|
|
|
|
<div :class="$style.fileQuickActionsOthers">
|
|
|
|
<button v-tooltip="i18n.ts.createNoteFromTheFile" class="_button" :class="$style.fileQuickActionsOthersButton" @click="postThis()">
|
2023-10-13 17:07:41 +00:00
|
|
|
<i class="ph-pencil ph-bold ph-lg"></i>
|
2023-10-10 01:43:43 +00:00
|
|
|
</button>
|
|
|
|
<button v-if="isImage" v-tooltip="i18n.ts.cropImage" class="_button" :class="$style.fileQuickActionsOthersButton" @click="crop()">
|
|
|
|
<i class="ti ti-crop"></i>
|
|
|
|
</button>
|
|
|
|
<button v-if="file.isSensitive" v-tooltip="i18n.ts.unmarkAsSensitive" class="_button" :class="$style.fileQuickActionsOthersButton" @click="toggleSensitive()">
|
2023-10-13 17:07:41 +00:00
|
|
|
<i class="ph-eye ph-bold ph-lg"></i>
|
2023-10-10 01:43:43 +00:00
|
|
|
</button>
|
|
|
|
<button v-else v-tooltip="i18n.ts.markAsSensitive" class="_button" :class="$style.fileQuickActionsOthersButton" @click="toggleSensitive()">
|
2023-10-13 17:07:41 +00:00
|
|
|
<i class="ph-eye-slash ph-bold ph-lg"></i>
|
2023-10-10 01:43:43 +00:00
|
|
|
</button>
|
|
|
|
<a v-tooltip="i18n.ts.download" :href="file.url" :download="file.name" class="_button" :class="$style.fileQuickActionsOthersButton">
|
2023-10-13 17:07:41 +00:00
|
|
|
<i class="ph-download ph-bold ph-lg"></i>
|
2023-10-10 01:43:43 +00:00
|
|
|
</a>
|
|
|
|
<button v-tooltip="i18n.ts.delete" class="_button" :class="[$style.fileQuickActionsOthersButton, $style.danger]" @click="deleteFile()">
|
2023-10-13 17:07:41 +00:00
|
|
|
<i class="ph-trash ph-bold ph-lg"></i>
|
2023-10-10 01:43:43 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<button class="_button" :class="$style.fileAltEditBtn" @click="describe()">
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts.description }}</template>
|
|
|
|
<template #value>{{ file.comment ? file.comment : `(${i18n.ts.none})` }}<i class="ti ti-pencil" :class="$style.fileAltEditIcon"></i></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</button>
|
|
|
|
<MkKeyValue :class="$style.fileMetaDataChildren">
|
|
|
|
<template #key>{{ i18n.ts._fileViewer.uploadedAt }}</template>
|
|
|
|
<template #value><MkTime :time="file.createdAt" mode="detail"/></template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue :class="$style.fileMetaDataChildren">
|
|
|
|
<template #key>{{ i18n.ts._fileViewer.type }}</template>
|
|
|
|
<template #value>{{ file.type }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue :class="$style.fileMetaDataChildren">
|
|
|
|
<template #key>{{ i18n.ts._fileViewer.size }}</template>
|
|
|
|
<template #value>{{ bytes(file.size) }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-else class="_fullinfo">
|
|
|
|
<img :src="infoImageUrl" class="_ghost"/>
|
|
|
|
<div>{{ i18n.ts.nothing }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { ref, computed, defineAsyncComponent, onMounted } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
|
|
import MkMediaList from '@/components/MkMediaList.vue';
|
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
|
|
|
import bytes from '@/filters/bytes.js';
|
|
|
|
import { infoImageUrl } from '@/instance.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { useRouter } from '@/router.js';
|
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
fileId: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const fetching = ref(true);
|
|
|
|
const file = ref<Misskey.entities.DriveFile>();
|
|
|
|
const isImage = computed(() => file.value?.type.startsWith('image/'));
|
|
|
|
|
|
|
|
async function fetch() {
|
|
|
|
fetching.value = true;
|
|
|
|
|
|
|
|
file.value = await os.api('drive/files/show', {
|
|
|
|
fileId: props.fileId,
|
|
|
|
}).catch((err) => {
|
|
|
|
console.error(err);
|
|
|
|
return undefined;
|
|
|
|
});
|
|
|
|
|
|
|
|
fetching.value = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function postThis() {
|
|
|
|
if (!file.value) return;
|
|
|
|
|
|
|
|
os.post({
|
|
|
|
initialFiles: [file.value],
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function crop() {
|
|
|
|
if (!file.value) return;
|
|
|
|
|
|
|
|
os.cropImage(file.value, {
|
|
|
|
aspectRatio: NaN,
|
|
|
|
uploadFolder: file.value.folderId ?? null,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleSensitive() {
|
|
|
|
if (!file.value) return;
|
|
|
|
|
|
|
|
os.apiWithDialog('drive/files/update', {
|
|
|
|
fileId: file.value.id,
|
|
|
|
isSensitive: !file.value.isSensitive,
|
|
|
|
}).then(async () => {
|
|
|
|
await fetch();
|
|
|
|
}).catch(err => {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
title: i18n.ts.error,
|
|
|
|
text: err.message,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function rename() {
|
|
|
|
if (!file.value) return;
|
|
|
|
|
|
|
|
os.inputText({
|
|
|
|
title: i18n.ts.renameFile,
|
|
|
|
placeholder: i18n.ts.inputNewFileName,
|
|
|
|
default: file.value.name,
|
|
|
|
}).then(({ canceled, result: name }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
os.apiWithDialog('drive/files/update', {
|
|
|
|
fileId: file.value.id,
|
|
|
|
name: name,
|
|
|
|
}).then(async () => {
|
|
|
|
await fetch();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function describe() {
|
|
|
|
if (!file.value) return;
|
|
|
|
|
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkFileCaptionEditWindow.vue')), {
|
|
|
|
default: file.value.comment ?? '',
|
|
|
|
file: file.value,
|
|
|
|
}, {
|
|
|
|
done: caption => {
|
|
|
|
os.apiWithDialog('drive/files/update', {
|
|
|
|
fileId: file.value.id,
|
|
|
|
comment: caption.length === 0 ? null : caption,
|
|
|
|
}).then(async () => {
|
|
|
|
await fetch();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}, 'closed');
|
|
|
|
}
|
|
|
|
|
|
|
|
async function deleteFile() {
|
|
|
|
if (!file.value) return;
|
|
|
|
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.t('driveFileDeleteConfirm', { name: file.value.name }),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (canceled) return;
|
|
|
|
await os.apiWithDialog('drive/files/delete', {
|
|
|
|
fileId: file.value.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
router.push('/my/drive');
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
await fetch();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
|
|
|
|
.filePreviewRoot {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
// MkMediaList 内の上部マージン 4px
|
|
|
|
padding: calc(1rem - 4px) 1rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileQuickActionsRoot {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (min-width: 500px) {
|
|
|
|
.fileQuickActionsRoot {
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileQuickActionsOthers {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 1rem;
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
|
|
|
|
.fileQuickActionsOthersButton {
|
|
|
|
padding: .5rem;
|
|
|
|
border-radius: 99rem;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus-visible {
|
|
|
|
background-color: var(--accentedBg);
|
|
|
|
color: var(--accent);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.danger {
|
|
|
|
color: #ff2a2a;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.danger:hover,
|
|
|
|
&.danger:focus-visible {
|
|
|
|
background-color: rgba(255, 42, 42, .15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileNameEditBtn {
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
min-width: 0;
|
|
|
|
font-weight: 700;
|
|
|
|
border-radius: var(--radius);
|
|
|
|
font-size: .8rem;
|
|
|
|
|
|
|
|
>.fileNameEditIcon {
|
|
|
|
color: transparent;
|
|
|
|
visibility: hidden;
|
|
|
|
padding-left: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
>.fileName {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: var(--accentedBg);
|
|
|
|
|
|
|
|
>.fileName,
|
|
|
|
>.fileNameEditIcon {
|
|
|
|
visibility: visible;
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileMetaDataChildren {
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fileAltEditBtn {
|
|
|
|
text-align: start;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
border-radius: var(--radius);
|
|
|
|
|
|
|
|
.fileAltEditIcon {
|
|
|
|
display: inline-block;
|
|
|
|
color: transparent;
|
|
|
|
visibility: hidden;
|
|
|
|
padding-left: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--accent);
|
|
|
|
background-color: var(--accentedBg);
|
|
|
|
|
|
|
|
.fileAltEditIcon {
|
|
|
|
color: var(--accent);
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|