-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsurvey-editor.js
110 lines (94 loc) · 3 KB
/
survey-editor.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
angular.module('SurveyEditor', ['ngMessages', 'SurveyCommon'])
.controller("SurveyEditorPageController",
["surveyCache", "$routeParams", "$location",
function(surveyCache, $routeParams, $location) {
var surveyData = $routeParams.id ? surveyCache.get($routeParams.id) : {};
if (!surveyData) {
$location.path('/');
return;
}
var isNew = surveyData.id >= 0;
//initialize the data
this.data = surveyData;
this.data.fields = this.data.fields || [];
this.onSave = function(data) {
if (isNew) {
surveyCache.set(data.id, data);
} else {
surveyCache.add(data);
}
$location.path('/preview/' + data.id);
};
}])
.directive("surveyEditorForm", [function() {
return {
transclude: true,
controller : ['$scope', '$attrs', function($scope, $attrs) {
this.handleSubmit = function(valid) {
if (valid) {
$scope.$eval($attrs.onValidSubmit);
}
};
}],
controllerAs: 'ctrl',
template: '<form name="surveyForm" ' +
'ng-submit="ctrl.handleSubmit(surveyForm.$valid)" ' +
'novalidate>' +
' <div ng-transclude></div>' +
'</form>'
};
}])
.directive('surveyEditorFields', [function() {
return {
transclude: true,
controller: 'SurveyFieldsFormController',
controllerAs: 'fieldsCtrl',
template: '<div class="repeated-form-fields"' +
' ng-form="surveyFieldsForm">' +
' <div ng-transclude></div>' +
'</div>'
}
}])
.directive('surveyEditorField', [function() {
return {
transclude: true,
template: '<div class="repeated-form-row"' +
' ng-form="surveyFieldForm">' +
' <div ng-transclude></div>' +
'</div>'
}
}])
.controller("SurveyFieldsFormController", ['$attrs', '$scope', function($attrs, $scope) {
var self = this;
this.fields = $scope.$eval($attrs.fields) || [];
this.inputTypes = [
{ value: "input", title: "input" },
{ value: "input:email", title: "input[email]" },
{ value: "input:url", title: "input[url]" },
{ value: "input:date", title: "input[date]" },
{ value: "textarea", title: "textarea" },
{ value: "select", title: "select" }
];
this.isMultipleField = function(type) {
return type == 'select';
};
this.newField = function() {
self.fields.push({});
};
this.allowSwap = function(index) {
return index >= 0 && index < self.fields.length;
};
this.swapFields = function(indexA, indexB) {
if (self.allowSwap(indexB)) {
var tmp = self.fields[indexA];
self.fields[indexA] = self.fields[indexB];
self.fields[indexB] = tmp;
}
}
this.removeField = function(field) {
var index = self.fields.indexOf(field);
if (index >= 0) {
self.fields.splice(index, 1);
}
};
}])