-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathtimeout-service.js
More file actions
57 lines (48 loc) · 1.77 KB
/
timeout-service.js
File metadata and controls
57 lines (48 loc) · 1.77 KB
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
/**
* use `$timeout` instead of `setTimeout`
*
* Instead of the default setTimeout function, you should use the AngularJS wrapper service $timeout
**
* @styleguideReference {johnpapa} `y181` Angular $ Wrapper Services - $timeout and $interval
* @version 0.1.0
* @category angularWrapper
* @sinceAngularVersion 1.x
*/
'use strict';
module.exports = {
meta: {
docs: {
url: 'https://github.com/Gillespie59/eslint-plugin-angular/blob/master/docs/rules/timeout-service.md'
},
schema: []
},
create: function(context) {
var message = 'You should use the $timeout service instead of the default window.setTimeout method';
return {
MemberExpression: function(node) {
if (node.property.name !== 'setTimeout' || !node.object) {
return;
}
if (node.object.type === 'Identifier') {
if ((node.object.name === 'window' || node.object.name === '$window')) {
context.report(node, message, {});
}
return;
}
// Detect expression this.$window.setTimeout which is what we would see in ES6 code when using classes
var parentNode = node.object;
if (!parentNode.object) {
return;
}
if (parentNode.object.type === 'ThisExpression' && parentNode.property.name === '$window') {
context.report(node, message, {});
}
},
CallExpression: function(node) {
if (node.callee.name === 'setTimeout') {
context.report(node, message, {});
}
}
};
}
};