tellform/public/modules/forms/directives/configure-form.client.directive.js

87 lines
3.5 KiB
JavaScript
Raw Normal View History

2015-07-03 23:47:14 +00:00
'use strict';
2015-07-27 18:11:43 +00:00
angular.module('forms').directive('configureFormDirective', ['$rootScope', '$http', 'Upload', '$timeout', 'timeCounter', 'Auth', 'FormFields',
function ($rootScope, $http, Upload, $timeout, timeCounter, Auth, FormFields) {
2015-07-03 23:47:14 +00:00
return {
controller: function($scope){
$scope.log = '';
$scope.pdfLoading = false;
$scope.languages = $rootScope.languages;
2015-07-03 23:47:14 +00:00
var _current_upload = null;
2015-07-06 04:29:05 +00:00
$scope.resetForm = $rootScope.resetForm;
$scope.update = $rootScope.update;
2015-07-04 04:57:06 +00:00
var _unbindedPdfFields = $scope.pdfFields;
//DAVID: TODO: finish this so we can create a Form.pdfFieldMap
// $scope.getUnbindedPdfFields = function(fieldType){
// _unbindedPdfFields = $scope.pdfFields
// }
2015-07-03 23:47:14 +00:00
//PDF Functions
$scope.cancelUpload = function(){
_current_upload.abort();
$scope.pdfLoading = false;
$scope.removePDF();
};
$scope.removePDF = function(){
$scope.myform.pdf = null;
$scope.myform.isGenerated = false;
$scope.myform.autofillPDFs = false;
2015-07-03 23:47:14 +00:00
console.log('form.pdf: '+$scope.myform.pdf+' REMOVED');
2015-07-03 23:47:14 +00:00
};
$scope.uploadPDF = function(files) {
if (files && files.length) {
// for (var i = 0; i < files.length; i++) {
var file = files[0];
2015-07-27 18:11:43 +00:00
console.log(file);
2015-07-03 23:47:14 +00:00
_current_upload = Upload.upload({
url: '/upload/pdf',
fields: {
'user': $scope.user,
'form': $scope.myform
2015-07-03 23:47:14 +00:00
},
file: file
}).progress(function (evt) {
var progressPercentage = parseInt(100.0 * evt.loaded / evt.total);
$scope.log = 'progress: ' + progressPercentage + '% ' +
evt.config.file.name + '\n' + $scope.log;
$scope.pdfLoading = true;
}).success(function (data, status, headers, config) {
$scope.log = 'file ' + data.originalname + ' uploaded as '+ data.name +'. JSON: ' + JSON.stringify(data) + '\n' + $scope.log;
$scope.myform.pdf = angular.fromJson(angular.toJson(data));
2015-07-27 18:11:43 +00:00
console.log($scope.myform.pdf);
2015-07-03 23:47:14 +00:00
$scope.pdfLoading = false;
console.log($scope.log);
2015-07-27 18:11:43 +00:00
if(!$scope.$$phase && !$scope.$digest){
2015-07-03 23:47:14 +00:00
$scope.$apply();
}
}).error(function(err){
$scope.pdfLoading = false;
console.log('Error occured during upload.\n');
console.log(err);
});
}
};
},
templateUrl: './modules/forms/views/directiveViews/form/configure-form.html',
restrict: 'E',
scope: {
myform:'=',
2015-07-04 04:57:06 +00:00
user:'=',
pdfFields:'@',
formFields:'@'
2015-07-03 23:47:14 +00:00
}
};
}
]);