-
Notifications
You must be signed in to change notification settings - Fork 27.4k
docs(guide/decorators): add decorator guide #14372
Conversation
31044cc
to
013098e
Compare
013098e
to
a91b4eb
Compare
Just a note: There could possibly be a content conflict through untriaged PR #14348. If merged first, 14348 could resolve the order of operations caveat with |
|
||
Decorators are used to facilitate a decorator design pattern. This pattern is used to separate modification or | ||
*decoration* of a class without modifying the original source code. In Angular, decorators are functions that allow a | ||
service to be modified after their instantiation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- It's not about
services
. Filters and directives can be decorated as well. - Not after their instantiation. Did you mean after their declaration/registration/definition or something ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, for services, you first have to instantiate them in order to decorate them, but the current phrasing might give the impression that a service could be instantiated and used in its original form and later be decorated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gkalpak Thanks, I will get this reworded.
I left a few comments. Additonally, I think it should be mentioned that one can:
(Currently only (1) is shown.) |
Thanks for taking a look @gkalpak. I am making adjustments as we speak. In regards to your should-be-mentioned list, how do you define monkey-patching? I am only asking because I experience different definitions in the community. I assume you mean to replace a property/method on the All of that being said: I am going to make some changes noting different approaches you have mentioned above as well as changes in response to your comments. I will wait to push them, until you have had time to respond where needed so I don't overwrite the diff. Thanks, again. |
@sjbarker When you have made the changes, just push them in an extra commit to the branch. This makes it easier to review. And also write something in this issue, so that we get notified. Thanks! |
@Narretz Okay, will do! I will have it updated here in the next few hours. |
a91b4eb
to
551eb17
Compare
@Narretz Sorry for the delay. I upgraded node and didn't realize there was a known issue with the node-check-modules script. I ended up overwriting the original commit attempting to solve that issue, so I will comment the diff where necessary. |
|
||
Decorators are used to facilitate a decorator design pattern. This pattern is used to separate modification or | ||
*decoration* of a class without modifying the original source code. In Angular, decorators are functions that allow a | ||
service, directive or filter to be modified prior to its usage. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reworded to avoid confusion.
|
||
## What are decorators? | ||
|
||
Decorators are used to facilitate a decorator design pattern. This pattern is used to separate modification or |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe "Decorators are a design pattern that is used to separate modification or decoration of a class without modifying the original source code" There's currently a lot of repetition here.
After "What are decorators", there should be a section called "How to use decorators" that says that there are two ways to register decorators in Angular, and both give you access to the so-called $delegate which is the instantiated service before it is passed to the dependant / service that required it. Then there should be $provide.decorator and module.decorator as subheadings of this section. |
following could all be viable solutions: | ||
|
||
```js | ||
// replace the $delegate completely |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This and the two other ones (patching, augmenting) should be sub-headings and not comments
Good stuff @sjbarker. Left a few minor comments. |
f6fedb7
to
ea0ebcf
Compare
Thanks @Narretz. I just pushed the updates. I went ahead and squashed the extra commit since it outdated the diff anyways. |
|
||
## What are decorators? | ||
|
||
Decorators are a design pattern that is used to separate modification or *decoration* of a class without modifying the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reworded to remove redundancy.
+ explain decorators and how they are implemented in angular + explain how different types of services can be selected + explain `$delegate` objects and how they differ between services + warn of the risks/caveats of `$delegate` modification + note the exposure of `decorator` through the module api + show an example of decorating a core service + show an example of decorating a core directive + show an example of decorating a core filter closes angular#12163
ea0ebcf
to
429b890
Compare
following could all be viable solutions: | ||
|
||
|
||
#### Completely Replace the $delegate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed typo @Narretz
Thanks again @sjbarker ! |
Glad to help @Narretz! |
+ explain decorators and how they are implemented in angular + explain how different types of services can be selected + explain `$delegate` objects and how they differ between services + warn of the risks/caveats of `$delegate` modification + note the exposure of `decorator` through the module api + show an example of decorating a core service + show an example of decorating a core directive + show an example of decorating a core filter Closes #12163 Closes #14372
+ explain decorators and how they are implemented in angular + explain how different types of services can be selected + explain `$delegate` objects and how they differ between services + warn of the risks/caveats of `$delegate` modification + note the exposure of `decorator` through the module api + show an example of decorating a core service + show an example of decorating a core directive + show an example of decorating a core filter Closes #12163 Closes #14372
Commit 6a2ebdb removes the caveat of declaring a provider prior to decorating it through the module.decorator function. Remove statements warning of the prior requirement for order of operations. See angular#12382, PR angular#14348, and [angular#14372 comment 206452412] (angular#14372 (comment))
Commit 6a2ebdb removes the caveat of declaring a provider prior to decorating it through the module.decorator function. Remove statements warning of the prior requirement for order of operations. See angular#12382, PR angular#14348, and [angular#14372 comment 206452412] (angular#14372 (comment))
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
Docs update.
What is the current behavior? (You can also link to an open issue here)
There currently is no guide for decorators.
What is the new behavior (if this is a feature change)?
Add a guide document for decorators
Does this PR introduce a breaking change?
No.
Please check if the PR fulfills these requirements
Other information:
$delegate
objects and how they differ between services$delegate
modificationdecorator
through the module apicloses #12163