angular-cn/modules/angular2/src/di/annotations.js

139 lines
2.6 KiB
JavaScript
Raw Normal View History

import {CONST} from "angular2/src/facade/lang";
/**
* A parameter annotation that creates a synchronous eager dependency.
*
* ```
* class AComponent {
2015-04-15 22:35:38 +00:00
* constructor(@Inject(MyService) aService:MyService) {}
* }
* ```
*
2015-04-15 22:35:38 +00:00
* @exportedAs angular2/di_annotations
*/
export class Inject {
token;
@CONST()
2014-10-07 10:34:07 -04:00
constructor(token) {
this.token = token;
}
}
/**
* A parameter annotation that creates an asynchronous eager dependency.
*
* ```
* class AComponent {
2015-04-15 22:35:38 +00:00
* constructor(@InjectPromise(MyService) aServicePromise:Promise<MyService>) {
* aServicePromise.then(aService:MyService => ...);
* }
* }
* ```
*
2015-04-15 22:35:38 +00:00
* @exportedAs angular2/di_annotations
*/
2014-10-10 15:44:56 -04:00
export class InjectPromise {
token;
@CONST()
2014-10-07 10:34:07 -04:00
constructor(token) {
this.token = token;
}
2014-10-06 13:45:24 -04:00
}
/**
* A parameter annotation that creates a synchronous lazy dependency.
*
* ```
* class AComponent {
2015-04-15 22:35:38 +00:00
* constructor(@InjectLazy(MyService) aServiceFn:Function) {
* var aService:MyService = aServiceFn();
* }
* }
* ```
*
2015-04-15 22:35:38 +00:00
* @exportedAs angular2/di_annotations
*/
2014-10-06 13:45:24 -04:00
export class InjectLazy {
token;
2014-10-06 13:45:24 -04:00
@CONST()
2014-10-07 10:34:07 -04:00
constructor(token) {
2014-10-06 13:45:24 -04:00
this.token = token;
}
2014-10-09 12:09:50 -04:00
}
/**
2015-04-15 22:35:38 +00:00
* A parameter annotation that marks a dependency as optional. (Injects `null` if not found.)
* ```
* class AComponent {
2015-04-15 22:35:38 +00:00
* constructor(@Optional() aService:MyService) {
* this.aService = aService;
* }
* }
* ```
*
2015-04-15 22:35:38 +00:00
* @exportedAs angular2/di_annotations
*/
export class Optional {
@CONST()
constructor() {
}
}
/**
* `DependencyAnnotation` is used by the framework to extend DI.
*
* Only annotations implementing `DependencyAnnotation` will be added
* to the list of dependency properties.
*
* For example:
*
* ```
* class Parent extends DependencyAnnotation {}
* class NotDependencyProperty {}
*
* class AComponent {
* constructor(@Parent @NotDependencyProperty aService:AService) {}
* }
* ```
*
* will create the following dependency:
*
* ```
* new Dependency(Key.get(AService), [new Parent()])
* ```
*
* The framework can use `new Parent()` to handle the `aService` dependency
* in a specific way.
*
2015-04-15 22:35:38 +00:00
* @exportedAs angular2/di_annotations
*/
export class DependencyAnnotation {
@CONST()
constructor() {
}
get token() {
return null;
}
}
/**
2015-04-15 22:35:38 +00:00
* A marker annotation that marks a class as available to `Injector`s for creation. Used by tooling for generating
* constructor stubs.
*
* ```
* class NeedsService {
* constructor(svc:UsefulService) {}
* }
*
* @Injectable
* class UsefulService {}
* ```
2015-04-15 22:35:38 +00:00
* @exportedAs angular2/di_annotations
*/
export class Injectable {
@CONST()
constructor() {
}
}