Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 实现同时拖拽上传文件和文件夹 #3135

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/lang/modules/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@ const message = {
clearList: 'Clear list',
deleteRecycleHelper: 'Are you sure you want to permanently delete the following files?',
typeErrOrEmpty: '[{0}] file type is wrong or empty folder',
dropHelper: 'Drag [{0}] here, or',
dropHelper: 'Drag the files you want to upload here',
},
ssh: {
autoStart: 'Auto Start',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lang/modules/tw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ const message = {
clearList: '清空列表',
deleteRecycleHelper: '確定永久刪除以下文件?',
typeErrOrEmpty: '【{0}】 檔案類型錯誤或為空資料夾',
dropHelper: '將【{0}】拖曳到此處,或',
dropHelper: '將需要上傳的文件拖曳到此處',
},
zhengkunwang223 marked this conversation as resolved.
Show resolved Hide resolved
ssh: {
autoStart: '開機自啟',
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lang/modules/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ const message = {
clearList: '清空列表',
deleteRecycleHelper: '确定永久删除以下文件?',
typeErrOrEmpty: '【{0}】 文件类型错误或为空文件夹',
dropHelper: '将【{0}】拖拽到此处,或者',
dropHelper: '将需要上传的文件拖曳到此处',
},
ssh: {
autoStart: '开机自启',
Expand Down
86 changes: 78 additions & 8 deletions frontend/src/views/host/file-management/upload/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,21 @@
<el-button @click="clearFiles">{{ $t('file.clearList') }}</el-button>
</div>

<div>
<div class="el-upload-dragger" @dragover="handleDragover" @drop="handleDrop" @dragleave="handleDragleave">
<div class="flex items-center justify-center h-52">
<div>
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
<div class="el-upload__text">
{{ $t('file.dropHelper') }}
</div>
</div>
</div>
</div>
</div>

<el-upload
action="#"
drag
:auto-upload="false"
ref="uploadRef"
:on-change="fileOnChange"
Expand All @@ -30,17 +42,14 @@
:show-file-list="false"
multiple
v-model:file-list="uploaderFiles"
:limit="10"
>
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
<div class="el-upload__text">
{{ $t('file.dropHelper', [$t('file.' + uploadType)]) }}
<em>{{ $t('database.clickHelper') }}</em>
</div>
<template #tip>
<el-text>{{ uploadHelper }}</el-text>
<el-progress v-if="loading" text-inside :stroke-width="20" :percentage="uploadPrecent"></el-progress>
</template>
</el-upload>

<div>
<p
v-for="(item, index) in uploaderFiles"
Expand Down Expand Up @@ -126,6 +135,66 @@ const removeFile = (index: number) => {
uploaderFiles.value.splice(index, 1);
};

const handleDragover = (event: DragEvent) => {
event.preventDefault();
};

const handleDrop = (event: DragEvent) => {
event.preventDefault();
const items = event.dataTransfer.items;

if (items) {
for (let i = 0; i < items.length; i++) {
const entry = items[i].webkitGetAsEntry();
if (entry) {
traverseFileTree(entry);
}
}
}
};

const convertFileToUploadFile = (file: File, path: string): UploadFile => {
const uid = Date.now();

const uploadRawFile: UploadRawFile = new File([file], file.name, {
type: file.type,
lastModified: file.lastModified,
}) as UploadRawFile;
uploadRawFile.uid = uid;

let fileName = file.name;
if (path != '') {
fileName = path + file.name;
}
return {
name: fileName,
size: file.size,
status: 'ready',
uid: uid,
raw: uploadRawFile,
};
};

const traverseFileTree = (item: any, path = '') => {
path = path || '';
if (item.isFile) {
item.file((file: File) => {
uploaderFiles.value.push(convertFileToUploadFile(file, path));
});
} else if (item.isDirectory) {
const dirReader = item.createReader();
dirReader.readEntries((entries) => {
for (let i = 0; i < entries.length; i++) {
traverseFileTree(entries[i], path + item.name + '/');
}
});
}
};

const handleDragleave = (event) => {
event.preventDefault();
};

const fileOnChange = (_uploadFile: UploadFile, uploadFiles: UploadFiles) => {
if (_uploadFile.size == 64 || _uploadFile.size == 0) {
uploaderFiles.value = uploadFiles;
Expand Down Expand Up @@ -172,8 +241,9 @@ const submit = async () => {
if (file.raw.webkitRelativePath != '') {
formData.append('path', path.value + '/' + getPathWithoutFilename(file.raw.webkitRelativePath));
} else {
formData.append('path', path.value);
formData.append('path', path.value + '/' + getPathWithoutFilename(file.name));
}
uploadPrecent.value = 0;
await UploadFileData(formData, {
onUploadProgress: (progressEvent) => {
const progress = Math.round((progressEvent.loaded / progressEvent.total) * 100);
Expand All @@ -197,7 +267,7 @@ const submit = async () => {
if (file.raw.webkitRelativePath != '') {
formData.append('path', path.value + '/' + getPathWithoutFilename(file.raw.webkitRelativePath));
} else {
formData.append('path', path.value);
formData.append('path', path.value + '/' + getPathWithoutFilename(file.name));
}
formData.append('chunk', chunk);
formData.append('chunkIndex', c.toString());
Expand Down
Loading