-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
angular.ts
90 lines (86 loc) · 1.94 KB
/
angular.ts
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
import { isQuoted, isWrappedWith } from './common';
/**
* Indicates whether the attribute name is an Angular binding.
*
* ---
*
* Example binding:
* ```
* button([disabled]="isUnchanged") Save
* ```
*
* In this case `name` is `[disabled]`.
*
* ---
*
* @param name Name of tag attribute.
* @returns `true` if `name` passes the angular binding check, otherwise `false`.
*/
export function isAngularBinding(name: string): boolean {
return name.length >= 3 && name[0] === '[' && name.at(-1) === ']';
}
/**
* Indicates whether the attribute name is an Angular event.
*
* ---
*
* Example event:
* ```
* button((click)="onClickMe()") Click me!
* ```
*
* In this case `name` is `(click)`.
*
* ---
*
* @param name Name of tag attribute.
* @returns `true` if `name` passes the angular action check, otherwise `false`.
*/
export function isAngularAction(name: string): boolean {
return name.length >= 3 && name[0] === '(' && name.at(-1) === ')';
}
/**
* Indicates whether the attribute name is an Angular directive.
*
* ---
*
* Example directive:
* ```
* li(*ngFor="let customer of customers") {{ customer.name }}
* ```
*
* In this case `name` is `*ngFor`.
*
* ---
*
* @param name Name of tag attribute.
* @returns `true` if `name` passes the angular directive check, otherwise `false`.
*/
export function isAngularDirective(name: string): boolean {
return name.length >= 2 && name[0] === '*';
}
/**
* Indicates whether the attribute value is an Angular interpolation.
*
* ---
*
* Example interpolation:
* ```
* img(src="{{ itemImageUrl }}")
* ```
*
* In this case `val` is `"{{ itemImageUrl }}"`.
*
* ---
*
* @param val Value of tag attribute.
* @returns `true` if `val` passes the angular interpolation check, otherwise `false`.
*/
export function isAngularInterpolation(val: string): boolean {
return (
val.length >= 5 &&
isQuoted(val) &&
isWrappedWith(val, '{{', '}}', 1) &&
!val.includes('{{', 3)
);
}