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

94 lines
3.8 KiB
JavaScript
Raw Normal View History

2015-07-03 23:47:14 +00:00
'use strict';
2015-11-12 22:24:26 +00:00
angular.module('forms').directive('configureFormDirective', ['$rootScope', '$http', 'Upload', 'CurrentForm',
function ($rootScope, $http, Upload, CurrentForm) {
2015-07-03 23:47:14 +00:00
return {
2015-08-21 00:17:14 +00:00
templateUrl: 'modules/forms/views/directiveViews/form/configure-form.client.view.html',
2015-08-04 21:06:16 +00:00
restrict: 'E',
scope: {
myform:'=',
user:'=',
pdfFields:'@',
formFields:'@'
},
2015-07-03 23:47:14 +00:00
controller: function($scope){
2015-10-30 18:40:02 +00:00
console.log($scope.myform);
if( CurrentForm.getForm().plugins){
if(CurrentForm.getForm().plugins.oscarhost.baseUrl) $scope.oscarhostAPI = true;
}else{
$scope.oscarhostAPI = false;
}
2015-07-03 23:47:14 +00:00
$scope.log = '';
$scope.pdfLoading = false;
$scope.languages = $rootScope.languages;
2015-08-21 00:17:14 +00:00
this._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
2015-08-21 00:17:14 +00:00
this._unbindedPdfFields = $scope.pdfFields;
2015-07-04 04:57:06 +00:00
//DAVID: TODO: finish this so we can create a Form.pdfFieldMap
// $scope.getUnbindedPdfFields = function(fieldType){
2015-08-21 00:17:14 +00:00
// this._unbindedPdfFields = $scope.pdfFields
2015-07-04 04:57:06 +00:00
// }
2015-07-03 23:47:14 +00:00
//PDF Functions
$scope.cancelUpload = function(){
2015-08-21 00:17:14 +00:00
this._current_upload.abort();
2015-07-03 23:47:14 +00:00
$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) {
2015-11-23 21:06:02 +00:00
// console.log(files);
2015-07-03 23:47:14 +00:00
if (files && files.length) {
var file = files[0];
2015-07-27 18:11:43 +00:00
console.log(file);
2015-08-21 00:17:14 +00:00
this._current_upload = Upload.upload({
2015-07-03 23:47:14 +00:00
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;
2015-08-21 00:17:14 +00:00
2015-07-03 23:47:14 +00:00
$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
2015-11-01 00:32:37 +00:00
// console.log($scope.myform.pdf);
2015-07-27 18:11:43 +00:00
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);
});
}
};
}
};
}
]);