Class
Local Injectables
These services can be only injected from Component/Directive
These are not singletons, every component/directive owns it's own instance of the service
EventEmitter
Use by directives and components to emit custom Events via @Output
binding.
Under the hood operates under the
&
binding but mitigates the pain of passing{locals}
to the callback
members
members | Type | Description |
---|---|---|
emit | (value: T): void |
emits defined event to parent with provided value, this value is encapsulated in $event from within template |
subscribe | (generatorOrNext?: any, error?: any, complete?: any) : Subscription |
subscribe to emitter. When emit is triggered all subscriptions will be notified |
Note:
This is real RxJS Subject
example:
In the following example, Zippy alternatively emits open and close events when its title gets clicked
// app.component.ts
import { Component } from 'ng-metadata/core';
@Component({
selector: 'my-app',
template:`<zippy (open)="$ctrl.onOpen($event)" "$ctrl.onClose($event)">My visibility will be toggled! wooot!</zippy>`
})
class AppComponent {
onOpen(zippyVisible: boolean){
console.log(`zippy visibility is: {zippyVisible}`);
}
onClose(zippyVisible: boolean){
console.log(`zippy visibility is: {zippyVisible}`);
}
}
// zipy.component.ts
import { Component, Output, EventEmitter } from 'ng-metadata/core';
@Component({
selector: 'zippy',
template: `
<div class="zippy">
<div ng-click="$ctrl.toggle()">Toggle</div>
<div ng-hide="!$ctrl.visible">
<ng-transclude></ng-transclude>
</div>
</div>`
})
export class ZippyComponent {
visible: boolean = true;
@Output() open = new EventEmitter<boolean>();
@Output() close = new EventEmitter<boolean>();
toggle() {
this.visible = !this.visible;
if (this.visible) {
this.open.emit(this.visible);
} else {
this.close.emit(this.visible);
}
}
}
OpaqueToken
Creates a token that can be used in a DI Provider.
Using an OpaqueToken is preferable to using strings as tokens because of possible collisions caused by multiple providers using the same string as two different tokens.
example:
import { Component, OpaqueToken, getInjectableName } from 'ng-metadata/core';
const SomeValueToken = new OpaqueToken("value");
const someValue = 'Dont change me DI!';
@Component({
selector: 'my-app',
template: `...`,
providers: [{ provide: SomeValueToken, useValue: someValue }]
})
class AppComponent{}
// test.ts
import { expect } from 'chai';
import { bundle } from 'ng-metadata/core';
import { AppModule } from './app.module';
const angular1Module = bundle( AppModule );
const $injector = angular.injector([angular1Module.name]);
expect($injector.get(getInjectableName(SomeValueToken))).to.equal(someValue);
ChangeDetectorRef
Can be used for custom change detection controll, which can bring us various performance benefits
members
Note: by change detector, we mean in Angular 1 terms, local component $scope
members | Type | Description |
---|---|---|
markForCheck | Function |
Marks all ancestors to be checked. (Calls $scope.$applyAsync() ) |
detectChanges | Function |
Checks the change detector and its children. (Calls $scope.$digest() ). This can also be used in combination with detach to implement local change detection checks. |
detach | Function |
Detaches the change detector from the change detector tree. The detached change detector($scope) will not be checked until it is reattached. |
reattach | Function |
Reattach the change detector to the change detector tree |
All of following examples can be seen live in playground ( clone project, npm install, npm run playground, open localhost:8080/playground )
example:
This example showcases markForCheck
. We are using window.setInterval which won't notify angular about changes.
With ChangeDetectorRef, we can mitigate this problem pretty easily:
import {
Component,
ChangeDetectionStrategy,
ChangeDetectorRef,
OnInit,
Input
} from 'ng-metadata/core';
@Component( {
selector: 'mark-for-check',
changeDetection: ChangeDetectionStrategy.OnPush,
template: `Number of ticks inside child: {{ $ctrl.ticks }}`
} )
export class MarkForCheckComponent implements OnInit {
@Input() ticks;
constructor( private ref: ChangeDetectorRef ) {}
ngOnInit() {
setInterval( () => {
this.ticks++;
// the following is required, otherwise the view and parent component will not be updated
this.ref.markForCheck();
// if we call instead detectChanges, only view and children will be updated
// this.ref.detectChanges();
}, 1000 );
}
}
@Component( {
selector: 'my-app',
changeDetection: ChangeDetectionStrategy.OnPush,
template: `
Number of ticks inside parent: {{ $ctrl.numberOfTicks }}
<mark-for-check [ticks]="$ctrl.numberOfTicks"></mark-for-check>
`
} )
export class AppComponent {
numberOfTicks = 0;
}
example:
The following example defines a component with a large list of readonly data.
Imagine the data changes constantly, many times per second. For performance reasons, we want to check and update the list every five seconds. We can do that by detaching the component's change detector and doing a local check every five seconds.
import {
Component,
Injectable,
ChangeDetectionStrategy,
ChangeDetectorRef
} from 'ng-metadata/core';
@Injectable()
export class DataProvider {
private _data = [ 1, 2, 3 ];
private _interval;
constructor(){
setInterval(()=>{
this._data = [...this._data,...this._data.slice(-2).map(num=>num*2)];
},3000);
}
// in a real application the returned data will be different every time
get data() {
return this._data;
}
}
@Component( {
selector: 'detach',
template: `
<li ng-repeat="d in $ctrl.dataProvider.data track by $index">Data {{d}}</li>
`
} )
export class DetachComponent {
constructor( private ref: ChangeDetectorRef, private dataProvider: DataProvider ) {
ref.detach();
setInterval( () => {
this.ref.detectChanges();
}, 5000 );
}
}
@Component( {
selector: 'app',
changeDetection: ChangeDetectionStrategy.OnPush,
template: `
<detach></detach>
`,
providers: [ DataProvider ],
} )
export class AppComponent {}
example:
The following example creates a component displaying live
data. The component will detach
its change detector from the main change detector tree when the component's live property
is set to false.
import {
Component,
Injectable,
ChangeDetectionStrategy,
ChangeDetectorRef,
OnChanges,
SimpleChange,
Input
} from 'ng-metadata/core';
@Injectable()
export class DataProvider {
data = 1;
constructor() {
setInterval( () => {
this.data = this.data * 2;
}, 2500 );
}
}
@Component( {
selector: 'reattach',
template: `Data: {{$ctrl.dataProvider.data}}`
} )
export class ReattachComponent implements OnChanges {
@Input() live: boolean;
constructor( private ref: ChangeDetectorRef, private dataProvider: DataProvider ) {}
ngOnChanges( changes ) {
const liveChange = changes.live as SimpleChange;
if ( liveChange ) {
if ( liveChange.currentValue ) {
this.ref.reattach();
} else {
this.ref.detach();
}
}
}
}
@Component( {
selector: 'app',
changeDetection: ChangeDetectionStrategy.OnPush,
template: `
Live Update: <input type="checkbox" ng-model="$ctrl.live">
<reattach [live]="$ctrl.live"></reattach>
`,
providers: [ DataProvider ],
} )
export class AppComponent {
live = true;
}