@blackbox-vision/react-use-config v0.1.0
React Use Config 
:rocket: Custom Provider and Hook for managing config in React Apps.
Table of contents
Use case
You need a proper way to access config from your react components and custom hooks.
Compatibility
Our package currently supports apps with React >= 16.8.0. You can use this package for React and React Native Apps.
Installation
You can install this library via NPM or YARN.
NPM
npm i @blackbox-vision/react-use-configYARN
yarn add @blackbox-vision/react-use-configExample Usage
After reading and performing the previous steps, you should be able to import the library and use it like in this example:
- Define the
configand wrap your App inConfigProvider:
import React from 'react';
import ReactDOM from 'react-dom';
import { ConfigProvider } from '@blackbox-vision/react-use-config';
import Header from './Header';
const config = {
logo: 'https://xyz.com/logo.png',
};
const App = () => (
<ConfigProvider config={config} debug={false}>
<App />
</ConfigProvider>
);
export default App;- Import the
hookand consume the config part you really need:
import React from 'react';
import { useConfig } from '@blackbox-vision/react-use-config';
const Header = (props) => {
const logoUri = useConfig(config => config?.logo);
return (
<div>
<img src={logoUri} />
{...}
</div>
);
};
export default Header;Component API
The ConfigProvider component has the following props:
| Properties | Types | Default Value | Description |
|---|---|---|---|
| config | object | none | Property that represents the config object |
| getConfig | function | none | Property that a function to load config async |
| debug | boolean | false | Property that enables debug mode |
Hooks API
useConfig
The useConfig hook lets you retrieve the full config object or a specific config part using a selector.
Parameters
The hook receives the following parameters:
selector: It's an optional function that gives you the config and let you return an specific value that will be memoized.
Return Value
If you pass the selector to the useConfig hook you'll receive an specific config item. In case you didn't, you'll only receive the fully config object.
Issues
Please, open an issue following one of the issues templates. We will do our best to fix them.
Contributing
If you want to contribute to this project see contributing for more information.
License
Distributed under the MIT license. See LICENSE for more information.
5 years ago