2015-04-01 13:45:56 -04:00
|
|
|
/// <reference path="../../typings/es6-promise/es6-promise.d.ts" />
|
|
|
|
/// <reference path="../../typings/rx/rx.all.d.ts" />
|
|
|
|
|
|
|
|
// HACK: workaround for Traceur behavior.
|
|
|
|
// It expects all transpiled modules to contain this marker.
|
|
|
|
// TODO: remove this when we no longer use traceur
|
|
|
|
export var __esModule = true;
|
|
|
|
|
|
|
|
import {int, global, isPresent} from 'angular2/src/facade/lang';
|
|
|
|
import {List} from 'angular2/src/facade/collection';
|
|
|
|
import * as Rx from 'rx';
|
|
|
|
|
2015-04-24 18:19:11 -04:00
|
|
|
export var Promise = (<any>global).Promise;
|
|
|
|
|
2015-04-01 13:45:56 -04:00
|
|
|
export class PromiseWrapper {
|
|
|
|
static resolve(obj): Promise<any> { return Promise.resolve(obj); }
|
|
|
|
|
|
|
|
static reject(obj): Promise<any> { return Promise.reject(obj); }
|
|
|
|
|
|
|
|
// Note: We can't rename this method into `catch`, as this is not a valid
|
|
|
|
// method name in Dart.
|
|
|
|
static catchError<T>(promise: Promise<T>, onError: (error: any) => T | Thenable<T>): Promise<T> {
|
|
|
|
return promise.catch(onError);
|
|
|
|
}
|
|
|
|
|
|
|
|
static all(promises: List<Promise<any>>): Promise<any> {
|
|
|
|
if (promises.length == 0) return Promise.resolve([]);
|
|
|
|
return Promise.all(promises);
|
|
|
|
}
|
|
|
|
|
|
|
|
static then<T>(promise: Promise<T>, success: (value: any) => T | Thenable<T>,
|
|
|
|
rejection: (error: any) => T | Thenable<T>): Promise<T> {
|
|
|
|
return promise.then(success, rejection);
|
|
|
|
}
|
|
|
|
|
|
|
|
static completer() {
|
|
|
|
var resolve;
|
|
|
|
var reject;
|
|
|
|
|
|
|
|
var p = new Promise(function(res, rej) {
|
|
|
|
resolve = res;
|
|
|
|
reject = rej;
|
|
|
|
});
|
|
|
|
|
|
|
|
return {promise: p, resolve: resolve, reject: reject};
|
|
|
|
}
|
|
|
|
|
|
|
|
static setTimeout(fn: Function, millis: int) { global.setTimeout(fn, millis); }
|
|
|
|
|
|
|
|
static isPromise(maybePromise): boolean { return maybePromise instanceof Promise; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-14 17:34:41 -04:00
|
|
|
export class ObservableWrapper {
|
|
|
|
static subscribe(emitter: EventEmitter, onNext, onThrow = null, onReturn = null) {
|
|
|
|
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; }
|
|
|
|
|
|
|
|
static dispose(subscription: any) { subscription.dispose(); }
|
|
|
|
|
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 {
|
|
|
|
observer(generator: any) {}
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
_subject: Rx.Subject<any>;
|
2015-04-27 19:11:20 -04:00
|
|
|
_immediateScheduler;
|
2015-04-01 13:45:56 -04:00
|
|
|
|
2015-04-14 17:34:41 -04:00
|
|
|
constructor() {
|
|
|
|
super();
|
2015-04-27 19:11:20 -04:00
|
|
|
|
|
|
|
// System creates a different object for import * than Typescript es5 emit.
|
|
|
|
if (Rx.hasOwnProperty('default')) {
|
|
|
|
this._subject = new (<any>Rx).default.Rx.Subject();
|
|
|
|
this._immediateScheduler = (<any>Rx).default.Rx.Scheduler.immediate;
|
|
|
|
} else {
|
|
|
|
this._subject = new Rx.Subject<any>();
|
|
|
|
this._immediateScheduler = (<any>Rx.Scheduler).immediate;
|
|
|
|
}
|
2015-04-01 13:45:56 -04:00
|
|
|
}
|
|
|
|
|
2015-04-14 17:34:41 -04:00
|
|
|
observer(generator) {
|
2015-04-27 19:11:20 -04:00
|
|
|
return this._subject.observeOn(this._immediateScheduler)
|
2015-04-14 17:34:41 -04:00
|
|
|
.subscribe((value) => { setTimeout(() => generator.next(value)); },
|
|
|
|
(error) => generator.throw ? generator.throw(error) : null,
|
|
|
|
() => generator.return ? generator.return () : null);
|
|
|
|
}
|
2015-04-01 13:45:56 -04:00
|
|
|
|
2015-04-14 17:34:41 -04:00
|
|
|
toRx(): Rx.Observable<any> { return this._subject; }
|
2015-04-01 13:45:56 -04:00
|
|
|
|
2015-04-14 17:34:41 -04:00
|
|
|
next(value) { this._subject.onNext(value); }
|
|
|
|
|
|
|
|
throw(error) { this._subject.onError(error); }
|
|
|
|
|
|
|
|
return (value) { this._subject.onCompleted(); }
|
2015-04-27 19:11:20 -04:00
|
|
|
}
|