Latest news about Bitcoin and all cryptocurrencies. Your daily crypto news habit.
Recently React introduced some new cool fetures, one of interesting and much awaited feature is New Context API. New context API introduced with version 16.3. Context API’s are very useful in state management without props drilling. Let’s deep dive into the same.
Problem
In many cases, in our application we need to pass the state of componenet to two-three level deep. so we passed props down to the levels and levels of the component tree when not all of those components necessarily need those props. Suppose component hierarchy is complex then state management would be overhead for developers.
Solution
For state management theres are couple of libraries available like Redux (most used and trending). But React introduced the Context API to solve the problem of props drilling and made developers work of state management simple.
When to use Context
As React suggests “If you only want to avoid passing some props through many levels. Context is designed to share data that can be considered “global” for a tree of React components, such as the current authenticated user, theme, or preferred language.”
How to use Context
So now if you want to use context in your application, first create context object.
import { createContext } from 'react';
const {Provider, Consumer } = React.createContext();
Then create a wrapper component that will return Provider component and also add as children all the components from which you want to access the context.
class ProviderComponent extends Component { state = { title : “Vishal”, }
render() { return ( <Provider value={this.state}> <Website /> </Provider> ) }}
Our Website component look like
const Website = () => ( <div> <Header /> <Footer /> </div>)
Now if we want to access the title from provider component to the Header componet, we can simply consume state of provider component using context without prop drilling.
const Header = () => ( <div> <Consumer> {(context) => context.title} </Consumer> </div>)
Conclusion
This new cool feature of ReactJS helps developers to make their work simple and easy. For a simple prop drilling solution, context works perfectly but for larger apps that have complex states and reducers, Redux may be a the better solution.
Thanks for reading. I hope you enjoyed this article 🙏
React’s New Context API was originally published in Hacker Noon on Medium, where people are continuing the conversation by highlighting and responding to this story.
Disclaimer
The views and opinions expressed in this article are solely those of the authors and do not reflect the views of Bitcoin Insider. Every investment and trading move involves risk - this is especially true for cryptocurrencies given their volatility. We strongly advise our readers to conduct their own research when making a decision.