0.1.0 • Published 4 years ago

@blackbox-vision/react-use-config v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

React Use Config License: MIT

: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-config

YARN

yarn add @blackbox-vision/react-use-config

Example Usage

After reading and performing the previous steps, you should be able to import the library and use it like in this example:

  1. Define the config and wrap your App in ConfigProvider:
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;
  1. Import the hook and 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:

PropertiesTypesDefault ValueDescription
configobjectnoneProperty that represents the config object
getConfigfunctionnoneProperty that a function to load config async
debugbooleanfalseProperty 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.