2022-06-07 18:10:10 +08:00
|
|
|
/* global ActiveStorage GLOBAL_CONSTANTS Promise I18n */
|
2022-05-19 14:51:39 +08:00
|
|
|
|
|
|
|
export default {
|
2022-05-19 17:13:34 +08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
viewModeOrder: {
|
|
|
|
inline: 0,
|
|
|
|
thumbnail: 1,
|
|
|
|
list: 2
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
2022-05-19 14:51:39 +08:00
|
|
|
methods: {
|
2022-05-24 21:54:22 +08:00
|
|
|
dropFile(e) {
|
|
|
|
if (!this.showFileModal && e.dataTransfer && e.dataTransfer.files.length) {
|
|
|
|
this.dragingFile = false;
|
|
|
|
this.uploadFiles(e.dataTransfer.files);
|
|
|
|
}
|
|
|
|
},
|
2022-05-19 14:51:39 +08:00
|
|
|
uploadFiles(files) {
|
|
|
|
const filesToUploadCntr = files.length;
|
|
|
|
let filesUploadedCntr = 0;
|
|
|
|
this.showFileModal = false;
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
$(files).each((_, file) => {
|
2022-05-23 19:40:23 +08:00
|
|
|
const fileObject = {
|
|
|
|
attributes: {
|
|
|
|
progress: 0,
|
|
|
|
view_mode: this.step.attributes.assets_view_mode,
|
|
|
|
file_name: file.name,
|
|
|
|
uploading: true,
|
|
|
|
asset_order: this.viewModeOrder[this.step.attributes.assets_view_mode]
|
|
|
|
},
|
|
|
|
directUploadWillStoreFileWithXHR(request) {
|
|
|
|
request.upload.addEventListener('progress', (e) => {
|
|
|
|
// Progress checking
|
|
|
|
this.attributes.progress = parseInt((e.loaded / e.total) * 100, 10);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2022-05-19 14:51:39 +08:00
|
|
|
if (file.size > GLOBAL_CONSTANTS.FILE_MAX_SIZE_MB * 1024 * 1024) {
|
2022-06-07 18:10:10 +08:00
|
|
|
fileObject.error = I18n.t('protocols.steps.attachments.new.file_too_big');
|
2022-05-23 19:40:23 +08:00
|
|
|
this.attachments.push(fileObject);
|
2022-05-19 14:51:39 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-01 19:57:17 +08:00
|
|
|
if (this.step.attributes.storage_limit && (this.step.attributes.storage_limit.used >= this.step.attributes.storage_limit.total)) {
|
|
|
|
fileObject.error = I18n.t('protocols.steps.attachments.new.no_more_space');
|
|
|
|
this.attachments.push(fileObject);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-23 19:40:23 +08:00
|
|
|
const upload = new ActiveStorage.DirectUpload(file, this.step.attributes.urls.direct_upload_url, fileObject);
|
|
|
|
|
2022-07-15 16:13:55 +08:00
|
|
|
fileObject.isNewUpload = true;
|
2022-05-23 19:40:23 +08:00
|
|
|
this.attachments.push(fileObject);
|
2022-05-19 14:51:39 +08:00
|
|
|
|
|
|
|
upload.create((error, blob) => {
|
|
|
|
if (error) {
|
2022-06-07 18:10:10 +08:00
|
|
|
fileObject.error = I18n.t('protocols.steps.attachments.new.general_error');
|
2022-05-19 14:51:39 +08:00
|
|
|
reject(error);
|
|
|
|
} else {
|
|
|
|
const signedId = blob.signed_id;
|
|
|
|
$.post(this.step.attributes.urls.upload_attachment_url, {
|
|
|
|
signed_blob_id: signedId
|
|
|
|
}, (result) => {
|
2022-05-23 19:40:23 +08:00
|
|
|
fileObject.id = result.data.id;
|
|
|
|
fileObject.attributes = result.data.attributes;
|
2022-08-01 19:57:17 +08:00
|
|
|
}).error(() => {
|
|
|
|
fileObject.error = I18n.t('protocols.steps.attachments.new.general_error');
|
2022-05-19 14:51:39 +08:00
|
|
|
});
|
|
|
|
filesUploadedCntr += 1;
|
|
|
|
if (filesUploadedCntr === filesToUploadCntr) {
|
2022-07-15 19:46:48 +08:00
|
|
|
this.$emit('stepUpdated');
|
2022-05-19 14:51:39 +08:00
|
|
|
resolve('done');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2022-05-19 17:13:34 +08:00
|
|
|
},
|
|
|
|
changeAttachmentsOrder(order) {
|
|
|
|
this.step.attributes.assets_order = order;
|
|
|
|
$.post(this.step.attributes.urls.update_view_state_step_url, {
|
|
|
|
assets: { order }
|
|
|
|
});
|
|
|
|
},
|
|
|
|
changeAttachmentsViewMode(viewMode) {
|
|
|
|
this.step.attributes.assets_view_mode = viewMode;
|
|
|
|
this.attachments.forEach((attachment) => {
|
|
|
|
this.$set(attachment.attributes, 'view_mode', viewMode);
|
|
|
|
this.$set(attachment.attributes, 'asset_order', this.viewModeOrder[viewMode]);
|
|
|
|
});
|
|
|
|
$.post(this.step.attributes.urls.update_asset_view_mode_url, {
|
|
|
|
assets_view_mode: viewMode
|
|
|
|
});
|
|
|
|
},
|
|
|
|
updateAttachmentViewMode(id, viewMode) {
|
|
|
|
const attachment = this.attachments.find(e => e.id === id);
|
|
|
|
this.$set(attachment.attributes, 'view_mode', viewMode);
|
|
|
|
this.$set(attachment.attributes, 'asset_order', this.viewModeOrder[viewMode]);
|
2022-05-19 14:51:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|