1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-11-10 23:53:31 -05:00
shimapan/public/js/components/UploadComp.js
2017-10-11 10:15:19 -04:00

44 lines
1.4 KiB
JavaScript

function UploadController($scope, Upload, $timeout) {
$scope.errToString = function(err) {
if (err === 'maxSize')
return "File too large.";
else
return err;
};
$scope.uploadFiles = function(files, errorFiles) {
$scope.files = $scope.files ? $scope.files.concat(files) : files;
$scope.errorFiles = $scope.errorFiles ? $scope.errorFiles.concat(errorFiles) : errorFiles;
angular.forEach(files, function (file) {
file.upload = Upload.upload({
url: '/upload',
method: 'POST',
// data: loginToken, unique id, something
file: file
});
file.upload.then(
function (response) {
$timeout(function () {
file.result = response.data;
});
},
function (response) {
if (response.status > 0)
$scope.errorMsg = response.status + ': ' + response.data;
},
function (evt) {
file.progress = Math.floor(Math.min(100.0, 100 * evt.loaded / evt.total));
}
);
});
};
}
angular.module('UploadComp', ['ngFileUpload']).component('uploadComponent', {
templateUrl: '/views/upload-form.html',
controller: UploadController,
controllerAs: 'vm'
});