Level Up Coding

Coding tutorials and news. The developer homepage gitconnected.com && skilled.dev && levelup.dev

Follow publication

React: How I learned to create optimized contexts

Thomas Juster
Level Up Coding
Published in
6 min readNov 9, 2020

--

Why does everyone keep talking about contexts … ?

A bit of … well, context 🤭

Let’s dive

Le awesome dive

First approach

const theme = useContext(ThemeContext)
// or
<ThemeContext.Consumer>
{(theme) => …}
</ThemeContext.Consumer>

What I consider to be a good context

How to write a good context

Architecture/Skeleton 🏚

Consumers: asserting the provided value

Mmh, nope.
Contol-freak consumers

Providers: avoid unnecessary re-renders

Inefficient provider being inefficient.

Wrapping up 🧐

Your next dive with a React Context 🤓
Final glance 💅

Going further 😤

🙇 🙇‍♂️ 🙇‍♀️
Now I’m done. Really. Not joking.
Congrats !
You, next time a context bothers you.
🦄

--

--