-
Notifications
You must be signed in to change notification settings - Fork 484
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need clarification on Transform behavior. #618
Comments
Added additional 'dataOptions' parameter to Resultset eqjoin and transform eqJoin step operations to allow removing meta from both left and right sides. This is meant for easier grafting into single object to be inserted into the eqJoin (temporary) collection.
eqJoin creates new wrapper object and inserts those objects into a (new) throwaway collection for future chain ops or call to data(). The derived objects to be inserted into this throwaway collections can not already have $loki or meta or those inserts will fail. Usually you would explicitly name properties in a new object literal, but to do what you are requesting required stripping meta within left and right sides. I modified eqJoin to allow extra parameter 'dataOptions'. It will be applied to left side object always (the resultset you are calling eqJoin from). If your right side data is Collection or Resultset it will also be passed to data() call for those as well. (I just added support for Collection). I have created a new eqJoin loki sandbox gist to demonstrate this new reworked eqJoin usage.
It is based on our unit tests which I will need to add a new test for this soon. Let me know if you still have issues. |
Thank you for the quick reply, and for taking the time to implement a solution. I think the solution works very well, and it's a good approach. Would it be possible to implement the same Also, on a related note, the Here is the relevant code from:
|
The map transform (as well as the chained method itself) dumps mapped objects into anonymous collection which will need to add meta there. This map only accepts 1 object. Or are you referring to eqJoin mapFun which accepts two (left and right)? Do you expect the object you return from map of single (collection object) to have loki and or meta? If not you can removeMeta on call to data like : coll.chain("mytransform").data({ removeMeta:true }); Or (if chaining) : coll.chain().map(mapFun).data({ removeMeta:true }); I tried adding to map to solve your previous problem before recognizing the issue was elsewhere. Wouldn't any |
The problem is how the data is injected into the mapping function. Given my setup code from the top of this page, if you attempt this code:
You will receive the error: So, just as in the case of That is why I'm asking if it would be possible to implement the |
…oveMeta also added unit tests, rebuilt minified, and jsdocs
Ok so for just grafting extra properties without defining new object... I've checked that in. Word of caution, by default loki does not clone objects so arbitrarily modifying those actual object references will normally modify the documents in the collection, circumventing index logic and meta checks, etc... possibly corrupting integrity of collection. With removeMeta, cloning is implied and if you are not already cloning we will shallow clone so you might remove or add top level properties without affecting collection. If you wish to manipulate deeper within the objects, you should explicitly specify 'parse-stringify' cloneMethod in dataOptions to deep copy the objects... or apply that clone method to the entire collection options if you expect to be doing this in a variety of methods. You may need to balance performance with clone safety. |
Add additional 'dataOptions' parameter to Resultset eqjoin and transform eqJoin step operations to allow removing meta from both left and right sides. This is meant for easier grafting into single object to be inserted into the eqJoin (temporary) collection. (See techfort/LokiJS#618)
…one/removeMeta (#34) (See techfort/LokiJS#618)
Add additional 'dataOptions' parameter to Resultset eqjoin and transform eqJoin step operations to allow removing meta from both left and right sides. This is meant for easier grafting into single object to be inserted into the eqJoin (temporary) collection. (from techfort/LokiJS#618)
…one/removeMeta (#34) (from techfort/LokiJS#618)
I've been testing these changes for a little while now, and I can confirm that everything works as expected, so I'm closing this. Thank you again. |
Hi,
I'm having some trouble understanding how to correctly use the collection transforms. More specifically, I'm trying to figure out the correct way that the
eqJoin
andmap
transforms should be used.Given this setup code:
I'd like to to join the
data
andjdata
docsets. So I create a transform to allow me to do this.So, without providing a
mapFun
option to theeqJoin
transform, the standard mapping function is applied yielding output that looks like this.But I would rather have the data be joined directly into the document, so I modify the transform to look like this.
But when I invoke the transform, I get this error:
Error: Document is already in collection, please use update()
It seems as if the data is being re-inserted into the collection, and the unique keys are clashing. So I attempted to strip the metadata from the record.
Doing this yields the correct output:
This same behavior also occurs if I use the
map
transform and attempt to project the dataset. I need to strip the loki metadata, otherwise I get the same error as before.If transforms are meant to be a way to restructure the dataset for output, does it make sense to have to manually strip the document metadata anytime the data needs to be changed?
The error advises me to use
update
, but as far as I understand, that modifies the original data.Is there a better way to restructure or "project" data for use in views or as a means for output only?
The text was updated successfully, but these errors were encountered: