Merge pull request #5013 from betagouv/auto-upload-fix-retry

Usager : améliorations sur le bouton "Réessayer l'envoi" des pièces justificatives
This commit is contained in:
Pierre de La Morinerie 2020-04-08 17:00:58 +02:00 committed by GitHub
commit b290564df2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 5 deletions

View file

@ -93,7 +93,18 @@ export default class AutoUploadController {
this.input.disabled = false;
}
_isError422(error) {
// Ajax errors have an xhr attribute
if (error && error.xhr && error.xhr.status == 422) return true;
// Rails DirectUpload errors are returned as a String, e.g. 'Error creating Blob for "Demain.txt". Status: 422'
if (error && error.toString().includes('422')) return true;
return false;
}
_messageFromError(error) {
let allowRetry = !this._isError422(error);
if (
error.xhr &&
error.xhr.status == 422 &&
@ -104,13 +115,13 @@ export default class AutoUploadController {
return {
title: error.response.errors[0],
description: '',
retry: false
retry: allowRetry
};
} else {
return {
title: 'Une erreur sest produite pendant lenvoi du fichier.',
description: error.message || error.toString(),
retry: true
retry: allowRetry
};
}
}

View file

@ -16,8 +16,8 @@ delegate('change', fileInputSelector, event => {
});
const retryButtonSelector = `button.attachment-error-retry`;
delegate('click', retryButtonSelector, event => {
const inputSelector = event.target.dataset.inputTarget;
delegate('click', retryButtonSelector, function() {
const inputSelector = this.dataset.inputTarget;
const input = document.querySelector(inputSelector);
startUpload(input);
});

View file

@ -1,6 +1,6 @@
try {
window.scroll({ top: 0, left: 0, behavior: 'smooth' });
} catch {
} catch(e) {
window.scroll(0, 0);
}
<%= remove_element('#user-satisfaction') %>