2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2020-10-17 13:12:00 +02:00
|
|
|
<div class="xrmjdkdw">
|
2021-10-02 16:11:21 +02:00
|
|
|
<MkContainer :foldable="true" class="lookup">
|
|
|
|
<template #header><i class="fas fa-search"></i> {{ $ts.lookup }}</template>
|
|
|
|
<div class="xrmjdkdw-lookup">
|
|
|
|
<MkInput class="item" v-model="q" type="text" @enter="find()">
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #label>{{ $ts.fileIdOrUrl }}</template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
2021-04-20 16:22:59 +02:00
|
|
|
<MkButton @click="find()" primary><i class="fas fa-search"></i> {{ $ts.lookup }}</MkButton>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
2021-10-02 16:11:21 +02:00
|
|
|
</MkContainer>
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
<div class="_section">
|
|
|
|
<div class="_content">
|
|
|
|
<div class="inputs" style="display: flex;">
|
2021-08-06 15:29:19 +02:00
|
|
|
<MkSelect v-model="origin" style="margin: 0; flex: 1;">
|
2020-12-26 02:47:36 +01:00
|
|
|
<template #label>{{ $ts.instance }}</template>
|
|
|
|
<option value="combined">{{ $ts.all }}</option>
|
|
|
|
<option value="local">{{ $ts.local }}</option>
|
|
|
|
<option value="remote">{{ $ts.remote }}</option>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkSelect>
|
2021-08-06 15:29:19 +02:00
|
|
|
<MkInput v-model="searchHost" :debounce="true" type="search" style="margin: 0; flex: 1;" :disabled="pagination.params().origin === 'local'">
|
|
|
|
<template #label>{{ $ts.host }}</template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
|
|
|
</div>
|
|
|
|
<div class="inputs" style="display: flex; padding-top: 1.2em;">
|
2021-08-06 15:29:19 +02:00
|
|
|
<MkInput v-model="type" :debounce="true" type="search" style="margin: 0; flex: 1;">
|
2021-10-02 16:11:21 +02:00
|
|
|
<template #label>MIME type</template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
|
|
|
</div>
|
2020-11-08 03:25:28 +01:00
|
|
|
<MkPagination :pagination="pagination" #default="{items}" class="urempief" ref="files">
|
2021-04-10 11:17:42 +02:00
|
|
|
<button class="file _panel _button _gap" v-for="file in items" :key="file.id" @click="show(file, $event)">
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkDriveFileThumbnail class="thumbnail" :file="file" fit="contain"/>
|
|
|
|
<div class="body">
|
|
|
|
<div>
|
|
|
|
<small style="opacity: 0.7;">{{ file.name }}</small>
|
|
|
|
</div>
|
|
|
|
<div>
|
2020-10-28 14:24:16 +01:00
|
|
|
<MkAcct v-if="file.user" :user="file.user"/>
|
2020-12-26 02:47:36 +01:00
|
|
|
<div v-else>{{ $ts.system }}</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<span style="margin-right: 1em;">{{ file.type }}</span>
|
|
|
|
<span>{{ bytes(file.size) }}</span>
|
|
|
|
</div>
|
|
|
|
<div>
|
2020-12-26 02:47:36 +01:00
|
|
|
<span>{{ $ts.registeredDate }}: <MkTime :time="file.createdAt" mode="detail"/></span>
|
2020-10-17 13:12:00 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</button>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import MkSelect from '@/components/form/select.vue';
|
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
|
|
|
import MkDriveFileThumbnail from '@/components/drive-file-thumbnail.vue';
|
|
|
|
import bytes from '@/filters/bytes';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
MkButton,
|
2020-10-17 13:12:00 +02:00
|
|
|
MkInput,
|
|
|
|
MkSelect,
|
2020-01-29 20:37:25 +01:00
|
|
|
MkPagination,
|
2021-10-02 16:11:21 +02:00
|
|
|
MkContainer,
|
2020-10-17 13:12:00 +02:00
|
|
|
MkDriveFileThumbnail,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
emits: ['info'],
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.files,
|
2021-10-02 16:11:21 +02:00
|
|
|
icon: 'fas fa-cloud',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
actions: [{
|
|
|
|
text: this.$ts.clearCachedFiles,
|
|
|
|
icon: 'fas fa-trash-alt',
|
|
|
|
handler: this.clear
|
|
|
|
}]
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
q: null,
|
|
|
|
origin: 'local',
|
|
|
|
type: null,
|
|
|
|
searchHost: '',
|
|
|
|
pagination: {
|
|
|
|
endpoint: 'admin/drive/files',
|
|
|
|
limit: 10,
|
|
|
|
params: () => ({
|
|
|
|
type: (this.type && this.type !== '') ? this.type : null,
|
|
|
|
origin: this.origin,
|
|
|
|
hostname: (this.hostname && this.hostname !== '') ? this.hostname : null,
|
|
|
|
}),
|
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
watch: {
|
|
|
|
type() {
|
|
|
|
this.$refs.files.reload();
|
|
|
|
},
|
|
|
|
origin() {
|
|
|
|
this.$refs.files.reload();
|
|
|
|
},
|
|
|
|
searchHost() {
|
|
|
|
this.$refs.files.reload();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
mounted() {
|
|
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
methods: {
|
|
|
|
clear() {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.dialog({
|
2020-01-29 20:37:25 +01:00
|
|
|
type: 'warning',
|
2020-12-26 02:47:36 +01:00
|
|
|
text: this.$ts.clearCachedFilesConfirm,
|
2020-01-29 20:37:25 +01:00
|
|
|
showCancelButton: true
|
|
|
|
}).then(({ canceled }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.apiWithDialog('admin/drive/clean-remote-files', {});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-11-03 07:22:55 +01:00
|
|
|
show(file, ev) {
|
|
|
|
os.popup(import('./file-dialog.vue'), {
|
2020-10-17 13:12:00 +02:00
|
|
|
fileId: file.id
|
|
|
|
}, {}, 'closed');
|
|
|
|
},
|
|
|
|
|
|
|
|
find() {
|
|
|
|
os.api('admin/drive/show-file', this.q.startsWith('http://') || this.q.startsWith('https://') ? { url: this.q.trim() } : { fileId: this.q.trim() }).then(file => {
|
|
|
|
this.show(file);
|
|
|
|
}).catch(e => {
|
|
|
|
if (e.code === 'NO_SUCH_FILE') {
|
|
|
|
os.dialog({
|
|
|
|
type: 'error',
|
2020-12-26 02:47:36 +01:00
|
|
|
text: this.$ts.notFound
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
bytes
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.xrmjdkdw {
|
2021-04-22 15:29:33 +02:00
|
|
|
margin: var(--margin);
|
|
|
|
|
2021-10-02 16:11:21 +02:00
|
|
|
> .lookup {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
.urempief {
|
|
|
|
margin-top: var(--margin);
|
|
|
|
|
|
|
|
> .file {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: left;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .thumbnail {
|
|
|
|
width: 128px;
|
|
|
|
height: 128px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
margin-left: 0.3em;
|
|
|
|
padding: 8px;
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-02 16:11:21 +02:00
|
|
|
|
|
|
|
.xrmjdkdw-lookup {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
</style>
|