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

70 lines
2.9 KiB
JavaScript
Raw Normal View History

2015-06-29 22:51:29 +00:00
'use strict';
angular.module('forms').directive('submitFormDirective', ['$http', '$timeout', 'TimeCounter', 'Auth', '$filter', '$rootScope',
2015-08-21 00:17:14 +00:00
function ($http, $timeout, TimeCounter, Auth, $filter, $rootScope) {
2015-06-29 22:51:29 +00:00
return {
templateUrl: 'modules/forms/views/directiveViews/form/submit-form.client.view.html',
2015-08-04 21:06:16 +00:00
restrict: 'E',
scope: {
myform:'='
2015-08-04 21:06:16 +00:00
},
2015-06-29 22:51:29 +00:00
controller: function($scope){
2015-08-06 05:52:59 +00:00
angular.element(document).ready(function() {
$scope.error = '';
2015-08-06 05:52:59 +00:00
$scope.selected = null;
$scope.submitted = false;
2015-08-21 00:17:14 +00:00
TimeCounter.startClock()
2015-08-06 05:52:59 +00:00
2015-09-15 22:21:49 +00:00
$scope.exitStartPage = function(){
$scope.myform.startPage.showStart = false;
}
2015-08-06 05:52:59 +00:00
$rootScope.setActiveField = function (field_id) {
$scope.selected = field_id;
2015-08-07 21:02:44 +00:00
};
2015-08-06 05:52:59 +00:00
$scope.hideOverlay = function (){
$scope.selected = null;
2015-08-07 21:02:44 +00:00
};
2015-08-06 05:52:59 +00:00
$scope.submit = function(){
2015-08-21 00:17:14 +00:00
var _timeElapsed = TimeCounter.stopClock();
2015-08-06 05:52:59 +00:00
var form = _.cloneDeep($scope.myform);
form.timeElapsed = _timeElapsed;
// console.log('percentageComplete: '+$filter('formValidity')($scope.myform)/$scope.myform.visible_form_fields.length*100+'%');
form.percentageComplete = $filter('formValidity')($scope.myform)/$scope.myform.visible_form_fields.length*100;
console.log(form.percentageComplete)
delete form.visible_form_fields;
2015-08-06 05:52:59 +00:00
$scope.authentication = Auth;
$scope.submitPromise = $http.post('/forms/'+$scope.myform._id, form)
2015-08-06 05:52:59 +00:00
.success(function(data, status, headers){
console.log('form submitted successfully');
$scope.myform.submitted = true;
2015-08-06 05:52:59 +00:00
})
.error(function(error){
console.log(error);
$scope.error = error.message;
});
};
$scope.reloadForm = function(){
//Reset Timer
2015-08-21 00:17:14 +00:00
TimeCounter.stopClock();
TimeCounter.startClock();
//Reset Form
$scope.myform.submitted = false;
$scope.myform.form_fields = _.chain($scope.myform.form_fields).map(function(field){
field.fieldValue = '';
return field;
}).value();
2015-08-06 05:52:59 +00:00
};
});
2015-06-29 22:51:29 +00:00
}
};
}
]);