Skip to content

v1.0.1

Compare
Choose a tag to compare
@IpShot IpShot released this 09 Jul 04:27
· 27 commits to master since this release

This release improves the way Flex Reducer managing current components dispatches. Before regular Object was used, but it had 2 problems:

  1. Object doesn't guarantee an order of keys/insertions. At some point it could result in breaking sequence of renders from ancestors to descendants.
  2. Object isn't designed for frequently insert/remove operations as useSelector do on every component mount/unmount. Potentially it could lead to performance issues in some cases like using useSelector in a list item component where the list size is hundreds of items.

To solve this issues Object was changed to Map.