2020-03-30 15:34:56 +02:00
|
|
|
|
import Uploader from '../../shared/activestorage/uploader';
|
2020-04-15 16:20:31 +02:00
|
|
|
|
import { show, hide, toggle } from '@utils';
|
2020-04-15 16:34:25 +02:00
|
|
|
|
import { FAILURE_CONNECTIVITY } from '../../shared/activestorage/file-upload-error';
|
2020-03-30 15:34:56 +02:00
|
|
|
|
|
|
|
|
|
// Given a file input in a champ with a selected file, upload a file,
|
|
|
|
|
// then attach it to the dossier.
|
|
|
|
|
//
|
|
|
|
|
// On success, the champ is replaced by an HTML fragment describing the attachment.
|
|
|
|
|
// On error, a error message is displayed above the input.
|
|
|
|
|
export default class AutoUploadController {
|
|
|
|
|
constructor(input, file) {
|
|
|
|
|
this.input = input;
|
|
|
|
|
this.file = file;
|
2020-04-15 16:20:31 +02:00
|
|
|
|
this.uploader = new Uploader(
|
|
|
|
|
input,
|
|
|
|
|
file,
|
|
|
|
|
input.dataset.directUploadUrl,
|
|
|
|
|
input.dataset.autoAttachUrl
|
|
|
|
|
);
|
2020-03-30 15:34:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-15 16:29:15 +02:00
|
|
|
|
// Create, upload and attach the file.
|
|
|
|
|
// On failure, display an error message and throw a FileUploadError.
|
2020-03-30 15:34:56 +02:00
|
|
|
|
async start() {
|
|
|
|
|
try {
|
|
|
|
|
this._begin();
|
2020-04-15 16:20:31 +02:00
|
|
|
|
await this.uploader.start();
|
|
|
|
|
this._succeeded();
|
2020-03-30 15:34:56 +02:00
|
|
|
|
} catch (error) {
|
|
|
|
|
this._failed(error);
|
|
|
|
|
throw error;
|
|
|
|
|
} finally {
|
|
|
|
|
this._done();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_begin() {
|
|
|
|
|
this.input.disabled = true;
|
|
|
|
|
this._hideErrorMessage();
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-15 16:20:31 +02:00
|
|
|
|
_succeeded() {
|
|
|
|
|
this.input.value = null;
|
2020-03-30 15:34:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_failed(error) {
|
|
|
|
|
if (!document.body.contains(this.input)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-15 16:20:31 +02:00
|
|
|
|
this.uploader.progressBar.destroy();
|
2020-03-30 15:34:56 +02:00
|
|
|
|
|
2020-04-15 16:20:31 +02:00
|
|
|
|
let message = this._messageFromError(error);
|
|
|
|
|
this._displayErrorMessage(message);
|
2020-03-30 15:34:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_done() {
|
|
|
|
|
this.input.disabled = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_messageFromError(error) {
|
2020-04-15 16:29:15 +02:00
|
|
|
|
let message = error.message || error.toString();
|
|
|
|
|
let canRetry = error.status && error.status != 422;
|
|
|
|
|
|
2020-04-15 16:34:25 +02:00
|
|
|
|
if (error.failureReason == FAILURE_CONNECTIVITY) {
|
|
|
|
|
return {
|
|
|
|
|
title: 'Le fichier n’a pas pu être envoyé.',
|
|
|
|
|
description: 'Vérifiez votre connexion à Internet, puis ré-essayez.',
|
|
|
|
|
retry: true
|
|
|
|
|
};
|
|
|
|
|
} else {
|
|
|
|
|
return {
|
|
|
|
|
title: 'Le fichier n’a pas pu être envoyé.',
|
|
|
|
|
description: message,
|
|
|
|
|
retry: canRetry
|
|
|
|
|
};
|
2020-03-30 15:34:56 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-15 16:20:31 +02:00
|
|
|
|
_displayErrorMessage(message) {
|
2020-03-30 15:34:56 +02:00
|
|
|
|
let errorNode = this.input.parentElement.querySelector('.attachment-error');
|
|
|
|
|
if (errorNode) {
|
|
|
|
|
show(errorNode);
|
|
|
|
|
errorNode.querySelector('.attachment-error-title').textContent =
|
|
|
|
|
message.title || '';
|
|
|
|
|
errorNode.querySelector('.attachment-error-description').textContent =
|
|
|
|
|
message.description || '';
|
|
|
|
|
toggle(errorNode.querySelector('.attachment-error-retry'), message.retry);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_hideErrorMessage() {
|
|
|
|
|
let errorElement = this.input.parentElement.querySelector(
|
|
|
|
|
'.attachment-error'
|
|
|
|
|
);
|
|
|
|
|
if (errorElement) {
|
|
|
|
|
hide(errorElement);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|