Skip to content
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

move .exit before .enter to fix removal of bubbles on redraw #1466

Closed
wants to merge 1 commit into from

Conversation

benheb
Copy link
Contributor

@benheb benheb commented Jul 10, 2018

I am having the same issue with the bubble chart as was fixed with the scatter chart in this pr: https://github.com/dc-js/dc.js/pull/1463/files. Basically when I would call redraw() on a bubble chart and pass in a new group it would update the existing bubbles, but if any were removed from the group... they would not be removed.

This pr moves the removeNodes before the update and it resolves the issue.

I did notice it doesn't seem to be an issue here: https://dc-js.github.io/dc.js/, but I tried 1000 different ways in my code base and each time the bubbles would not be removed until I reordered the .exit and .enter. My only guess is that I'm calling .redraw() on a chart and in the demo that's somehow happening internally? Not really sure.

Related issue (scatter plots) #1460

@gordonwoodhull
Copy link
Contributor

Right, as I noted in #1460, this kind of bug will not be triggered in "normal" crossfilter usage, because crossfilter never removes items: the values of the bins just drop to zero.

It's only if you use a different backend, or if you use "fake groups", that this is possible.

We had a wave of these bugs earlier. Since the original library did not support these use cases, we are lacking tests and that's why it's possible for new bugs to arise.

If you would be willing to add a test where items are truly removed, that would help a lot. You could follow the pattern of the tests I added to #1463, using remove_empty_bins

@benheb
Copy link
Contributor Author

benheb commented Jul 11, 2018

K, will do when I have time. Added some tests just now and they are passing... just not all that sure they are actually testing what they should be testing.

@gordonwoodhull
Copy link
Contributor

Cool! You should be able to revert your fixes and see the tests fail.

@benheb
Copy link
Contributor Author

benheb commented Jul 11, 2018

Yep, they aren't! ;-)

@gordonwoodhull
Copy link
Contributor

Sounds good! Please push the tests to this branch and the PR should be ready to merge.

@gordonwoodhull
Copy link
Contributor

Whoops I misread you. Right, tests that don't fail on buggy code aren't all that helpful. 😸

I'll give it a look right now. Maybe I can just copy the technique from the scatter plot tests.

@gordonwoodhull
Copy link
Contributor

Okay, applying remove_empty_bins to one of the tests that was already filtering on another dimension, and then redrawing, was enough to exercise the bug.

Thanks @benheb! Merged for 3.0.6.

@benheb
Copy link
Contributor Author

benheb commented Jul 11, 2018

Thanks @gordonwoodhull! 👍

gordonwoodhull added a commit that referenced this pull request Jul 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants