Say Goodbye To Provider Hell With react-component-pack
A library that allows you to create context provider groups#react#javascript#typescriptFebruary 27, 2020 Β· 1 min read
If you're developing apps with React, you may have faced something like this:
function App() {
return (
<AuthProvider>
<DataProvider>
<AnotherDataProvider>
<WtfProvider>
<ThisIsGettingReallyBigProvider>
<OhMyGodTheresMoreProvider>
<FinallySomeRealComponents />
</OhMyGodTheresMoreProvider>
</ThisIsGettingReallyBigProvider>
</WtfProvider>
</AnotherDataProvider>
</DataProvider>
</AuthProvider>
);
}
That's what people call Provider Hell and I created this tool to make this kind of code more readable.
Here's the same example, using the react-component-pack utility:
import { createPack } from 'react-component-pack';
const ProviderPack = createPack(
AuthProvider,
DataProvider,
AnotherDataProvider,
WtfProvider,
ThisIsGettingReallyBigProvider,
OhMyGodTheresMoreProvider
);
function App() {
return (
<ProviderPack>
<FinallySomeRealComponents />
</ProviderPack>
);
}
NOTE: This utility won't allow you to pass props to a specific provider. Feel free to submit a PR π