12
12
13
13
## What are decorators?
14
14
15
- Decorators are used to facilitate a decorator design pattern. This pattern is used to separate modification or
16
- *decoration* of a class without modifying the original source code. In Angular, decorators are functions that allow a
17
- service, directive or filter to be modified prior to its usage.
15
+ Decorators are a design pattern that is used to separate modification or *decoration* of a class without modifying the
16
+ original source code. In Angular, decorators are functions that allow a service, directive or filter to be modified
17
+ prior to its usage.
18
18
19
- ## $provide.decorator
19
+ ## How to use decorators
20
+
21
+ There are two ways to register decorators
22
+
23
+ - `$provide.decorator`, and
24
+ - `module.decorator`
25
+
26
+ Each provide access to a `$delegate`, which is the instantiated service/directive/filter, prior to being passed to the
27
+ service that required it.
28
+
29
+ ### $provide.decorator
20
30
21
31
The {@link api/auto/service/$provide#decorator decorator function} allows access to a $delegate of the service once it
22
32
has been instantiated. For example:
@@ -52,8 +62,9 @@ directive, or filter being decorated.
52
62
The `$delegate` may be either modified or completely replaced. Given a service `myService` with a method `someFn`, the
53
63
following could all be viable solutions:
54
64
65
+
66
+ #### Completely Replace the $delgeate
55
67
```js
56
- // replace the $delegate completely
57
68
angular.module('myApp', [])
58
69
59
70
.config([ '$provide', function($provide) {
@@ -71,8 +82,8 @@ angular.module('myApp', [])
71
82
}]);
72
83
```
73
84
85
+ #### Patch the $delegate
74
86
```js
75
- // patch the $delegate
76
87
angular.module('myApp', [])
77
88
78
89
.config([ '$provide', function($provide) {
@@ -95,8 +106,8 @@ angular.module('myApp', [])
95
106
}]);
96
107
```
97
108
109
+ #### Augment the $delegate
98
110
```js
99
- // augment the $delegate
100
111
angular.module('myApp', [])
101
112
102
113
.config([ '$provide', function($provide) {
@@ -145,7 +156,7 @@ the end of the name. The `$delegate` provided is dictated by the type of service
145
156
or adversely affect the functionality of the framework.
146
157
</div>
147
158
148
- ## module.decorator
159
+ ### module.decorator
149
160
150
161
This {@link api/ng/type/angular.Module#decorator function} is the same as the `$provide.decorator` function except it is
151
162
exposed through the module API. This allows you to separate your decorator patterns from your module config blocks. The
0 commit comments