media_player_client/src/components/FileManageDialog.vue

815 lines
24 KiB
Vue
Raw Normal View History

2021-08-17 17:17:51 +08:00
<template>
<q-dialog persistent v-model="show_dialog" @before-hide="resetData">
<q-card
class="overflow-hidden"
style="overflow-y: scroll; max-width: 60vw; max-height: 80vh"
>
<q-card-section class="q-ma-none q-pa-sm">
<div class="row">
<div class="col-auto text-h6">
{{ $t("file manage") }}
</div>
<q-space />
<div>
<q-btn
:loading="loading"
flat
round
icon="close"
color="red"
v-close-popup
>
<q-tooltip>
{{ $t("close") }}
</q-tooltip>
</q-btn>
</div>
</div>
</q-card-section>
<q-separator />
<div class="row">
<div class="q-pa-md q-gutter-sm">
<q-breadcrumbs separator="/">
<q-breadcrumbs-el
:disable="uploading"
2021-08-17 17:17:51 +08:00
icon="home"
:label="default_path_label"
2021-08-17 17:17:51 +08:00
to="#"
@click="path = default_path"
2021-08-17 17:17:51 +08:00
/>
<q-breadcrumbs-el
v-for="(item, index) of paths.slice(1)"
:key="index"
:label="item.name"
:disable="uploading"
2021-08-17 17:17:51 +08:00
to="#"
@click="path = item.path"
/>
</q-breadcrumbs>
</div>
</div>
<q-separator />
<div class="row">
<q-btn-dropdown
stretch
flat
:label="default_path_label"
:disable="uploading"
class="q-mr-sm"
>
<q-list>
<q-item
v-for="(item, index) of disk_options"
:key="index"
clickable
v-close-popup
@click="default_path = item.value"
>
<q-item-section avatar>
<q-icon
:name="item.label == $t('local disk') ? 'desktop_mac' : 'usb'"
/>
</q-item-section>
<q-item-section> {{ item.label }} </q-item-section>
</q-item>
</q-list>
</q-btn-dropdown>
2021-08-17 17:17:51 +08:00
<q-btn
flat
icon="arrow_back"
:disable="path.trim() == '' || uploading"
2021-08-17 17:17:51 +08:00
@click="backToParentPath"
:label="$t('back')"
>
<q-tooltip>
{{ $t("back") }}
</q-tooltip>
</q-btn>
<q-btn
flat
icon="arrow_forward"
:disable="prev_path == '' || path == prev_path || uploading"
2021-08-17 17:17:51 +08:00
@click="(path = prev_path) && (prev_path = '')"
:label="$t('forward')"
>
<q-tooltip>
{{ $t("forward") }}
</q-tooltip>
</q-btn>
<q-btn
flat
icon="refresh"
@click="refresh_file_list"
:disable="uploading"
2021-08-17 17:17:51 +08:00
:label="$t('refresh')"
>
<q-tooltip>
{{ $t("refresh") }}
</q-tooltip>
</q-btn>
<q-btn
flat
icon="create_new_folder"
@click="onCreateNewFolder"
:disable="loading || uploading"
:label="$t('create folder')"
>
<q-tooltip>
{{ $t("create folder") }}
</q-tooltip>
</q-btn>
<q-btn
flat
v-if="!uploading"
2021-08-17 17:17:51 +08:00
icon="upload"
:label="$t('upload file')"
@click="uploading = true"
2021-08-17 17:17:51 +08:00
>
<q-tooltip>
{{ $t("upload file") }}
</q-tooltip>
</q-btn>
<q-btn
flat
icon="block"
v-if="uploading"
2021-08-17 17:17:51 +08:00
:label="$t('cancel upload file')"
@click="uploading = false"
2021-08-17 17:17:51 +08:00
>
<q-tooltip>
{{ $t("cancel upload file") }}
</q-tooltip>
</q-btn>
</div>
<q-separator />
<q-card-section
style="max-height: 50vh; width: 60vw; max-height: 80vh"
class="scroll q-pa-none q-ma-none"
>
<q-table
style="height: 69vh"
v-show="!uploading"
2021-08-17 17:17:51 +08:00
:rows="files"
:columns="columns"
virtual-scroll
color="primary"
row-key="name"
:loading="loading"
:rows-per-page-options="[0]"
:virtual-scroll-sticky-size-start="48"
@row-contextmenu="onContextMenu"
@row-dblclick="onTableItemDBClick"
>
<template v-slot:loading>
<q-inner-loading showing color="primary" />
</template>
<template v-slot:body-cell="props">
<q-td :props="props">
<div v-if="props.col.name == 'name'">
<q-icon
:name="props.row.is_directory ? 'folder' : 'description'"
style="color: #ffbe4a; font-size: 2.5em"
></q-icon>
{{
props.value.length > 60
? props.value.substr(0, 60) + "..."
2021-08-17 17:17:51 +08:00
: props.value
}}
<q-tooltip> {{ props.value }} </q-tooltip>
</div>
<div v-else-if="props.col.name != 'operator'">
{{ props.value }}
</div>
<div v-else>
<div v-if="status != 'select'">
<div v-if="props.row.can_write">
<a href="#" @click="(evt) => renameFile(props.row)">
{{ $t("rename") }}
<q-tooltip>
{{ $t("click") }}{{ $t("rename") }}
</q-tooltip>
</a>
&nbsp;&nbsp;&nbsp;&nbsp;
<a href="#" @click="(evt) => deleteFile(props.row)">
{{ $t("delete") }}
<q-tooltip>
{{ $t("click") }}{{ $t("delete") }}
</q-tooltip>
</a>
</div>
</div>
<div v-else-if="!props.row.is_directory">
<a href="#" @click="(evt) => selectFile(props.row)">
{{ $t("select file") }}
<q-tooltip>
{{ $t("click") }}{{ $t("select file") }}
</q-tooltip>
2021-08-17 17:17:51 +08:00
</a>
</div>
</div>
</q-td>
</template>
</q-table>
<div v-show="uploading" class="row q-ma-sm">
2021-08-17 17:17:51 +08:00
<q-space />
<q-uploader
ref="uploader"
style="height: 69vh; width: 70%"
2021-08-17 17:17:51 +08:00
:url="getUrl"
method="post"
:headers="generatorFileUploadHeaders"
:label="$t('select file') + ':'"
accept="*"
@start="onStartUpload"
2021-08-17 17:17:51 +08:00
@uploaded="onUploaded"
@failed="onFailed"
>
</q-uploader>
<q-space />
</div>
</q-card-section>
</q-card>
</q-dialog>
<div>
<q-menu :target="target_dom" v-model="show_context_menu">
<q-list>
<q-item
clickable
v-close-popup
@click="(evt) => copyStringToClipboard(current_file.name)"
>
<q-item-section avatar><q-icon name="file_copy" /></q-item-section>
<q-item-section>{{ $t("copy name") }}</q-item-section>
2021-08-17 17:17:51 +08:00
</q-item>
<q-item
clickable
v-close-popup
v-if="current_file && current_file.can_write && status != 'select'"
2021-08-17 17:17:51 +08:00
@click="(evt) => renameFile(current_file)"
>
<q-item-section avatar><q-icon name="edit" /></q-item-section>
<q-item-section>{{ $t("rename") }}</q-item-section>
</q-item>
<q-item
clickable
v-close-popup
v-if="current_file && current_file.can_write && status != 'select'"
2021-08-17 17:17:51 +08:00
@click="(evt) => deleteFile(current_file)"
>
<q-item-section avatar
><q-icon name="delete" color="red"
/></q-item-section>
<q-item-section>{{ $t("delete") }}</q-item-section>
</q-item>
<q-item
clickable
v-close-popup
v-if="status == 'select' && !current_file.is_directory"
@click="(evt) => selectFile(current_file)"
>
<q-item-section avatar><q-icon name="attach_file" /></q-item-section>
<q-item-section>{{ $t("select file") }}</q-item-section>
</q-item>
2021-08-17 17:17:51 +08:00
</q-list>
</q-menu>
</div>
</template>
<style scoped>
.disable_tree {
background: #9e9e9e;
cursor: wait;
pointer-events: none;
}
.limit_text_length {
overflow: auto;
white-space: nowrap;
text-overflow: clip;
max-width: 20vw;
}
a,
a:active,
a:visited,
a:link,
a:focus {
color: #428bca;
outline: none;
background: none;
text-decoration: none;
}
a:hover {
outline: none;
background: none;
text-decoration: underline;
}
</style>
<script lang="ts">
import { defineComponent, ref, watch, computed } from "vue";
import { useStore } from "src/store";
import { useQuasar, date, copyToClipboard } from "quasar";
import { useI18n } from "vue-i18n";
import { api } from "boot/axios";
import GlobalData from "src/common/GlobalData";
import FileEntity from "src/entities/FileEntity";
import { HttpProtocol } from "src/entities/HttpProtocol";
import NormalResult from "src/entities/NormalResult";
2021-08-17 17:17:51 +08:00
class _BreadcrumbItem {
name: string = "";
path: string = "";
constructor(name?: string, path?: string) {
this.name = name ?? "";
this.path = path ?? "";
if (this.path == "/" || this.path == "\\") {
this.path = "";
}
}
}
export default defineComponent({
name: "ComponentFileManageDialog",
setup() {
let $store = useStore();
let $q = useQuasar();
let $t = useI18n();
let show_dialog = ref(false);
let loading = ref(false);
let uploading = ref(false);
2021-08-17 17:17:51 +08:00
let files = ref(<FileEntity[]>[]);
let show_context_menu = ref(false);
let target_dom: any = ref(document.body.children[0]);
let current_file = ref(new FileEntity());
let default_path_label = ref($t.t("local disk"));
let default_path = ref("media");
let path = ref(default_path.value);
2021-08-17 17:17:51 +08:00
let prev_path = ref("");
let paths = ref([new _BreadcrumbItem("root", "")]);
let status = ref("normal");
let upload_url = ref("");
let uploader: any = ref(null);
let resolve: any = null;
let resolve_value: any = null;
const disk_options = ref([
{
label: $t.t("local disk"),
value: "media",
},
]);
for (let i = 1; i < 8; ++i) {
disk_options.value.push({
label: $t.t("usb") + i.toString(),
value: "/usb" + i.toString(),
});
}
2021-08-17 17:17:51 +08:00
const columns = [
{
align: "left",
name: "name",
required: true,
label: $t.t("file name"),
field: "name",
sortable: true,
},
{
name: "file_size",
align: "center",
label: $t.t("file size"),
field: (val: FileEntity) =>
val.is_directory ? null : Math.ceil((val ? val.file_size : 0) / 1000),
format: (val: any) => (val != null ? `${val} KB` : ""),
sortable: true,
},
{
name: "last_edit_time",
align: "center",
label: $t.t("last edit time"),
field: (val: FileEntity) =>
date.formatDate(
new Date((val ? val.last_edit_time : 0) * 1000),
"YYYY-MM-DD HH:mm:ss"
),
format: (val: any) => `${val}`,
sortable: true,
},
{
name: "can_read",
align: "center",
label: $t.t("can read"),
field: (val: FileEntity) => val && val.can_read,
format: (val: any) => `${$t.t(val ? "can true" : "can false")}`,
sortable: true,
},
{
name: "can_write",
align: "center",
label: $t.t("can write"),
field: (val: FileEntity) => val && val.can_write,
format: (val: any) => `${$t.t(val ? "can true" : "can false")}`,
sortable: true,
},
{
name: "can_exec",
align: "center",
label: $t.t("can exec"),
field: (val: FileEntity) => val && val.can_exec,
format: (val: any) => `${$t.t(val ? "can true" : "can false")}`,
sortable: true,
},
{
align: "center",
name: "operator",
label: $t.t("operator"),
},
];
const _request_list_files = async (path: string) => {
loading.value = true;
let client = GlobalData.getInstance().getCurrentClient();
if (client) {
let url = new URL(client.url);
url.port =
GlobalData.getInstance().applicationConfig?.httpserver_port ??
HttpProtocol.DefaultHttpPort.toString();
url.pathname = HttpProtocol.RequestPathListFile;
url.protocol = "http:";
url.searchParams.append("path", path);
return await api.get(url.toString());
}
loading.value = false;
return null;
};
const _show_files = (response: any) => {
if (response) {
if (response.status == 200) {
const file_entity = response.data as FileEntity[];
if (file_entity) {
files.value = file_entity;
} else {
console.error("data is not typeof FileEntity!", response);
}
} else {
console.warn(response);
}
}
loading.value = false;
};
const refresh_file_list_async = async () => {
const response = await _request_list_files(path.value);
_show_files(response);
};
const refresh_file_list = () => {
refresh_file_list_async();
};
const selectFile = async (file: FileEntity) => {
resolve_value = {
file,
path: path.value,
};
show_dialog.value = false;
};
2021-08-17 17:17:51 +08:00
watch(
() => path.value,
(newValue: string, oldValue: string) => {
if (!newValue) {
path.value = oldValue ?? default_path.value;
return;
}
2021-08-17 17:17:51 +08:00
paths.value = [];
let parent_item = null;
2021-08-17 17:17:51 +08:00
for (let item of newValue.split("/")) {
if (item.trim() == "") {
continue;
}
let temp: _BreadcrumbItem = new _BreadcrumbItem(
item,
(parent_item
? parent_item.path + "/"
: newValue.length > 0
? newValue[0] == "/" || "\\"
? "/"
: ""
: "") + item
);
2021-08-17 17:17:51 +08:00
paths.value.push(temp);
parent_item = temp;
}
if (paths.value.length < 1) {
paths.value.push(new _BreadcrumbItem("local disk", "media"));
2021-08-17 17:17:51 +08:00
}
refresh_file_list();
}
);
watch(
() => status.value,
(newValue: string) => {
switch (newValue) {
case "normal":
case "select":
break;
default:
console.log("status error!", status.value);
status.value = "normal";
}
}
);
watch(
() => default_path.value,
(newValue: string) => {
let item = disk_options.value.find((item) => item.value == newValue);
if (item && item.value && item.label) {
default_path_label.value = item.label;
path.value = default_path.value;
}
}
);
2021-08-17 17:17:51 +08:00
return {
show_dialog,
loading,
uploading,
2021-08-17 17:17:51 +08:00
files,
columns,
show_context_menu,
default_path,
default_path_label,
2021-08-17 17:17:51 +08:00
path,
prev_path,
paths,
target_dom,
upload_url,
uploader,
disk_options,
2021-08-17 17:17:51 +08:00
current_file,
refresh_file_list,
refresh_file_list_async,
status,
showDialog(in_status: string) {
status.value = in_status;
2021-08-17 17:17:51 +08:00
refresh_file_list();
show_dialog.value = true;
},
showDialogAsync(in_status: string) {
return new Promise((_resolve, _reject) => {
status.value = in_status;
refresh_file_list();
show_dialog.value = true;
resolve = _resolve;
});
},
2021-08-17 17:17:51 +08:00
generatorFileUploadHeaders(files: File[]) {
if (files.length > 0) {
return [
{
name: HttpProtocol.kHeaderXProductName,
value: HttpProtocol.kHeaderDefaultValueXProductName,
},
{
name: HttpProtocol.kHeaderXFileLength,
value: files[0].size,
},
];
}
return [];
},
resetData() {
loading.value = false;
files.value = [];
2021-08-24 15:20:01 +08:00
path.value = default_path.value;
2021-08-17 17:17:51 +08:00
status.value = "normal";
upload_url.value = "";
if (resolve) {
resolve(resolve_value);
}
resolve_value = null;
2021-08-17 17:17:51 +08:00
},
async onCreateNewFolder() {
let url = GlobalData.getInstance().createCurrentRequestUrl();
if (url) {
$q.dialog({
title: $t.t("create folder"),
message: $t.t("input folder name") + ":",
prompt: {
model: "",
2021-12-20 17:39:51 +08:00
isValid: (val: string) => !!val && val.trim().length > 0,
type: "text",
},
cancel: true,
persistent: true,
}).onOk(async (data: string) => {
if (url) {
url.pathname = HttpProtocol.RequestPathCreateDirectory;
let response = (
await api.post(url.toString(), {
base_dir: path.value,
dir_name: data,
})
).data as NormalResult;
if (response && response.success) {
refresh_file_list();
$q.notify({
type: "positive",
message: $t.t("create folder") + $t.t("success") + "!",
position: "top",
timeout: 1500,
});
} else {
$q.notify({
type: "warning",
message:
$t.t("create folder") +
$t.t("fail") +
"!" +
(response ? response.message : ""),
position: "top",
timeout: 1500,
});
}
}
});
}
},
selectFile,
async deleteFile(file: FileEntity) {
let url = GlobalData.getInstance().createCurrentRequestUrl();
if (url) {
url.pathname = HttpProtocol.RequestPathDeleteFile;
let response = null;
try {
response = (
await api.delete(url.toString(), {
data: {
base_dir: path.value,
file_name: file.name,
},
})
).data as NormalResult;
} catch (e) {
console.log(e);
}
if (response && response.success) {
refresh_file_list();
$q.notify({
type: "positive",
message: $t.t("delete file") + $t.t("success") + "!",
position: "top",
timeout: 1500,
});
} else {
$q.notify({
type: "warning",
message:
$t.t("delete file") +
$t.t("fail") +
"!" +
(response ? response.message : ""),
position: "top",
timeout: 1500,
});
}
}
},
renameFile(file: FileEntity) {
let url = GlobalData.getInstance().createCurrentRequestUrl();
if (url) {
$q.dialog({
title: $t.t("rename"),
message: $t.t("input new file name") + ":",
prompt: {
model: file.name,
2021-12-20 17:39:51 +08:00
isValid: (val: string) => !!val && val.trim().length > 0,
type: "text",
},
cancel: true,
persistent: true,
}).onOk(async (data: string) => {
if (data == file.name) {
return;
}
if (url) {
url.pathname = HttpProtocol.RequestPathRenameFile;
url.searchParams.append(
"type",
HttpProtocol.RequestPathRenameFile
);
let response = (
await api.put(url.toString(), {
base_dir: path.value,
file_name: file.name,
new_file_name: data,
})
).data as NormalResult;
if (response && response.success) {
refresh_file_list();
$q.notify({
type: "positive",
message: $t.t("file rename") + $t.t("success") + "!",
position: "top",
timeout: 1500,
});
} else {
$q.notify({
type: "warning",
message:
$t.t("file rename") +
$t.t("fail") +
"!" +
(response ? response.message : ""),
position: "top",
timeout: 1500,
});
}
}
});
}
},
2021-08-17 17:17:51 +08:00
copyStringToClipboard(value: string) {
copyToClipboard(value);
},
onContextMenu(evt: PointerEvent, row: FileEntity, index: number) {
evt.preventDefault();
evt.stopPropagation();
target_dom.value = evt.srcElement;
current_file.value = row;
if (row.can_write) {
show_context_menu.value = true;
}
},
onTableItemDBClick(evt: PointerEvent, row: FileEntity, index: number) {
if (row && row.is_directory) {
path.value += "/" + row.name;
} else if (status.value == "select" && !row.is_directory) {
selectFile(row);
2021-08-17 17:17:51 +08:00
}
},
backToParentPath() {
const pos = path.value.lastIndexOf("/");
if (pos != -1) {
prev_path.value = path.value;
path.value = path.value.substr(0, pos);
}
},
getUrl(file: File[]) {
let url = GlobalData.getInstance().createCurrentRequestUrl();
if (url) {
2021-08-17 17:17:51 +08:00
url.pathname = HttpProtocol.RequestUploadFile;
url.searchParams.append("type", HttpProtocol.HttpUploadTypeNormal);
url.searchParams.append("base_dir", path.value);
return url.toString();
}
return "#";
},
onStartUpload() {
loading.value = true;
},
2021-08-17 17:17:51 +08:00
onUploaded() {
uploading.value = false;
uploader.value.reset();
refresh_file_list();
2021-08-17 17:17:51 +08:00
$q.notify({
type: "positive",
message: $t.t("file upload") + $t.t("success") + "!",
position: "top",
timeout: 1500,
2021-08-17 17:17:51 +08:00
});
loading.value = false;
2021-08-17 17:17:51 +08:00
},
onFailed(info: any) {
console.log(info);
$q.notify({
type: "warning",
message: $t.t("file upload") + $t.t("fail") + "!",
position: "top",
timeout: 1500,
2021-08-17 17:17:51 +08:00
});
loading.value = false;
loading.value = false;
2021-08-17 17:17:51 +08:00
},
};
},
});
</script>