antd is great component library, however I am facing some challenges while integrating the react-window with Transfer component.
I am trying to render a huge list in the Transfer component and since the antd 3.x Transfer component lags as the items length increases so I thought of using the react-window component with the Transfer component.
In the link:- https://stackblitz.com/edit/react-ofcadv-gcds33?file=index.js
I am trying to integrate the react-window with the transfer component but unable to set up some of default behavior available in the antd transfer component. To view the default behavior of the antd component we can check by setting perfMode to false in the code base.
Some of the basic things like selectAll etc. doesn't work when using FixedSizeList component with the Transfer component.
Any help which will point me in the right direction is appreciated.
Steps to reproduce:-
- Visit https://stackblitz.com/edit/react-ofcadv-gcds33?file=index.js
- To enable virtualization goto line number 126 of index.js and set perfMode to true.
- Select some elements and click on the right arrow.
- selected elements shifts to the right bucket but doesn't get unchecked.
it seems like you are missing to pass selectedKeys.
Have a look at completely working solution below:
Referring a link as well for you.
Good luck!