Add progress bar to model uploads

This commit is contained in:
Paul Chavard 2019-02-13 14:16:22 +01:00
parent 1e8bc3e14c
commit 5e806aa39e
7 changed files with 171 additions and 82 deletions

View file

@ -1,5 +1,5 @@
import { getJSON, debounce } from '@utils';
import { DirectUpload } from 'activestorage';
import Uploader from '../../shared/activestorage/uploader';
export default {
props: ['state', 'index', 'item'],
@ -181,7 +181,12 @@ export default {
const file = input.files[0];
if (file) {
this.isUploading = true;
uploadFile(this.state.directUploadUrl, file).then(({ signed_id }) => {
const controller = new Uploader(
input,
file,
this.state.directUploadUrl
);
controller.start().then(signed_id => {
this.pieceJustificativeTemplate = signed_id;
this.isUploading = false;
this.debouncedSave();
@ -247,17 +252,3 @@ const EXCLUDE_FROM_REPETITION = [
function castBoolean(value) {
return value && value != 0;
}
function uploadFile(directUploadUrl, file) {
const upload = new DirectUpload(file, directUploadUrl);
return new Promise((resolve, reject) => {
upload.create((error, blob) => {
if (error) {
reject(error);
} else {
resolve(blob);
}
});
});
}