redux-devtools/packages/redux-devtools-slider-monitor/README.md

61 lines
1.9 KiB
Markdown
Raw Normal View History

## Redux DevTools Slider Monitor
[![npm version](https://img.shields.io/npm/v/redux-slider-monitor.svg?style=flat-square)](https://www.npmjs.com/package/redux-slider-monitor)
A custom monitor for use with [Redux DevTools](https://github.com/gaearon/redux-devtools).
It uses a slider based on [react-slider](https://github.com/mpowaga/react-slider) to slide between different recorded actions. It also features play/pause/step-through, which is inspired by some very cool [Elm](http://elm-lang.org/) [examples](http://elm-lang.org/blog/time-travel-made-easy).
[Try out the demo!](https://calesce.github.io/redux-slider-monitor/?debug_session=123)
<image src="https://s3.amazonaws.com/f.cl.ly/items/1I3P222C3N2R1M2y1K3b/Screen%20Recording%202015-12-22%20at%2007.20%20PM.gif?v=1b6267e7" width='800'>
### Installation
`yarn add @redux-devtools/slider-monitor`
### Recommended Usage
Use with [`DockMonitor`](https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-dock-monitor)
2019-01-10 21:51:14 +03:00
```javascript
2019-01-10 21:51:14 +03:00
<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.
2019-01-10 21:51:14 +03:00
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
2019-01-10 21:51:14 +03:00
Pass the `keyboardEnabled` prop to use these shortcuts
2019-01-10 21:51:14 +03:00
`ctrl+j`: play/pause
2019-01-10 21:51:14 +03:00
`ctrl+[`: step backward
2019-01-10 21:51:14 +03:00
`ctrl+]`: step forward
### Running Examples
You can do this:
```
git clone https://github.com/reduxjs/redux-devtools.git
cd packages/redux-devtools-slider-monitor/examples/todomvc
yarn install
npm start
open http://localhost:3000
```
### License
MIT