-
Notifications
You must be signed in to change notification settings - Fork 216
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
customMerge never being called #199
Comments
Hi, I'm not affiliated with this library, but I find it quite useful and stumbled across similar issues recently, so I created a codesandbox to test this issue. It seems that there are 2 problems:
I think it would make sense that a custom merger should always be invoked, if available, when the item is non-mergeable. It also might make sense to have an additional configuration option(s) to determine whether or not an object is included/excluded from the output. This would make the semantics behind There are several scenarios to consider, all of which would change the existing behavior and API surface area. For example:
I'm not sure how much the author(s) would be comfortable with changing though. I'm happy to review and discuss as time permits. |
Echoing @superguineapig comment, and expanding on it a bit; the default isMergeableObject function checks for non-null "objects", but boolean, string, etc. values will not then be "mergeable", and customMerge will not be called for properties with such values. But I want my custom merge function to compare let's say true and true for a particular property on target and source and return undefined in that case, so that the destination property value is set to undefined (essentially "voiding" it), for the purpose of producing a merged object that just reflects properties that have changed. So it seems we should not be calling isMergeableObject on the value of source keys and only when that returns true then getting the merge function and using it to perform the merge. Rather we should call propertyIsOnObject(source, key) instead, just as we do on the target object at that time. Thanks! |
usage
note: without joda this thing works perfectly
I breakpointed it, and
guessJodaOptions()
is called but nevercustomMerge
.The text was updated successfully, but these errors were encountered: