es6/Notification.js
import { Observable } from './Observable';
/**
* 代表可以被 {@link Observable} 发出的基于推送体系的事件或者值。对于像 {@link materialize},
* {@link dematerialize}, {@link observeOn} 和其他管理通知的操作符来说,Notification 类尤其适用。
* 除了包装真正发出的值,它还使用元数据进行注解。例如,推送消息的类型是(`next`,`error`, or `complete`)。
*
* @see {@link materialize}
* @see {@link dematerialize}
* @see {@link observeOn}
*
* @class Notification<T>
*/
export class Notification {
constructor(kind, value, error) {
this.kind = kind;
this.value = value;
this.error = error;
this.hasValue = kind === 'N';
}
/**
* 将由 Notification 包装过的值传递给给定的 `observer`。
* @param {Observer} observer
* @return
*/
observe(observer) {
switch (this.kind) {
case 'N':
return observer.next && observer.next(this.value);
case 'E':
return observer.error && observer.error(this.error);
case 'C':
return observer.complete && observer.complete();
}
}
/**
* 给定一些 {@link Observer} 的回调函数, 将当前 Notification 所表示的值正确的传递给相应的回调函数。
* @param {function(value: T): void} next Observer 的 `next` 回调函数。
* @param {function(err: any): void} [error] Observer 的 `error` 回调函数。
* @param {function(): void} [complete] An Observer 的 `complete` 回调函数。
* @return {any}
*/
do(next, error, complete) {
const kind = this.kind;
switch (kind) {
case 'N':
return next && next(this.value);
case 'E':
return error && error(this.error);
case 'C':
return complete && complete();
}
}
/**
* 接受一个 Observer 或者它的回调函数,然后相应地调用 `observe` 或者 `do` 方法。
* @param {Observer|function(value: T): void} nextOrObserver Observer 或者
* `next` 回调函数。
* @param {function(err: any): void} [error] Observer 的 `error` 回调函数。
* @param {function(): void} [complete] Observer 的 `complete` 回调函数。
* @return {any}
*/
accept(nextOrObserver, error, complete) {
if (nextOrObserver && typeof nextOrObserver.next === 'function') {
return this.observe(nextOrObserver);
}
else {
return this.do(nextOrObserver, error, complete);
}
}
/**
* 返回的 Observable 只传递代表当前 Notification 实例的通知。
* @return {any}
*/
toObservable() {
const kind = this.kind;
switch (kind) {
case 'N':
return Observable.of(this.value);
case 'E':
return Observable.throw(this.error);
case 'C':
return Observable.empty();
}
throw new Error('unexpected notification kind value');
}
/**
* 使用给定的值创建类型为 `next` 的 Notification 实例的快捷方法。
* @param {T} value `next` 的值。
* @return {Notification<T>} 代表传入值的`next`型通知实例。
*/
static createNext(value) {
if (typeof value !== 'undefined') {
return new Notification('N', value);
}
return this.undefinedValueNotification;
}
/**
* 使用给定的错误对象创建类型为 `error` 的 Notification 实例的快捷方法。
* @param {any} [err] `error` 错误。
* @return {Notification<T>} 代表传入错误的`error`型通知实例。
*/
static createError(err) {
return new Notification('E', undefined, err);
}
/**
* 创建类型为 `complete` 的 Notification 实例的快捷方法。
* @return {Notification<any>} 没有值的`complete`型的通知。
*/
static createComplete() {
return this.completeNotification;
}
}
Notification.completeNotification = new Notification('C');
Notification.undefinedValueNotification = new Notification('N', undefined);
//# sourceMappingURL=Notification.js.map