2019-08-21 21:19:44 +08:00
|
|
|
import { SimpleEmitter } from "./SimpleEmitter";
|
2019-08-30 00:24:03 +08:00
|
|
|
import { WritableProperty } from "./property/WritableProperty";
|
|
|
|
import { SimpleProperty } from "./property/SimpleProperty";
|
2019-08-21 21:19:44 +08:00
|
|
|
import { Emitter } from "./Emitter";
|
2019-08-30 00:24:03 +08:00
|
|
|
import { Property } from "./property/Property";
|
|
|
|
import { DependentProperty } from "./property/DependentProperty";
|
|
|
|
import { WritableListProperty } from "./property/list/WritableListProperty";
|
|
|
|
import { SimpleWritableListProperty } from "./property/list/SimpleWritableListProperty";
|
2019-08-21 21:19:44 +08:00
|
|
|
|
2019-08-23 04:45:01 +08:00
|
|
|
export function emitter<E>(): Emitter<E> {
|
2019-08-21 21:19:44 +08:00
|
|
|
return new SimpleEmitter();
|
|
|
|
}
|
|
|
|
|
|
|
|
export function property<T>(value: T): WritableProperty<T> {
|
|
|
|
return new SimpleProperty(value);
|
|
|
|
}
|
2019-08-23 04:45:01 +08:00
|
|
|
|
2019-09-02 20:41:46 +08:00
|
|
|
export function list_property<T>(...values: T[]): WritableListProperty<T> {
|
2019-08-30 00:24:03 +08:00
|
|
|
return new SimpleWritableListProperty(...values);
|
2019-08-23 04:45:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function add(left: Property<number>, right: number): Property<number> {
|
|
|
|
return left.map(l => l + right);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function sub(left: Property<number>, right: number): Property<number> {
|
|
|
|
return left.map(l => l - right);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function map<R, S, T>(
|
|
|
|
f: (prop_1: S, prop_2: T) => R,
|
|
|
|
prop_1: Property<S>,
|
|
|
|
prop_2: Property<T>,
|
|
|
|
): Property<R> {
|
|
|
|
return new DependentProperty([prop_1, prop_2], () => f(prop_1.val, prop_2.val));
|
|
|
|
}
|