2020-10-17 11:12:00 +00:00
|
|
|
<template>
|
|
|
|
<XModalWindow ref="dialog"
|
|
|
|
:width="370"
|
|
|
|
@close="$refs.dialog.close()"
|
|
|
|
@closed="$emit('closed')"
|
|
|
|
>
|
2021-11-19 10:36:12 +00:00
|
|
|
<template v-if="file" #header>{{ file.name }}</template>
|
|
|
|
<div v-if="file" class="cxqhhsmd">
|
2020-10-17 11:12:00 +00:00
|
|
|
<div class="_section">
|
|
|
|
<MkDriveFileThumbnail class="thumbnail" :file="file" fit="contain"/>
|
|
|
|
<div class="info">
|
|
|
|
<span style="margin-right: 1em;">{{ file.type }}</span>
|
|
|
|
<span>{{ bytes(file.size) }}</span>
|
|
|
|
<MkTime :time="file.createdAt" mode="detail" style="display: block;"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="_section">
|
|
|
|
<div class="_content">
|
2021-11-19 10:36:12 +00:00
|
|
|
<MkSwitch v-model="isSensitive" @update:modelValue="toggleIsSensitive">NSFW</MkSwitch>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="_section">
|
|
|
|
<div class="_content">
|
2021-04-20 14:22:59 +00:00
|
|
|
<MkButton full @click="showUser"><i class="fas fa-external-link-square-alt"></i> {{ $ts.user }}</MkButton>
|
|
|
|
<MkButton full danger @click="del"><i class="fas fa-trash-alt"></i> {{ $ts.delete }}</MkButton>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-if="info" class="_section">
|
2020-10-17 11:12:00 +00:00
|
|
|
<details class="_content rawdata">
|
|
|
|
<pre><code>{{ JSON.stringify(info, null, 2) }}</code></pre>
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</XModalWindow>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { computed, defineComponent } from 'vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkSwitch from '@/components/form/switch.vue';
|
|
|
|
import XModalWindow from '@/components/ui/modal-window.vue';
|
|
|
|
import MkDriveFileThumbnail from '@/components/drive-file-thumbnail.vue';
|
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
import * as os from '@/os';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
MkSwitch,
|
|
|
|
XModalWindow,
|
|
|
|
MkDriveFileThumbnail,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
fileId: {
|
|
|
|
required: true,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['closed'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
file: null,
|
|
|
|
info: null,
|
|
|
|
isSensitive: false,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async fetch() {
|
|
|
|
this.file = await os.api('drive/files/show', { fileId: this.fileId });
|
|
|
|
this.info = await os.api('admin/drive/show-file', { fileId: this.fileId });
|
|
|
|
this.isSensitive = this.file.isSensitive;
|
|
|
|
},
|
|
|
|
|
2020-11-03 06:22:55 +00:00
|
|
|
showUser() {
|
2021-04-23 03:00:07 +00:00
|
|
|
os.pageWindow(`/user-info/${this.file.userId}`);
|
2020-10-17 11:12:00 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
async del() {
|
2021-11-18 09:45:58 +00:00
|
|
|
const { canceled } = await os.confirm({
|
2020-10-17 11:12:00 +00:00
|
|
|
type: 'warning',
|
|
|
|
text: this.$t('removeAreYouSure', { x: this.file.name }),
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
2021-08-16 11:07:54 +00:00
|
|
|
os.apiWithDialog('drive/files/delete', {
|
2020-10-17 11:12:00 +00:00
|
|
|
fileId: this.file.id
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
async toggleIsSensitive(v) {
|
|
|
|
await os.api('drive/files/update', { fileId: this.fileId, isSensitive: v });
|
|
|
|
this.isSensitive = v;
|
|
|
|
},
|
|
|
|
|
|
|
|
bytes
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.cxqhhsmd {
|
|
|
|
> ._section {
|
|
|
|
> .thumbnail {
|
|
|
|
height: 150px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .info {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .rawdata {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|