Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/josepot/react-redux-internal-state
https://github.com/josepot/react-redux-internal-state
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/josepot/react-redux-internal-state
- Owner: josepot
- License: mit
- Created: 2016-08-08T18:49:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-29T09:08:26.000Z (over 7 years ago)
- Last Synced: 2024-10-31T17:03:25.473Z (8 days ago)
- Language: JavaScript
- Size: 2.29 MB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
React bindings for
[Redux-Internal-State](https://github.com/josepot/redux-internal-state)
A library that will help you manage the transient state of your react-redux
app.# What is this about?
## The problem
When developing redux-apps: is it a good idea to keep all the state of your app
in the redux store? Should we also keep in our redux store the transient data
of our app and the "internal state" of your ui components? Do we want our UI
components to be able to manage their own state?Let's imagine that we have a carousel component that receives the following
props from a container: `width` and `slides`. Shoudln't the carousel itself be
the one responsible for managing its internal state? (the slide that it's
currently visible, the transitions, etc?) Should we manage that state with
redux? Do we want to have that transient state it in the redux store? Could
there be a way to have both things at once: the carousel managing its internal
state and at the same time to keep that state in the redux-store?This library will help you to do exactly that: allow your components to manage
their internal state and at the same time keep that state in the global store
without the component being aware of that.## But why would I want to do that?
For a few different reasons:
1) Being able to manage the "internal state" of your compoenents using actions,
reducers and selectors implies that you won't need to make any mutations, all
the state management flow will be functional. Which will make your component
easier to test and easier to reason about.2) Because it will make debugging a lot easier: You will be able to time
travel through the different events that affected the state of your component.3) Because you will be able to make small unit tests on all the different parts
of your components.4) Because if all the state of your application lives in the redux-store you
will be able to reproduce any given state of your application by reproducing
the actions. As soon as you have a component that behaves independently from
the state of the redux-store, the state of your app will stop being
deterministic.## How do I use this?
First lets install `redux-internal-state` and `react-redux-internal-state`:
```
npm install --save redux-internal-state react-redux-internal-state
```Now let's add an entry in the main reducer of the app. Is in this entry where
the transient-state data will be stored, for example:```js
import { combineReducers } from 'redux';
import reduxInternal from 'redux-internal-state';
import oneOfYourReducers from './oneOfYourReducers';const INTERNAL_STATE_KEY = 'componentsTransientData';
export default combineReducers({
[INTERNAL_STATE_KEY]: reduxInternal(INTERNAL_STATE_KEY),
oneOfYourReducers,
// ...
});
```Now let's say that you want to create a component that manages its "internal state".
First define the actions that will trigger state changes:```js
// This file would be located somewhere like: src/components/tabs-component/actions.jsexport const TAB_SELECTED = 'TAB_SELECTED';
export actionCreators = {
onTabSelect: tabId => ({ type: TAB_SELECTED, payload: { tabId } })
};
```Now let's make a simple reducer for the "internal state" of our component:
```js
// This file would be located somewhere like: src/components/tabs-component/reducer.jsimport { TAB_SELECTED } from './actions';
const INITIAL_STATE = 0;
export default (state = INITIAL_STATE, { type, payload }) =>
type === TAB_SELECTED ? payload.tabId : state;```
Next, lets say that you have a tabs component and that you need to receive
through props the dispatcher function that will be called when a new tab is
selected and the current state of your tabs component. You could do this:```js
// This file would be located somewhere like: src/components/tabs-component/index.jsimport React from 'react';
import connect from 'react-redux-internal-state';
import reducer from './reducer';
import { actionCreators } from './actions';const tabs = ({ selectedTab, onTabSelect, ...otherProps }) => (
// Your code here
);// This connect function works like the react-redux connect function with the
// only differences being that:
// in the 'stateToProps' function the state parameter will have 2 entries:
// `instance`: with the state of your component
// `children`: with the "internal state" of any other children that it's
// rendered inside this component that are also using this library. Most of the
// times you won't need this.
export default connect(
state => ({ selectedTab: state.instance }),
actionCreators
)(
// The "dumb" component
tabs,// The name of the entry that will be generated under the
// "componentsTransientData" entry of your store. The state of the different
// Instances of 'tabs' will be placed there.
'stateOfMyTabs',// The reducer that defines the transient/internal state of this component
reducer,// A optinal function to initialize the state of the component when it gets
// rendered. If this parater is not used, the state of the component will
// be the default state of the reducer.
(externalProps => externalProps.initialState)
);
```And finally, when you instantiate your `Tabs` you have to pass an `instanceId`
property to them, like this:```js
// ... The rest of the code here
```
## Examples
So far there is just one example, but it covers all the different possibilities
of this library:- [Carousel](https://github.com/josepot/react-redux-internal-state/tree/master/examples/carousel/)
## Installation
With npm:
npm install --save react-redux-internal-state
With git:
git clone git://github.com/josepot/react-redux-internal-state.git
## License
[MIT license](https://github.com/josepot/react-redux-internal-state/blob/master/LICENSE).