Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

docs(guide/decorators): add decorator guide #14372

Merged
merged 1 commit into from
May 6, 2016

Conversation

sjbarker
Copy link
Contributor

@sjbarker sjbarker commented Apr 5, 2016

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:

  • 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

@sjbarker sjbarker force-pushed the decorator-guide branch 3 times, most recently from 31044cc to 013098e Compare April 5, 2016 18:31
@Narretz Narretz added this to the 1.5.x milestone Apr 5, 2016
@Narretz Narretz self-assigned this Apr 5, 2016
@sjbarker
Copy link
Contributor Author

sjbarker commented Apr 6, 2016

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 module.decorator and the relevant content (see diff L71:117-L84) should be removed prior to merging this PR. Otherwise, 14348 will need to include a change to the Decorator Guide or it will need to be handled in a subsequent PR.


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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. It's not about services. Filters and directives can be decorated as well.
  2. Not after their instantiation. Did you mean after their declaration/registration/definition or something ?

Copy link
Member

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.

Copy link
Contributor Author

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.

@gkalpak
Copy link
Member

gkalpak commented Apr 11, 2016

I left a few comments. Additonally, I think it should be mentioned that one can:

  1. Monkey-patch $delegate.
  2. Augment $delegate with extra stuff.
  3. Overwrite $delegate altogether and provide their own implementation.

(Currently only (1) is shown.)

@sjbarker
Copy link
Contributor Author

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 $delegate without replacing the entire $delegate.

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.

@Narretz
Copy link
Contributor

Narretz commented Apr 18, 2016

@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!

@sjbarker
Copy link
Contributor Author

@Narretz Okay, will do! I will have it updated here in the next few hours.

@sjbarker
Copy link
Contributor Author

@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.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reworded to avoid confusion.

@sjbarker
Copy link
Contributor Author

@Narretz @gkalpak Just a ping to let you know this is ready for another look.


## What are decorators?

Decorators are used to facilitate a decorator design pattern. This pattern is used to separate modification or
Copy link
Contributor

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.

@Narretz
Copy link
Contributor

Narretz commented Apr 26, 2016

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
Copy link
Contributor

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

@Narretz
Copy link
Contributor

Narretz commented Apr 26, 2016

Good stuff @sjbarker. Left a few minor comments.

@sjbarker sjbarker force-pushed the decorator-guide branch 2 times, most recently from f6fedb7 to ea0ebcf Compare April 26, 2016 12:08
@sjbarker
Copy link
Contributor Author

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
Copy link
Contributor Author

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
following could all be viable solutions:


#### Completely Replace the $delegate
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed typo @Narretz

@Narretz Narretz merged commit 938bd45 into angular:master May 6, 2016
@Narretz
Copy link
Contributor

Narretz commented May 6, 2016

Thanks again @sjbarker !

@sjbarker
Copy link
Contributor Author

sjbarker commented May 6, 2016

Glad to help @Narretz!

Narretz pushed a commit that referenced this pull request May 6, 2016
+ 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
Narretz pushed a commit that referenced this pull request May 6, 2016
+ 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
sjbarker added a commit to sjbarker/angular.js that referenced this pull request May 31, 2016
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))
sjbarker added a commit to sjbarker/angular.js that referenced this pull request May 31, 2016
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))
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Docs: Guide page for decorators
4 participants