Skip to content

Instantly share code, notes, and snippets.

@kai101
Last active January 10, 2019 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kai101/05f9dc6b286b60de2347753a977a777b to your computer and use it in GitHub Desktop.
Save kai101/05f9dc6b286b60de2347753a977a777b to your computer and use it in GitHub Desktop.
Problem set

Collection of problem occur along development

  • Redux store with generic reusable component binding.

    • Five generic components with handles to dispatch action.
    • how does reducer know which which component should receive the new action state.
  • Learnt performance impact of redundant rendering when redux refresh.

    • Have more small component connect with store rather than a few giant component connect with store
    • Reduce rerender of many component when one of the reducer change when many small component connected with store.
    • Need flatter architecture for redux to work.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment