All common directives, forms, and pipes have been moved out of angular2/core,
but we kept reexporting them to make transition easier.
This commit removes the reexports.
BREAKING CHANGE
Before
import {NgIf} from 'angular2/core';
After
import {NgIf} from 'angular2/common';
Closes #5362
98 lines
2.7 KiB
TypeScript
98 lines
2.7 KiB
TypeScript
import {bootstrap} from 'angular2/bootstrap';
|
|
import {Component, View} from 'angular2/core';
|
|
import {NgIf} from 'angular2/common';
|
|
import {TimerWrapper} from 'angular2/src/facade/async';
|
|
|
|
@Component({selector: 'async-app'})
|
|
@View({
|
|
template: `
|
|
<div id='increment'>
|
|
<span class='val'>{{val1}}</span>
|
|
<button class='action' (click)="increment()">Increment</button>
|
|
</div>
|
|
<div id='delayedIncrement'>
|
|
<span class='val'>{{val2}}</span>
|
|
<button class='action' (click)="delayedIncrement()">Delayed Increment</button>
|
|
<button class='cancel' *ng-if="timeoutId != null" (click)="cancelDelayedIncrement()">Cancel</button>
|
|
</div>
|
|
<div id='multiDelayedIncrements'>
|
|
<span class='val'>{{val3}}</span>
|
|
<button class='action' (click)="multiDelayedIncrements(10)">10 Delayed Increments</button>
|
|
<button class='cancel' *ng-if="multiTimeoutId != null" (click)="cancelMultiDelayedIncrements()">Cancel</button>
|
|
</div>
|
|
<div id='periodicIncrement'>
|
|
<span class='val'>{{val4}}</span>
|
|
<button class='action' (click)="periodicIncrement()">Periodic Increment</button>
|
|
<button class='cancel' *ng-if="intervalId != null" (click)="cancelPeriodicIncrement()">Cancel</button>
|
|
</div>
|
|
`,
|
|
directives: [NgIf]
|
|
})
|
|
class AsyncApplication {
|
|
val1: number = 0;
|
|
val2: number = 0;
|
|
val3: number = 0;
|
|
val4: number = 0;
|
|
timeoutId = null;
|
|
multiTimeoutId = null;
|
|
intervalId = null;
|
|
|
|
increment(): void { this.val1++; };
|
|
|
|
delayedIncrement(): void {
|
|
this.cancelDelayedIncrement();
|
|
this.timeoutId = TimerWrapper.setTimeout(() => {
|
|
this.val2++;
|
|
this.timeoutId = null;
|
|
}, 2000);
|
|
};
|
|
|
|
multiDelayedIncrements(i: number): void {
|
|
this.cancelMultiDelayedIncrements();
|
|
|
|
var self = this;
|
|
function helper(_i) {
|
|
if (_i <= 0) {
|
|
self.multiTimeoutId = null;
|
|
return;
|
|
}
|
|
|
|
self.multiTimeoutId = TimerWrapper.setTimeout(() => {
|
|
self.val3++;
|
|
helper(_i - 1);
|
|
}, 500);
|
|
}
|
|
helper(i);
|
|
};
|
|
|
|
periodicIncrement(): void {
|
|
this.cancelPeriodicIncrement();
|
|
this.intervalId = TimerWrapper.setInterval(() => { this.val4++; }, 2000)
|
|
};
|
|
|
|
cancelDelayedIncrement(): void {
|
|
if (this.timeoutId != null) {
|
|
TimerWrapper.clearTimeout(this.timeoutId);
|
|
this.timeoutId = null;
|
|
}
|
|
};
|
|
|
|
cancelMultiDelayedIncrements(): void {
|
|
if (this.multiTimeoutId != null) {
|
|
TimerWrapper.clearTimeout(this.multiTimeoutId);
|
|
this.multiTimeoutId = null;
|
|
}
|
|
};
|
|
|
|
cancelPeriodicIncrement(): void {
|
|
if (this.intervalId != null) {
|
|
TimerWrapper.clearInterval(this.intervalId);
|
|
this.intervalId = null;
|
|
}
|
|
};
|
|
}
|
|
|
|
export function main() {
|
|
bootstrap(AsyncApplication);
|
|
}
|