Skip to content
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

Added blogs related to React state management and Redux middleware #142

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion react-state-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
- **How to Work with and Manipulate State in React**
https://www.sitepoint.com/work-with-and-manipulate-state-in-react/
Covers how to access and update state in components, the difference between state and props, and working with stateless components.

- **React state management: What is it and why to use it?**
https://www.loginradius.com/blog/async/react-state-management/
Gives an introduction to state management in React and how to implement it using React hooks/Redux.

- **Lowest Common Ancestor**
https://blog.embermap.com/lowest-common-ancestor-fbf5d5313a1
Expand All @@ -77,7 +81,7 @@

- **Three approaches to distribute the state across components in React**
https://engineering.hexacta.com/three-approaches-to-distribute-the-state-across-components-in-react-da4db5a389e0
Looks at three ways to handle state that needs to apply to sibling components: controlling the state in the parent, synchronizing the states, and forcing a different component instance via the `key` prop
Looks at three ways to handle state that needs to apply to sibling components: controlling the state in the parent, synchronizing the states, and forcing a different component instance via the `key` prop


#### Using `setState`
Expand Down
4 changes: 4 additions & 0 deletions redux-middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
- **Understanding Redux Middleware**
https://medium.com/@meagle/understanding-87566abcfb7a
Breaks down Redux's applyMiddleware function line-by-line, and explains the concepts involved

- **Introduction to Redux Saga**
https://www.loginradius.com/blog/async/introduction-to-redux-saga/
An easy to understand high level introduction to Redux Saga.

- **Building Redux Middleware**
https://reactjsnews.com/redux-middleware
Expand Down