mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 10:26:45 +00:00
fix(client/upload): fix upload mutiple files always uploading status (#974)
This commit is contained in:
parent
b9910cdc1f
commit
8df527f7e9
@ -167,12 +167,13 @@ export function useUploadProps<T extends IUploadProps = UploadProps>({ serviceEr
|
||||
props.onChange?.(normalizeFileList([...param.fileList]));
|
||||
};
|
||||
|
||||
const form = useForm();
|
||||
|
||||
const api = useAPIClient();
|
||||
|
||||
return {
|
||||
...props,
|
||||
// in customRequest method can't modify form's status(e.g: form.disabled=true )
|
||||
// that will be trigger Upload component(actual Underlying is AjaxUploader component )'s componentWillUnmount method
|
||||
// which will cause multiple files upload fail
|
||||
customRequest({ action, data, file, filename, headers, onError, onProgress, onSuccess, withCredentials }) {
|
||||
const formData = new FormData();
|
||||
if (data) {
|
||||
@ -181,7 +182,6 @@ export function useUploadProps<T extends IUploadProps = UploadProps>({ serviceEr
|
||||
});
|
||||
}
|
||||
formData.append(filename, file);
|
||||
form.disabled = true;
|
||||
api.axios
|
||||
.post(action, formData, {
|
||||
withCredentials,
|
||||
@ -194,9 +194,7 @@ export function useUploadProps<T extends IUploadProps = UploadProps>({ serviceEr
|
||||
onSuccess(data, file);
|
||||
})
|
||||
.catch(onError)
|
||||
.finally(() => {
|
||||
form.disabled = false;
|
||||
});
|
||||
.finally(() => {});
|
||||
|
||||
return {
|
||||
abort() {
|
||||
|
Loading…
Reference in New Issue
Block a user