-
Notifications
You must be signed in to change notification settings - Fork 1
/
angular-focus-first-field.js
65 lines (58 loc) · 1.63 KB
/
angular-focus-first-field.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
(function() {
'use strict';
angular.module('angular-focus-first-field', [])
.directive('focusFirstField', function($timeout, $parse) {
return {
restrict: 'A',
link: function($scope, $element, $attrs) {
var inputs = $element.find('input');
var attemptsLeft = parseInt($attrs.focusFirstFieldTimeoutAttempts);
if (isNaN(attemptsLeft)) attemptsLeft = 5;
function go() {
var stop = false;
var first = null;
angular.forEach(inputs, function(input) {
if (!first) {
first = input;
}
var jqLiteInput = angular.element(input);
var val = jqLiteInput.val();
if (!stop && !val.length) {
input.focus();
stop = true;
}
});
if (!stop && first) {
first.focus();
}
}
function attempt() {
$timeout(function() {
inputs = $element.find('input');
if (--attemptsLeft >= 0) {
check();
}
});
}
function check() {
if (inputs.length) {
go();
}
else {
attempt();
}
}
if ($parse($attrs.focusFirstFieldTrigger).assign) {
$scope.$watch($attrs.focusFirstFieldTrigger, function(newValue) {
if (newValue) {
check();
}
});
}
else {
$timeout(check);
}
}
};
});
})();