refactor: 重构文件目录系统

This commit is contained in:
SADYX
2024-07-15 14:27:34 +08:00
parent 83fc308eeb
commit 10726d7c4e
6 changed files with 418 additions and 223 deletions

View File

@@ -14,7 +14,7 @@ export const useUpload = () => {
// 是否使用前端直连上传
const isClientUpload = UPLOAD_TYPE.CLIENT === import.meta.env.VITE_UPLOAD_TYPE
// 重写ElUpload上传方法
const httpRequest = async (options: UploadRequestOptions) => {
const httpRequest = async (options: UploadRequestOptions, params?: any) => {
// 模式一:前端上传
if (isClientUpload) {
// 1.1 生成文件名称
@@ -22,21 +22,23 @@ export const useUpload = () => {
// 1.2 获取文件预签名地址
const presignedInfo = await FileApi.getFilePresignedUrl(fileName)
// 1.3 上传文件(不能使用 ElUpload 的 ajaxUpload 方法的原因:其使用的是 FormData 上传Minio 不支持)
return axios.put(presignedInfo.uploadUrl, options.file, {
headers: {
'Content-Type': options.file.type,
}
}).then(() => {
// 1.4. 记录文件信息到后端(异步)
createFile(presignedInfo, fileName, options.file)
// 通知成功,数据格式保持与后端上传的返回结果一致
return { data: presignedInfo.url }
})
return axios
.put(presignedInfo.uploadUrl, options.file, {
headers: {
'Content-Type': options.file.type
}
})
.then(() => {
// 1.4. 记录文件信息到后端(异步)
createFile(presignedInfo, fileName, options.file)
// 通知成功,数据格式保持与后端上传的返回结果一致
return { data: presignedInfo.url }
})
} else {
// 模式二:后端上传
// 重写 el-upload httpRequest 文件上传成功会走成功的钩子,失败走失败的钩子
return new Promise((resolve, reject) => {
FileApi.updateFileEx({ file: options.file })
FileApi.updateFileEx({ file: options.file }, params)
.then((res) => {
if (res.code === 0) {
resolve(res)