Private
_loadedPrivate
_loadingReadonly
itemsSort the data on field and direction
True when data has been loaded at least once
True when the store is loading
The filter() method creates a new array with all elements that pass the test implemented by the provided function.
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.
CollectionItem | undefined
Returns the value of the first element in the array where predicate is true, and undefined otherwise.
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.
CollectionItem | undefined
Returns the index of the first element in the array where predicate is true, and -1 otherwise.
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.
Fire an event
When a listener returns false this function will return false too.
Rest
...args: Parameters<StoreEventMap<any, RecordType>[K]>Performs the specified action for each element in an array.
A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
Optional
thisArg: anyAn object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
Protected
internalAdd a listener
Optional
options: ObservableListenerOptsProtected
onProtected
relayRemove listener
Generated using TypeDoc
Generic data store used by components