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

115 lines
4.5 KiB
JavaScript
Raw Normal View History

2015-06-29 22:51:29 +00:00
'use strict';
2015-11-12 22:24:26 +00:00
angular.module('forms').directive('submitFormDirective', ['$http', 'TimeCounter', '$filter', '$rootScope', 'Auth',
function ($http, TimeCounter, $filter, $rootScope, Auth) {
2015-06-29 22:51:29 +00:00
return {
2015-11-12 22:24:26 +00:00
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-11-11 20:29:16 +00:00
$scope.authentication = $rootScope.authentication;
2015-11-23 19:19:02 +00:00
$scope.reloadForm = function(){
//Reset Form
$scope.myform.submitted = false;
$scope.myform.form_fields = _.chain($scope.myform.form_fields).map(function(field){
field.fieldValue = '';
return field;
}).value();
2015-11-06 21:26:12 +00:00
$scope.error = '';
2015-11-06 19:00:45 +00:00
$scope.selected = {
2015-11-06 21:26:12 +00:00
_id: '',
index: null,
2015-11-06 19:00:45 +00:00
};
2015-11-23 19:19:02 +00:00
//Reset Timer
TimeCounter.restartClock();
};
2015-08-06 05:52:59 +00:00
2015-11-23 19:19:02 +00:00
/*
** Field Controls
*/
$rootScope.setActiveField = function(field_id, field_index) {
if($scope.selected === null){
2015-11-06 21:26:12 +00:00
$scope.selected = {
_id: '',
2015-11-23 19:19:02 +00:00
index: 0,
2015-11-06 21:26:12 +00:00
};
2015-11-23 19:19:02 +00:00
}
console.log('field_id: '+field_id);
console.log('field_index: '+field_index);
console.log($scope.selected);
$scope.selected._id = field_id;
$scope.selected.index = field_index;
setTimeout(function() {
$('html, body').animate({
scrollTop: $('.activeField').offset().top
},200);
}, 10);
};
$scope.nextField = function(){
if($scope.selected.index < $scope.myform.form_fields.length-1){
$scope.selected.index++;
$scope.selected._id = $scope.myform.form_fields[$scope.selected.index]._id;
$rootScope.setActiveField($scope.selected._id, $scope.selected.index);
}
};
$scope.prevField = function(){
if($scope.selected.index > 0){
$scope.selected.index = $scope.selected.index - 1;
$scope.selected._id = $scope.myform.form_fields[$scope.selected.index]._id;
$rootScope.setActiveField($scope.selected._id, $scope.selected.index);
}
};
$scope.hideOverlay = function(){
$scope.selected = {
_id: '',
index: null,
2015-08-07 21:02:44 +00:00
};
2015-11-23 19:19:02 +00:00
};
/*
** Form Display Functions
*/
$scope.exitStartPage = function(){
$scope.myform.startPage.showStart = false;
if($scope.myform.form_fields.length > 0){
$scope.selected._id = $scope.myform.form_fields[0]._id;
}
};
$scope.submitForm = function(){
var _timeElapsed = TimeCounter.stopClock();
var form = _.cloneDeep($scope.myform);
form.timeElapsed = _timeElapsed;
form.percentageComplete = $filter('formValidity')($scope.myform)/$scope.myform.visible_form_fields.length*100;
delete form.visible_form_fields;
$scope.submitPromise = $http.post('/forms/'+$scope.myform._id, form)
.success(function(data, status, headers){
console.log('form submitted successfully');
$scope.myform.submitted = true;
})
.error(function(error){
console.log(error);
$scope.error = error.message;
});
};
//Load our form when the page is ready
angular.element(document).ready(function() {
$scope.reloadForm();
2015-11-06 21:26:12 +00:00
});
2015-06-29 22:51:29 +00:00
}
};
}
]);