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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
(function (angular) {
'use strict';
angular.module('angularAwesomeSlider', [])
// DIRECTIVE
.directive('slider', [
'$compile', '$templateCache','$timeout', '$window', 'slider',
function(compile, templateCache, timeout, win, Slider) {
return {
restrict : 'AE',
require: '?ngModel',
scope: { options:'=', ngDisabled: '='},
priority: 1,
link : function(scope, element, attrs, ngModel) {
if(!ngModel) return;
if (!scope.options)
throw new Error('You must provide a value for "options" attribute.');
var injector = angular.injector();
// options as inline variable
if (angular.isString(scope.options)) {
scope.options = angular.toJson(scope.options);
}
scope.mainSliderClass = 'jslider';
scope.mainSliderClass += scope.options.skin ? ' jslider_' + scope.options.skin : ' ';
scope.mainSliderClass += scope.options.vertical ? ' vertical ' : '';
scope.mainSliderClass += scope.options.css ? ' sliderCSS' : '';
scope.mainSliderClass += scope.options.className ? ' ' + scope.options.className : '';
// handle limit labels visibility
scope.options.limits = angular.isDefined(scope.options.limits) ? scope.options.limits : true;
// compile template
element.after(compile(templateCache.get('ng-slider/slider-bar.tmpl.html'))(scope, function(clonedElement, scope) {
scope.tmplElt = clonedElement;
}));
// init
var initialized = false;
var init = function(value) {
scope.from = ''+scope.options.from;
scope.to = ''+scope.options.to;
if (scope.options.calculate && angular.isFunction(scope.options.calculate)) {
scope.from = scope.options.calculate(scope.from);
scope.to = scope.options.calculate(scope.to);
}
var OPTIONS = {
from: !scope.options.round ? parseInt(scope.options.from, 10) : parseFloat(scope.options.from),
to: !scope.options.round ? parseInt(scope.options.to, 10) : parseFloat(scope.options.to),
step: scope.options.step,
smooth: scope.options.smooth,
limits: scope.options.limits,
round: scope.options.round || false,
value: value || ngModel.$viewValue,
dimension: '',
scale: scope.options.scale,
modelLabels: scope.options.modelLabels,
vertical: scope.options.vertical,
css: scope.options.css,
className: scope.options.className,
realtime: scope.options.realtime,
cb: forceApply,
threshold: scope.options.threshold,
heterogeneity: scope.options.heterogeneity
};
OPTIONS.calculate = scope.options.calculate || undefined;
OPTIONS.onstatechange = scope.options.onstatechange || undefined;
// slider
scope.slider = !scope.slider ? slidering(element, scope.tmplElt, OPTIONS) : scope.slider.init(element, scope.tmplElt, OPTIONS);
if (!initialized) {
initListener();
}
// scale
var scaleDiv = scope.tmplElt.find('div')[7];
angular.element(scaleDiv).html(scope.slider.generateScale());
scope.slider.drawScale(scaleDiv);
if (scope.ngDisabled) {
disabler(scope.ngDisabled);
}
initialized = true;
};
function initListener() {
// window resize listener
angular.element(win).bind('resize', function(event) {
scope.slider.onresize();
});
}
// model -> view
ngModel.$render = function () {
//elm.html(ctrl.$viewValue);
var singleValue = false;
if (!ngModel.$viewValue && ngModel.$viewValue !== 0) {
return;
}
if (typeof(ngModel.$viewValue) === 'number') {
ngModel.$viewValue = ''+ngModel.$viewValue;
}
if( !ngModel.$viewValue.split(';')[1]) {
scope.mainSliderClass += ' jslider-single';
}
else {
scope.mainSliderClass = scope.mainSliderClass.replace(' jslider-single', '');
}
if (scope.slider) {
var vals = ngModel.$viewValue.split(";");
scope.slider.getPointers()[0].set(vals[0], true);
if (vals[1]) {
scope.slider.getPointers()[1].set(vals[1], true);
//if moving left to right with two pointers
//we need to "finish" moving the first
if(parseInt(vals[1]) > parseInt(vals[0])){
scope.slider.getPointers()[0].set(vals[0], true);
}
}
}
};
scope.$on('slider-value-update', function(e, msg){
init(msg.value);
timeout(function(){
scope.slider.redrawPointers();
});
});
// view -> model
var forceApply = function(value, released) {
if (scope.disabled)
return;
scope.$apply(function() {
ngModel.$setViewValue(value);
});
if (scope.options.callback){
scope.options.callback(value, released);
}
};
// watch options
scope.$watch('options', function(value) {
timeout(function(){
init();
});
}, scope.watchOptions || true);
// disabling
var disabler = function(value) {
scope.disabled = value;
if (scope.slider) {
scope.tmplElt.toggleClass('disabled');
scope.slider.disable(value);
}
};
scope.$watch('ngDisabled', function(value) {
disabler(value);
});
scope.limitValue = function(value) {
if (scope.options.modelLabels) {
if (angular.isFunction(scope.options.modelLabels)) {
return scope.options.modelLabels(value);
}
return scope.options.modelLabels[value] !== undefined ? scope.options.modelLabels[value] : value;
}
return value;
};
var slidering = function( inputElement, element, settings) {
return new Slider( inputElement, element, settings );
};
}
};
}])
.config(function() {})
.run(function() {});
})(angular);
|