redux-devtools/packages/redux-devtools-slider-monitor
2020-08-09 09:46:22 -04:00
..
examples/todomvc chore(*): upgrade react-hot-loader (#580) 2020-08-09 09:46:22 -04:00
src chore(*): upgrade prettier (#570) 2020-08-08 16:26:39 -04:00
.babelrc Rename redux-slider-monitor to redux-devtools-slider-monitor (#558) 2020-08-06 08:02:35 -04:00
LICENSE.md Rename redux-slider-monitor to redux-devtools-slider-monitor (#558) 2020-08-06 08:02:35 -04:00
package.json chore(*): upgrade react-hot-loader (#580) 2020-08-09 09:46:22 -04:00
README.md Rename redux-slider-monitor to redux-devtools-slider-monitor (#558) 2020-08-06 08:02:35 -04:00

Redux Slider Monitor

npm version

A custom monitor for use with Redux DevTools.

It uses a slider based on react-slider to slide between different recorded actions. It also features play/pause/step-through, which is inspired by some very cool Elm examples.

Try out the demo!

Installation

yarn add redux-devtools-slider-monitor

Use with DockMonitor

<DockMonitor
  toggleVisibilityKey="ctrl-h"
  changePositionKey="ctrl-q"
  defaultPosition="bottom"
  defaultSize={0.15}
>
  <SliderMonitor keyboardEnabled />
</DockMonitor>

Dispatch some Redux actions. Use the slider to navigate between the state changes.

Click the play/pause buttons to watch the state changes over time, or step backward or forward in state time with the left/right arrow buttons. Change replay speeds with the 1x button, and "Live" will replay actions with the same time intervals in which they originally were dispatched.

Keyboard shortcuts

Pass the keyboardEnabled prop to use these shortcuts

ctrl+j: play/pause

ctrl+[: step backward

ctrl+]: step forward

Running Examples

You can do this:

git clone https://github.com/calesce/redux-slider-monitor.git
cd redux-slider-monitor
npm install

cd examples/todomvc
npm install
npm start
open http://localhost:3000

License

MIT