2020-04-20 21:26:39 +02:00
|
|
|
import {SortedMapList} from "./list/SortedMapList.js";
|
|
|
|
import {FilteredMap} from "./map/FilteredMap.js";
|
|
|
|
import {MappedMap} from "./map/MappedMap.js";
|
|
|
|
import {BaseObservableMap} from "./map/BaseObservableMap.js";
|
2019-02-26 20:48:57 +01:00
|
|
|
// re-export "root" (of chain) collections
|
2020-04-20 21:26:39 +02:00
|
|
|
export { ObservableArray } from "./list/ObservableArray.js";
|
|
|
|
export { SortedArray } from "./list/SortedArray.js";
|
|
|
|
export { MappedList } from "./list/MappedList.js";
|
|
|
|
export { ConcatList } from "./list/ConcatList.js";
|
|
|
|
export { ObservableMap } from "./map/ObservableMap.js";
|
2019-02-26 20:48:57 +01:00
|
|
|
|
|
|
|
// avoid circular dependency between these classes
|
|
|
|
// and BaseObservableMap (as they extend it)
|
|
|
|
Object.assign(BaseObservableMap.prototype, {
|
2019-02-26 22:45:58 +01:00
|
|
|
sortValues(comparator) {
|
2019-02-26 20:48:57 +01:00
|
|
|
return new SortedMapList(this, comparator);
|
|
|
|
},
|
|
|
|
|
|
|
|
mapValues(mapper) {
|
|
|
|
return new MappedMap(this, mapper);
|
|
|
|
},
|
|
|
|
|
|
|
|
filterValues(filter) {
|
|
|
|
return new FilteredMap(this, filter);
|
|
|
|
}
|
|
|
|
});
|