parent destroyable context, usually this
Array of non-primitives to map over
This can be class instances, plain objects, or anything supported by WeakMap's key
How to transform each element from data
,
similar to if you were to use Array map yourself.
This function will be called only when needed / on-demand / lazily.
Generated using TypeDoc
This is not a core part of ember-resources, but is an example utility to demonstrate a concept when authoring your own resources. However, this utility is still under the broader library's SemVer policy.
A consuming app will not pay for the bytes of this utility unless imported.
Reactivily apply a
map
function to each element in an array, persisting map-results for each object, based on identity.This is useful when you have a large collection of items that need to be transformed into a different shape (adding/removing/modifying data/properties) and you want the transform to be efficient when iterating over that data.
A common use case where this
map
resource provides benefits over isEven though the above is
@cached
, if any tracked data accessed during the evaluation ofwrappedRecords
changes, the entire array.map will re-run, often doing duplicate work for every unchanged item in the array.Returns
an object that behaves like an array. This shouldn't be modified directly. Instead, you can freely modify the data returned by the
data
function, which should be tracked in order to benefit from this abstraction.Example