2015-08-20 17:28:25 -04:00
|
|
|
import {global, isPresent} from 'angular2/src/core/facade/lang';
|
2015-10-14 12:41:15 -04:00
|
|
|
// We make sure promises are in a separate file so that we can use promises
|
|
|
|
// without depending on rxjs.
|
|
|
|
import {PromiseWrapper, Promise, PromiseCompleter} from 'angular2/src/core/facade/promise';
|
|
|
|
export {PromiseWrapper, Promise, PromiseCompleter} from 'angular2/src/core/facade/promise';
|
2015-09-11 18:38:09 -04:00
|
|
|
// TODO(jeffbcross): use ES6 import once typings are available
|
|
|
|
var Subject = require('@reactivex/rxjs/dist/cjs/Subject');
|
2015-04-01 13:45:56 -04:00
|
|
|
|
2015-10-01 22:49:45 -04:00
|
|
|
export namespace NodeJS {
|
|
|
|
export interface Timer {}
|
|
|
|
}
|
|
|
|
|
2015-05-19 10:47:30 -04:00
|
|
|
export class TimerWrapper {
|
2015-10-09 20:21:25 -04:00
|
|
|
static setTimeout(fn: (...args: any[]) => void, millis: number): NodeJS.Timer {
|
|
|
|
return global.setTimeout(fn, millis);
|
|
|
|
}
|
2015-10-01 22:49:45 -04:00
|
|
|
static clearTimeout(id: NodeJS.Timer): void { global.clearTimeout(id); }
|
2015-05-12 10:28:57 -04:00
|
|
|
|
2015-10-01 22:49:45 -04:00
|
|
|
static setInterval(fn: (...args: any[]) => void, millis: number): NodeJS.Timer {
|
2015-08-20 19:25:34 -04:00
|
|
|
return global.setInterval(fn, millis);
|
|
|
|
}
|
2015-10-01 22:49:45 -04:00
|
|
|
static clearInterval(id: NodeJS.Timer): void { global.clearInterval(id); }
|
2015-04-01 13:45:56 -04:00
|
|
|
}
|
|
|
|
|
2015-04-14 17:34:41 -04:00
|
|
|
export class ObservableWrapper {
|
2015-08-06 12:52:33 -04:00
|
|
|
// TODO(vsavkin): when we use rxnext, try inferring the generic type from the first arg
|
2015-07-07 23:03:00 -04:00
|
|
|
static subscribe<T>(emitter: Observable, onNext: (value: T) => void,
|
|
|
|
onThrow: (exception: any) => void = null,
|
|
|
|
onReturn: () => void = null): Object {
|
2015-04-14 17:34:41 -04:00
|
|
|
return emitter.observer({next: onNext, throw: onThrow, return: onReturn});
|
|
|
|
}
|
|
|
|
|
2015-04-19 15:45:08 -04:00
|
|
|
static isObservable(obs: any): boolean { return obs instanceof Observable; }
|
|
|
|
|
2015-09-11 18:38:09 -04:00
|
|
|
static dispose(subscription: any) { subscription.unsubscribe(); }
|
2015-04-19 15:45:08 -04:00
|
|
|
|
2015-04-14 17:34:41 -04:00
|
|
|
static callNext(emitter: EventEmitter, value: any) { emitter.next(value); }
|
|
|
|
|
|
|
|
static callThrow(emitter: EventEmitter, error: any) { emitter.throw(error); }
|
|
|
|
|
|
|
|
static callReturn(emitter: EventEmitter) { emitter.return (null); }
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: vsavkin change to interface
|
|
|
|
export class Observable {
|
2015-05-01 17:05:19 -04:00
|
|
|
observer(generator: any): Object { return null; }
|
2015-04-14 17:34:41 -04:00
|
|
|
}
|
|
|
|
|
2015-04-01 13:45:56 -04:00
|
|
|
/**
|
2015-09-30 23:59:23 -04:00
|
|
|
* Use by directives and components to emit custom Events.
|
2015-09-03 19:17:23 -04:00
|
|
|
*
|
|
|
|
* ## Examples
|
|
|
|
*
|
|
|
|
* In the following example, `Zippy` alternatively emits `open` and `close` events when its
|
|
|
|
* title gets clicked:
|
|
|
|
*
|
|
|
|
* ```
|
2015-10-11 10:41:19 -04:00
|
|
|
* @Component({
|
|
|
|
* selector: 'zippy',
|
|
|
|
* template: `
|
2015-09-03 19:17:23 -04:00
|
|
|
* <div class="zippy">
|
|
|
|
* <div (click)="toggle()">Toggle</div>
|
|
|
|
* <div [hidden]="!visible">
|
|
|
|
* <ng-content></ng-content>
|
|
|
|
* </div>
|
|
|
|
* </div>`})
|
|
|
|
* export class Zippy {
|
|
|
|
* visible: boolean = true;
|
2015-09-30 23:59:23 -04:00
|
|
|
* @Output() open: EventEmitter = new EventEmitter();
|
|
|
|
* @Output() close: EventEmitter = new EventEmitter();
|
2015-09-03 19:17:23 -04:00
|
|
|
*
|
|
|
|
* toggle() {
|
|
|
|
* this.visible = !this.visible;
|
|
|
|
* if (this.visible) {
|
|
|
|
* this.open.next(null);
|
|
|
|
* } else {
|
|
|
|
* this.close.next(null);
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*
|
2015-04-01 13:45:56 -04:00
|
|
|
* Use Rx.Observable but provides an adapter to make it work as specified here:
|
|
|
|
* https://github.com/jhusain/observable-spec
|
|
|
|
*
|
|
|
|
* Once a reference implementation of the spec is available, switch to it.
|
|
|
|
*/
|
2015-04-14 17:34:41 -04:00
|
|
|
export class EventEmitter extends Observable {
|
2015-10-09 20:21:25 -04:00
|
|
|
/** @internal */
|
2015-09-11 18:38:09 -04:00
|
|
|
_subject = new Subject();
|
|
|
|
|
|
|
|
observer(generator: any): any {
|
|
|
|
return this._subject.subscribe((value) => { setTimeout(() => generator.next(value)); },
|
|
|
|
(error) => generator.throw ? generator.throw(error) : null,
|
|
|
|
() => generator.return ? generator.return () : null);
|
2015-04-14 17:34:41 -04:00
|
|
|
}
|
2015-04-01 13:45:56 -04:00
|
|
|
|
2015-10-05 21:04:28 -04:00
|
|
|
toRx(): any { return this._subject; }
|
2015-04-01 13:45:56 -04:00
|
|
|
|
2015-09-11 18:38:09 -04:00
|
|
|
next(value: any) { this._subject.next(value); }
|
2015-04-14 17:34:41 -04:00
|
|
|
|
2015-09-11 18:38:09 -04:00
|
|
|
throw(error: any) { this._subject.error(error); }
|
2015-04-14 17:34:41 -04:00
|
|
|
|
2015-09-11 18:38:09 -04:00
|
|
|
return (value?: any) { this._subject.complete(); }
|
2015-04-27 19:11:20 -04:00
|
|
|
}
|