-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathangular-number-input.js
615 lines (536 loc) · 20.2 KB
/
angular-number-input.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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
/*jslint unparam: true*/
/**
* Event which will update the model and view value.
*
* @event number-input$update-model
* @param {Object} [modelValue] - The new model value (undefined to use the ngModelCtrl.$modelValue instead)
*/
/**
* Service definition used by the number input to extend the number input capabilities.
*
* @author Sagie Gur-Ari
* @interface NumberInputService
* @public
*/
/**
* Returns an instance of the service used by a specific directive instance.
*
* @function
* @memberof! NumberInputService
* @name NumberInputService#create
* @public
* @returns {Object} The service instance
*/
/**
* The directive configuration.
*
* @typedef {Object} Config
* @param {Number} [min] - Optional min number value
* @param {Number} [max] - Optional max number value
* @param {Number} [step] - Optional step between numbers
*/
/**
* Holds the current configuration of the service and is populated by the directive instance.
*
* @memberof! NumberInputService
* @name NumberInputService#config
* @type {Config}
* @public
*/
/**
* Optional min value.
*
* @memberof! NumberInputService
* @name NumberInputService#min
* @type {Number}
* @public
*/
/**
* Optional max value.
*
* @memberof! NumberInputService
* @name NumberInputService#max
* @type {Number}
* @public
*/
/**
* Optional step value.
*
* @memberof! NumberInputService
* @name NumberInputService#step
* @type {Number}
* @public
*/
/**
* Optional validation function.<br>
* This function is optional and it is not required to implement it.
*
* @function
* @memberof! NumberInputService
* @name NumberInputService#validate
* @public
* @param {Object} [modelValue] - The model value
* @param {Object} [viewValue] - The UI view value
* @returns {Boolean} true if valid
*/
/**
* Optional parser function.<br>
* This function is optional and it is not required to implement it.
*
* @function
* @memberof! NumberInputService
* @name NumberInputService#parse
* @public
* @param {Object} [value] - The value to parse
* @returns {Object} The parsed value
*/
/**
* Optional formatter function.<br>
* This function is optional and it is not required to implement it.
*
* @function
* @memberof! NumberInputService
* @name NumberInputService#format
* @public
* @param {Object} [value] - The value to format
* @returns {Object} The formatted value
*/
/**
* Will be called only once when the directive has access to the service.<br>
* This function is optional and it is not required to implement it.
*
* @function
* @memberof! NumberInputService
* @name NumberInputService#link
* @public
* @param {Object} scope - The angular scope for the element
* @param {Object} element - The jquery element on which the directive is defined on
* @param {Object} attributes - Provides access to the element attributes
* @param {Object} ngModelCtrl - The angular model controller
*/
/**
* @ngdoc method
* @function
* @memberof! numberInput
* @alias numberInput.defineModule
* @author Sagie Gur-Ari
* @private
*
* @description
* Defines the angular number input directive.
*/
(function defineModule() {
'use strict';
/**
* Returns the directive factory.
*
* @function
* @memberof! numberInput
* @private
* @param {Object} $injector - The angular injector service
* @returns {Object} The directive definition
*/
const defineDirective = function ($injector) {
return {
restrict: 'ECA',
require: 'ngModel',
/**
* Invoked when the directive is created.<br>
* This function will setup the watch logic and ensure the number model value is processed via number validations.
*
* @function
* @memberof! numberInput
* @private
* @param {Object} scope - The angular scope for the element
* @param {Object} element - The jquery element on which the directive is defined on
* @param {Object} attrs - Provides access to the element attributes
* @param {Object} ngModelCtrl - The angular model controller
*/
link(scope, element, attrs, ngModelCtrl) {
let min;
let max;
let step;
let validation;
let parser;
let formatter;
let service;
let serviceState = {};
let linkCalled = false;
/**
* Sets the config for the service in case of any config change.
*
* @function
* @memberof! numberInput
* @private
*/
const setConfig = function () {
service.config = {
min,
max,
step
};
};
/**
* Initializes the state attributes based on the current service capabilities.
*
* @function
* @memberof! numberInput
* @private
*/
const initAttributesFromService = function () {
if ((min === undefined) && (!isNaN(service.min))) {
min = service.min;
serviceState.min = true;
} else {
delete serviceState.min;
}
if ((max === undefined) && (!isNaN(service.max))) {
max = service.max;
serviceState.max = true;
} else {
delete serviceState.max;
}
if ((step === undefined) && (!isNaN(service.step))) {
step = service.step;
serviceState.step = true;
} else {
delete serviceState.step;
}
};
/**
* Initializes the state functions based on the current service capabilities.
*
* @function
* @memberof! numberInput
* @private
*/
const initFunctionsFromService = function () {
if (service.link && !linkCalled) {
service.link(scope, element, attrs, ngModelCtrl);
linkCalled = true;
}
if ((!validation) && service.validate) {
validation = service.validate.bind(service);
serviceState.validation = true;
} else {
delete serviceState.validation;
}
if ((!parser) && service.parse) {
parser = service.parse.bind(service);
serviceState.parser = true;
} else {
delete serviceState.parser;
}
if ((!formatter) && service.format) {
formatter = service.format.bind(service);
serviceState.formatter = true;
} else {
delete serviceState.formatter;
}
};
/**
* Initializes the state based on the current service capabilities.
*
* @function
* @memberof! numberInput
* @private
*/
const initStateFromService = function () {
if (service) {
initAttributesFromService();
setConfig();
initFunctionsFromService();
}
};
/**
* Creates and initializes the requested service.
*
* @function
* @memberof! numberInput
* @private
* @param {String} serviceName - The service name to inject
*/
const initService = function (serviceName) {
if (serviceName) {
const factory = $injector.get(serviceName);
service = factory.create();
initStateFromService();
} else {
if (serviceState.min) {
min = undefined;
}
if (serviceState.max) {
max = undefined;
}
if (serviceState.step) {
step = undefined;
}
if (serviceState.validation) {
validation = null;
}
if (serviceState.parser) {
parser = null;
}
if (serviceState.formatter) {
formatter = null;
}
serviceState = {};
}
};
/**
* Formats the provided value to a number string value.
*
* @function
* @memberof! numberInput
* @private
* @param {Object} value - The value to format
* @returns {String} The formatted value
*/
const formatNumber = function (value) {
let number = value;
if (formatter) {
number = formatter(value);
} else if ((value !== undefined) && (value !== null) && (typeof value !== 'string')) {
number = String(value);
}
return number;
};
/**
* Will update the UI with a new view value based on the current model value.
*
* @function
* @memberof! numberInput
* @private
* @param {Object} [modelValue] - The new model value (undefined to use the ngModelCtrl.$modelValue instead)
*/
const updateViewValue = function (modelValue) {
if (modelValue === undefined) {
modelValue = ngModelCtrl.$modelValue;
}
const viewValue = formatNumber(modelValue);
if (viewValue !== ngModelCtrl.$viewValue) {
ngModelCtrl.$setViewValue(viewValue, 'change');
ngModelCtrl.$commitViewValue();
ngModelCtrl.$render();
}
};
element.on('number-input$update-model', function onUpdateModelEvent($event, modelValue) {
updateViewValue(modelValue);
});
ngModelCtrl.$parsers.push(function parseNumber(value) {
let number;
if (parser) {
number = parser(value);
} else {
number = Number(String(value).split(',').join(''));
}
return number;
});
ngModelCtrl.$formatters.push(formatNumber);
scope.$watch(attrs.ngModel, updateViewValue);
/**
* Returns a step validation function based on the currently loaded libraries.
*
* @function
* @memberof! numberInput
* @private
* @returns {function} The step validation function
*/
const createStepValidation = function () {
if (window.Big && typeof window.Big === 'function') {
return function bigStepValidation(modelValue, stepValue) {
const bigObj = new window.Big(modelValue);
const divValue = bigObj.div(stepValue);
let modValue = divValue.mod(1);
modValue = parseFloat(modValue);
return (modValue === 0);
};
}
return function basicStepValidation(modelValue, stepValue) {
return (((modelValue * 1000) / (stepValue * 1000) % 1) === 0);
};
};
const validateStep = createStepValidation();
/**
* Will validate the provided value is a number.
*
* @function
* @memberof! numberInput
* @private
* @param {Number} modelValue - The model value to validate
* @returns {Boolean} true if valid
*/
ngModelCtrl.$validators.number = function (modelValue) {
return !isNaN(modelValue);
};
/**
* Will validate the provided value is not less than the min defined.
*
* @function
* @memberof! numberInput
* @private
* @param {Number} modelValue - The model value to validate
* @returns {Boolean} true if valid
*/
ngModelCtrl.$validators.min = function (modelValue) {
return ((min === undefined) || (modelValue >= min));
};
/**
* Will validate the provided value is not bigger than the max defined.
*
* @function
* @memberof! numberInput
* @private
* @param {Number} modelValue - The model value to validate
* @returns {Boolean} true if valid
*/
ngModelCtrl.$validators.max = function (modelValue) {
return ((max === undefined) || (modelValue <= max));
};
/**
* Will validate the provided value is not between of the defined steps.
*
* @function
* @memberof! numberInput
* @private
* @param {Number} modelValue - The model value to validate
* @returns {Boolean} true if valid
*/
ngModelCtrl.$validators.step = function (modelValue) {
return (typeof modelValue !== 'number' || typeof step !== 'number' || isNaN(modelValue) || isNaN(step) || validateStep(modelValue, step));
};
/**
* Will invoke an external validation function if defined.
*
* @function
* @memberof! numberInput
* @private
* @param {Number} modelValue - The model value to validate
* @param {String} viewValue - The view value to validate
* @returns {Boolean} true if valid
*/
ngModelCtrl.$validators.external = function (modelValue, viewValue) {
let valid = true;
if (validation) {
valid = validation(modelValue, viewValue);
}
return valid;
};
scope.$watch(attrs.min, function onAttributeChange(value) {
if (isNaN(value)) {
min = undefined;
} else {
min = value;
}
initStateFromService();
ngModelCtrl.$validate();
});
scope.$watch(attrs.max, function onAttributeChange(value) {
if (isNaN(value)) {
max = undefined;
} else {
max = value;
}
initStateFromService();
ngModelCtrl.$validate();
});
scope.$watch(attrs.step, function onAttributeChange(value) {
if (isNaN(value)) {
step = undefined;
} else {
step = value;
}
initStateFromService();
ngModelCtrl.$validate();
});
scope.$watch(attrs.validation, function onAttributeChange(value) {
if (value && window.angular.isFunction(value)) {
validation = value;
} else {
validation = null;
}
initStateFromService();
ngModelCtrl.$validate();
});
scope.$watch(attrs.parser, function onAttributeChange(value) {
if (value && window.angular.isFunction(value)) {
parser = value;
} else {
parser = null;
}
initStateFromService();
ngModelCtrl.$validate();
});
scope.$watch(attrs.formatter, function onAttributeChange(value) {
if (value && window.angular.isFunction(value)) {
formatter = value;
} else if (formatter) {
formatter = null;
}
initStateFromService();
ngModelCtrl.$validate();
updateViewValue();
});
scope.$watch(function getServiceNameViaAttribute() {
return element.attr('service');
}, function onAttributeChange(value) {
let updateUI = true;
if (value) {
initService(value);
} else if (service) {
service = null;
initService();
} else {
updateUI = false;
}
if (updateUI) {
ngModelCtrl.$validate();
updateViewValue();
}
});
}
};
};
const numberInputModule = window.angular.module('number-input', []);
/**
* @ngdoc directive
* @name numberInput
* @restrict ECA
*
* @param {Number} ng-model - The model for the number input
* @param {Number} [min] - Optional min number value
* @param {Number} [max] - Optional max number value
* @param {Number} [step] - Optional step between numbers
* @param {function} [validation] - Optional external validation function
* @param {function} [parser] - Optional external parser function
* @param {function} [formatter] - Optional external formatter function
* @param {String} [service] - Optional service to inject which will be used to control the directive behaviour (will override validation, parser and formatter attributes)
* @returns {Object} The directive definition
* @listens number-input$update-model
*
* @description
* The number-input is an angular directive which provides number validation, parsing and formatting capabilities.
*
* @example
* ```html
* <!-- simple usage of the directive with custom validation/formatting/parsing -->
* <input type="text" class="number-input"
* ng-model="value"
* min="-100"
* max="100"
* step="0.5"
* validation="myNumberValidation"
* formatter="myNumberFormatter"
* parser="myNumberParser">
*
* <!-- using angular service for common custom validation/formatting/parsing -->
* <input type="text" class="number-input"
* ng-model="value"
* service="myService">
* ```
*/
numberInputModule.directive('numberInput', [
'$injector',
defineDirective
]);
}());