Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/talpor/react-context-manager

A lightweight manager for your Context API's.
https://github.com/talpor/react-context-manager

Last synced: about 1 month ago
JSON representation

A lightweight manager for your Context API's.

Awesome Lists containing this project

README

        

# React Context Manager

A lightweight manager for your Context API's.

It helps you to set a standard for your React apps using Context API.

We recommend you to use this along with our custom [CLI](https://github.com/talpor/react-context-manager-cli).

For TypeScript documentation, [click here](https://github.com/talpor/react-context-manager/blob/a5e4b95a516c04dda6f64c75308b477ca3cf6fcd/README.ts.md).

If you want to follow a tutorial, we recommend this [post](https://medium.com/swlh/handle-the-state-of-reactjs-applications-in-a-simple-and-efficient-way-225975562f33?source=friends_link&sk=04bff2674ed9a63d799e97327af3bf55)

## Influences

React Context Manager obtained some ideas from [Redux](https://github.com/reduxjs/redux), such as the structure for actions and some HOC functions for class-based components, but avoiding a lot of extra verbosity and complexity by using React's own Context API.

## Authors
- Juan Perozo (https://github.com/jperozo)
- Max Rondón (https://github.com/mrondon)
- Fernando Galindez (https://github.com/fergalindez)

## Instalation

To add `@talpor/react-context-manager` to your project run the following command in your project folder:

With **npm**:

```console
npm install --save @talpor/react-context-manager
```

With **yarn**:

```console
yarn add @talpor/react-context-manager
```

**Note:** React Context Manager works with React >= 16.8, because it uses [hooks](https://reactjs.org/docs/hooks-intro.html) internally.

## Basic Concepts

### Store

This is the data structure of your context. It should be divided by app or by scope, according to your application needs.

The objects inside your scope can be whatever you want and you can access them directly, so we removed the need of using selectors, unlike Redux, though you can still use them if you wish to.

Here is an example:

```jsx
const store = {
team: {
token: 'ReactContextManagerRocks',
colaborators: [
{ email: '[email protected]' },
{ email: '[email protected]' },
{ email: '[email protected]' },
...
{ email: '[youremail]@[yourdomain].com' },
},
},
test: {
test1: 'TEST',
}
};
```

### Actions

This is how you change the context throughout the component tree. The actions have to be placed inside a scope under the same name as the store portion it changes.

Also, the dispatcher injects the current state portion to the action in case data is needed there.

Finally, actions should return the next state of the application, as shown in this next example:

```jsx
const actions = {
team: {
addColaborator: (state) => (email) => {
const colaborators = [
...state.colaborators,
{email: '[youremail]@[yourdomain].com'}
];
return { ...state, colaborators };
},
},
test: {
actionTest: (state) => (text) => {
return {
...state,
test: {
...state.test,
text
}
};
}
}
};
```

## Usage

In order to create a context you need to import a `ContextProvider` around the component tree where you want to use it. Here we set it on the root, but it can be done anywhere on the component tree:

***index.jsx***
```jsx
import React from 'react';
import ReactDOM from 'react-dom';

import { ContextProvider, initContext } from '@talpor/react-context-manager';

const context = initContext();

const actions = {
test: {
actionTest: (state) => (text) => {
return {
...state,
test: {
...state.test,
test1: text
}
};
}
}
};

const store = {
test: {
test1: 'TEST',
}
};

ReactDOM.render(


,
document.getElementById('root')
);
```

### ContextProvider's Props

| ***Name*** | ***Default*** |***Required***|***Description*** |
| ------------- |---------------|--------------|-----------------------------------------------------------------------------------------|
| store | N/A |True | This is the initial store of your context. For more info, re-visit the previous section.|
| actions | N/A |True | Actions that are to be made avaible on the context. |
| context | N/A |True | Context used through the provider's children. |

***App.jsx***
```jsx
import React, { useContext, useEffect } from 'react';

import { context } from '../index.jsx';

function App() {
const context = useContext(context);
useEffect(() => {
context.actions.test.actionTest('Hello World!');
}, []);

return (



logo


{context.test.test1}


{
context.actions.test.actionTest('Bye World!')
}}
>
Say Goodbye!



);
}

export default App;

```

***And that's it!***

That's the way we get our context along the application and the only thing you need to worry about is creating powerful actions.

## Backwards compatibility

We understand not all projects would want to use function-based components and, thinking of that, we implemented a HOC (High Order Component) called `mapContextToProps` (very similar to Redux), in order to inject the context as props in your component, as you can see next:

```jsx
import React from 'react';

import {
mapContextToProps
} from '@talpor/react-context-manager';

import { context } from '../index.js'

class BaseApp extends React.Component {
componentDidMount() {
this.props.actions.test.actionTest('Hello World!');
}
render() {
return (



logo


{this.props.store.test.test1}


{
this.props.actions.test.actionTest('Bye World!')
}}
>
Say Goodbye!



);
}
}

export default mapContextToProps(context)(BaseApp)('test');
```