[feat] improve command list performance #1253
HuakunShen
started this conversation in
Feature Requests / Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my use case, I may need to render hundreds even thousands of items.
The current implementation requires adding all items to the list for filtering to work
2 suggestions
Virtual List will largely improve the rendering performance when there are a huge number of items.
Suppose each list item is a js object.
fuse.js allows filtering with multiple fields of an js object instead of using a single value.
Filtering with a single value string is too limited. It has to contain all info needed for filtering as well as being used as a unique identifier to locate its original list item object.
Beta Was this translation helpful? Give feedback.
All reactions