@gigster/module-redux-base
v2.0.0
Published
Role | Name | Email | Slack ---- | ---- | ----- | ----- *Product Owner* | Frances Haugen | [[email protected]](mailto:[email protected]) | [@frances] *Maintainer* | Geoff Kinder | [[email protected]](mailto:[email protected]) | [@geoff]
Downloads
38
Readme
redux-base
Role | Name | Email | Slack ---- | ---- | ----- | ----- Product Owner | Frances Haugen | [email protected] | [@frances] Maintainer | Geoff Kinder | [email protected] | [@geoff] Developer | Mark Miyashita | [email protected] | [@mark]
Overview
Adds Redux infrastructure to your React app. This includes a store, a way to easily create and add reducers, and infrastructure to store your state in localstorage on web and native.
Usage
Specification
Name | Status | Description
---- | ------ | -----------
generateTests
| true
/false
| Set to true if you would like generated tests to be created for you for the app.
storybook
| true
/false
| Set to true if you would like to generate storybook decorators for Redux.
Dependencies
This module is dependent on redux
version 3.7.2.
Examples
There are two examples for this project:
with-tests
- This example is generated withgenerateTests: true
so it has the infrastructure as well as generated tests.with-storybook
- This example is generated withstorybook: true
so it contains storybook decorators to use when rendering with Redux.
Troubleshooting
Testing
Module tests are defined using a test/scenarios.yaml
file. This file defines the set of example gigs that we generate as part of integration testing. To run all tests, run yarn test
at the root of this module.
Each scenario is generated in test/scenario/<name>
which you can then cd
into and run the actual app. For a scenario called default
, this is done via:
cd test/scenario/default
yarn install
# Run tests.
yarn test
# Start the app.
yarn start