mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
export const formSubmissionValidation = {
|
|
/**
|
|
* Returns a boolean if there has been at least one file uploaded
|
|
* successfully without it being deleted or canceled.
|
|
* @param {array of files} files provided by react fine uploader
|
|
* @return {boolean}
|
|
*/
|
|
atLeastOneUploadedFile(files) {
|
|
files = files.filter((file) => file.status !== 'deleted' && file.status !== 'canceled');
|
|
if (files.length > 0 && files[0].status === 'upload successful') {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* File submission for the form is optional, but if the user decides to submit a file
|
|
* the form is not ready until there are no more files currently uploading.
|
|
* @param {array of files} files files provided by react fine uploader
|
|
* @return {boolean} [description]
|
|
*/
|
|
fileOptional(files) {
|
|
let uploadingFiles = files.filter((file) => file.status === 'submitting');
|
|
|
|
if (uploadingFiles.length === 0) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}; |