-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Performance (datatable): limiting re-render for only radiobutton/checkbox cells at row selection #7425
base: master
Are you sure you want to change the base?
Performance (datatable): limiting re-render for only radiobutton/checkbox cells at row selection #7425
Conversation
…odyCell should re-render.
…y avoiding unnecessary re-render of cells. CAREFUL: some bugs detected related to MetaKey which are still not yet fixed.
…and getNestedValue from BodyCell.js to ObjectUtils and ran prettier to avoid pull request errors
… are only created once. Wrapped several of them in useCallback.
…a RadioCheckCell. The latter is used for the checkbox and radio buttons. This is to avoid re-rendering all cells when a row is selected. Now, only the RadioCheckCell is re-rendered.
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 2 Skipped Deployments
|
another good one! I assigned PrimeTek to review |
…ns of BodyCell.js from usecallback - they would get re-created anyway since they depend on functions.
global search typing is slow on record with 5k rows. Is this any primereact issues |
Is there a chance to implement these modifications in version 10.9.2? |
@mertsincan can you make any statement to this and the other performance PR? |
@vasubansal333, @rafalwojdowski, @sja-cslab If you need assistance implementing these modifications into your project until the PR is accepted or with other performance improvements, you can contact me by e-mail |
Defect Fixes
Fix #2979.
Main change was the split of the BodyCell into two separate components: one for the Radio buttons and Checkboxes, and another for the rest of the cells. In this way, it is now possible to define different dependencies for them in React.memo, which create a performance gain when selecting row -> only the radio buttons/checkboxes cells are now re-rendered.
This is quite significant mainly when making a "select all rows" operation with a large dataset.
Also some smaller performance improvements by taking out parameters and functions of the BodyCells and placing in the BodyRow and wrapping them in useCallback.
There is still room for performance improvements in future contributions by implementing priority loading and meaningful prop comparison for BodyRow component. Sorting/Filtering operations are still quite inneficient and should also be worked on in the future (will try to do it in the next weeks/months).