fix(DatagridConfigurable): better detect and handle columns changes#10157
Open
quentin-decre wants to merge 2 commits intomarmelab:masterfrom
Open
fix(DatagridConfigurable): better detect and handle columns changes#10157quentin-decre wants to merge 2 commits intomarmelab:masterfrom
quentin-decre wants to merge 2 commits intomarmelab:masterfrom
Conversation
slax57
requested changes
Aug 26, 2024
Contributor
slax57
left a comment
There was a problem hiding this comment.
Thanks for the PR!
It looks promising 🙂
Could you add some unit tests to prove that it works, including in corner cases, and does not break compatibility?
Thanks!
Contributor
|
I have added some example unit tests, showing how you can check what happens when the code is changed, and how to check what's in the store. |
6 tasks
ea10102 to
f0f763a
Compare
f0f763a to
41c4d36
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
When you change the columns order of a ConfigurableDatagrid, or just if you remove a column and add another one, this is not managed and the column management is broken : aka the displayed columns in the configure list does not control the corresponding columns.
Here is a quick illustration of the issue : https://www.loom.com/share/c5a6afaac36a4111bedf08ece818da17 (in french, sorry)
That's because currently, only a change in the number of columns trigger and update. And even in this case, you may have unexpected results (like the column enabled to be displayed are not the same as before).
Solution
This changes bring :
How To Test
I have tested it multiple times on the following scenarios :
I have ran the tests for non regression

Also, this PR is live on prod for us now. And this is a very used feature among our users :)
Additional Checks
masterfor a bugfix, ornextfor a feature