本文整理汇总了TypeScript中immutable/contrib/cursor.from函数的典型用法代码示例。如果您正苦于以下问题:TypeScript from函数的具体用法?TypeScript from怎么用?TypeScript from使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了from函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(){
this.key = 'react-todos';
this.todos = from(fromJS(Utils.store(this.key)),
this.onChange.bind(this));
this.onChanges = new RX.BehaviorSubject(this.todos);
this.history = fromJS([]);
}
示例2: constructor
constructor() {
this.onStateUpdateBind = this.onStateUpdate.bind(this);
this.cursor = buildCursorFrom(fromJS(emptyAppState), this.onStateUpdateBind);
this.subject = new Rx.BehaviorSubject(this.cursor);
}
示例3: onChange
onChange(newValue) {
this.todos = from(newValue, this.onChange.bind(this));
this.onChanges.onNext(this.todos);
this.store();
}
示例4: onStateUpdate
onStateUpdate(data) {
this.cursor = buildCursorFrom(data, this.onStateUpdateBind);
this.subject.next(this.cursor);
}