2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-04-21 00:56:39 +05:30
|
|
|
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-27 01:18:57 +05:30
|
|
|
// re-export "root" (of chain) collections
|
2020-04-21 00:56:39 +05:30
|
|
|
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-27 01:18:57 +05:30
|
|
|
|
|
|
|
// avoid circular dependency between these classes
|
|
|
|
// and BaseObservableMap (as they extend it)
|
|
|
|
Object.assign(BaseObservableMap.prototype, {
|
2019-02-27 03:15:58 +05:30
|
|
|
sortValues(comparator) {
|
2019-02-27 01:18:57 +05:30
|
|
|
return new SortedMapList(this, comparator);
|
|
|
|
},
|
|
|
|
|
|
|
|
mapValues(mapper) {
|
|
|
|
return new MappedMap(this, mapper);
|
|
|
|
},
|
|
|
|
|
|
|
|
filterValues(filter) {
|
|
|
|
return new FilteredMap(this, filter);
|
|
|
|
}
|
|
|
|
});
|