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

176 lines
8.1 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
},
controller: function($document, $window, $scope){
2015-11-11 20:29:16 +00:00
$scope.authentication = $rootScope.authentication;
$scope.noscroll = false;
2016-04-22 19:36:34 +00:00
$scope.forms = {};
$scope.form_fields_count = $scope.myform.visible_form_fields.filter(function(field){
if(field.fieldType === 'statement' || field.fieldType === 'rating'){
return false;
}
return true;
}).length;
2016-04-20 17:32:18 +00:00
2015-11-23 19:19:02 +00:00
$scope.reloadForm = function(){
//Reset Form
$scope.myform.submitted = false;
2016-04-22 19:46:58 +00:00
$scope.myform.form_fields = _.chain($scope.myform.visible_form_fields).map(function(field){
2015-11-23 19:19:02 +00:00
field.fieldValue = '';
return field;
}).value();
2015-11-06 21:26:12 +00:00
$scope.loading = false;
$scope.error = '';
2016-04-22 19:46:58 +00:00
2015-11-06 19:00:45 +00:00
$scope.selected = {
2016-04-22 19:46:58 +00:00
_id: '',
index: 0
2015-11-06 19:00:45 +00:00
};
2016-04-22 19:46:58 +00:00
$scope.setActiveField($scope.myform.visible_form_fields[0]._id, 0, false);
console.log($scope.selected);
2015-11-23 19:19:02 +00:00
//Reset Timer
TimeCounter.restartClock();
};
$window.onscroll = function(){
$scope.scrollPos = document.body.scrollTop || document.documentElement.scrollTop || 0;
var elemBox = document.getElementsByClassName('activeField')[0].getBoundingClientRect();
$scope.fieldTop = elemBox.top;
$scope.fieldBottom = elemBox.bottom;
2016-04-22 19:36:34 +00:00
2016-04-22 19:46:58 +00:00
//console.log($scope.forms.myForm);
2016-04-22 19:36:34 +00:00
if(!$scope.noscroll){
//Focus on submit button
if( $scope.selected.index === $scope.myform.form_fields.length-1 && $scope.fieldBottom < 200){
var field_index = $scope.selected.index+1;
var field_id = 'submit_field';
$scope.setActiveField(field_id, field_index, false);
}
//Focus on field above submit button
else if($scope.selected.index === $scope.myform.form_fields.length){
if($scope.fieldTop > 200){
var field_index = $scope.selected.index-1;
var field_id = $scope.myform.form_fields[field_index]._id;
$scope.setActiveField(field_id, field_index, false);
}
}else if( $scope.fieldBottom < 0){
var field_index = $scope.selected.index+1;
var field_id = $scope.myform.form_fields[field_index]._id;
$scope.setActiveField(field_id, field_index, false);
}else if ( $scope.selected.index !== 0 && $scope.fieldTop > 0) {
var field_index = $scope.selected.index-1;
var field_id = $scope.myform.form_fields[field_index]._id;
$scope.setActiveField(field_id, field_index, false);
}
2016-04-22 19:36:34 +00:00
//console.log('$scope.selected.index: '+$scope.selected.index);
//console.log('scroll pos: '+$scope.scrollPos+' fieldTop: '+$scope.fieldTop+' fieldBottom: '+$scope.fieldBottom);
$scope.$apply();
}
};
2015-11-23 19:19:02 +00:00
/*
** Field Controls
*/
$scope.setActiveField = $rootScope.setActiveField = function(field_id, field_index, animateScroll) {
if($scope.selected === null || $scope.selected._id === field_id){
console.log('not scrolling');
console.log($scope.selected);
return;
}
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;
if(animateScroll){
$scope.noscroll=true;
setTimeout(function() {
2016-04-21 16:21:05 +00:00
$document.scrollToElement(angular.element('.activeField'), -10, 200).then(function(){
$scope.noscroll = false;
2016-04-21 23:48:59 +00:00
document.querySelectorAll('.activeField .focusOn')[0].focus();
});
}, 20);
}
2015-11-23 19:19:02 +00:00
};
2016-04-12 02:14:38 +00:00
$rootScope.nextField = $scope.nextField = function(){
2016-04-21 16:21:05 +00:00
console.log('nextfield');
//console.log($scope.selected.index);
//console.log($scope.myform.form_fields.length-1);
2016-04-12 03:02:51 +00:00
if($scope.selected.index < $scope.myform.form_fields.length-1){
var selected_index = $scope.selected.index+1;
var selected_id = $scope.myform.form_fields[selected_index]._id;
$rootScope.setActiveField(selected_id, selected_index, true);
2016-04-12 02:14:38 +00:00
} else if($scope.selected.index === $scope.myform.form_fields.length-1) {
var selected_index = $scope.selected.index+1;
var selected_id = 'submit_field';
$rootScope.setActiveField(selected_id, selected_index, true);
2016-04-12 02:14:38 +00:00
}
2015-11-23 19:19:02 +00:00
};
2016-04-21 16:21:05 +00:00
2016-04-12 02:14:38 +00:00
$rootScope.prevField = $scope.prevField = function(){
2015-11-23 19:19:02 +00:00
if($scope.selected.index > 0){
var selected_index = $scope.selected.index - 1;
var selected_id = $scope.myform.form_fields[selected_index]._id;
$scope.setActiveField(selected_id, selected_index, true);
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();
$scope.loading = true;
2015-11-23 19:19:02 +00:00
var form = _.cloneDeep($scope.myform);
form.timeElapsed = _timeElapsed;
2015-11-23 19:19:02 +00:00
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');
setTimeout(function() {
$scope.myform.submitted = true;
$scope.loading = false;
}, 20);
2015-11-23 19:19:02 +00:00
})
.error(function(error){
setTimeout(function(){
$scope.loading = false;
console.log(error);
$scope.error = error.message;
}, 20);
2015-11-23 19:19:02 +00:00
});
};
//Load our form when the page is ready
2016-04-22 19:46:58 +00:00
//angular.element(document).ready(function() {
2015-11-23 19:19:02 +00:00
$scope.reloadForm();
2016-04-22 19:46:58 +00:00
//});
2015-06-29 22:51:29 +00:00
}
};
}
2016-04-12 02:14:38 +00:00
]);