import React, { Component, PureComponent } from 'react'; import PropTypes from 'prop-types'; import * as themes from 'redux-devtools-themes'; import { ActionCreators } from 'redux-devtools'; import { Toolbar, Divider } from 'devui/lib/Toolbar'; import Slider from 'devui/lib/Slider'; import Button from 'devui/lib/Button'; import SegmentedControl from 'devui/lib/SegmentedControl'; import reducer from './reducers'; import SliderButton from './SliderButton'; const { reset, jumpToState } = ActionCreators; export default class SliderMonitor extends (PureComponent || Component) { static update = reducer; static propTypes = { dispatch: PropTypes.func, computedStates: PropTypes.array, stagedActionIds: PropTypes.array, actionsById: PropTypes.object, currentStateIndex: PropTypes.number, monitorState: PropTypes.shape({ initialScrollTop: PropTypes.number }), preserveScrollTop: PropTypes.bool, stagedActions: PropTypes.array, select: PropTypes.func.isRequired, hideResetButton: PropTypes.bool, theme: PropTypes.oneOfType([PropTypes.object, PropTypes.string]), keyboardEnabled: PropTypes.bool }; static defaultProps = { select: state => state, theme: 'nicinabox', preserveScrollTop: true, keyboardEnabled: true }; state = { timer: undefined, replaySpeed: '1x' }; componentDidMount() { if (typeof window !== 'undefined') { window.addEventListener('keydown', this.handleKeyPress); } } componentWillUnmount() { if (typeof window !== 'undefined') { window.removeEventListener('keydown', this.handleKeyPress); } } setUpTheme = () => { let theme; if (typeof this.props.theme === 'string') { if (typeof themes[this.props.theme] !== 'undefined') { theme = themes[this.props.theme]; } else { theme = themes.nicinabox; } } else { theme = this.props.theme; } return theme; }; handleReset = () => { this.pauseReplay(); this.props.dispatch(reset()); }; handleKeyPress = event => { if (!this.props.keyboardEnabled) { return null; } if (event.ctrlKey && event.keyCode === 74) { // ctrl+j event.preventDefault(); if (this.state.timer) { return this.pauseReplay(); } if (this.state.replaySpeed === 'Live') { this.startRealtimeReplay(); } else { this.startReplay(); } } else if (event.ctrlKey && event.keyCode === 219) { // ctrl+[ event.preventDefault(); this.stepLeft(); } else if (event.ctrlKey && event.keyCode === 221) { // ctrl+] event.preventDefault(); this.stepRight(); } return null; }; handleSliderChange = value => { if (this.state.timer) { this.pauseReplay(); } this.props.dispatch(jumpToState(value)); }; startReplay = () => { const { computedStates, currentStateIndex, dispatch } = this.props; if (computedStates.length < 2) { return; } const speed = this.state.replaySpeed === '1x' ? 500 : 200; let stateIndex; if (currentStateIndex === computedStates.length - 1) { dispatch(jumpToState(0)); stateIndex = 0; } else if (currentStateIndex === computedStates.length - 2) { dispatch(jumpToState(currentStateIndex + 1)); return; } else { stateIndex = currentStateIndex + 1; dispatch(jumpToState(currentStateIndex + 1)); } let counter = stateIndex; const timer = setInterval(() => { if (counter + 1 <= computedStates.length - 1) { dispatch(jumpToState(counter + 1)); } counter += 1; if (counter >= computedStates.length - 1) { clearInterval(this.state.timer); this.setState({ timer: undefined }); } }, speed); this.setState({ timer }); }; startRealtimeReplay = () => { if (this.props.computedStates.length < 2) { return; } if (this.props.currentStateIndex === this.props.computedStates.length - 1) { this.props.dispatch(jumpToState(0)); this.loop(0); } else { this.loop(this.props.currentStateIndex); } }; loop = index => { let currentTimestamp = Date.now(); let timestampDiff = this.getLatestTimestampDiff(index); const aLoop = () => { const replayDiff = Date.now() - currentTimestamp; if (replayDiff >= timestampDiff) { this.props.dispatch(jumpToState(this.props.currentStateIndex + 1)); if ( this.props.currentStateIndex >= this.props.computedStates.length - 1 ) { this.pauseReplay(); return; } timestampDiff = this.getLatestTimestampDiff( this.props.currentStateIndex ); currentTimestamp = Date.now(); this.setState({ timer: requestAnimationFrame(aLoop) }); } else { this.setState({ timer: requestAnimationFrame(aLoop) }); } }; if (index !== this.props.computedStates.length - 1) { this.setState({ timer: requestAnimationFrame(aLoop) }); } }; getLatestTimestampDiff = index => this.getTimestampOfStateIndex(index + 1) - this.getTimestampOfStateIndex(index); getTimestampOfStateIndex = stateIndex => { const id = this.props.stagedActionIds[stateIndex]; return this.props.actionsById[id].timestamp; }; pauseReplay = cb => { if (this.state.timer) { cancelAnimationFrame(this.state.timer); clearInterval(this.state.timer); this.setState( { timer: undefined }, () => { if (typeof cb === 'function') { cb(); } } ); } }; stepLeft = () => { this.pauseReplay(); if (this.props.currentStateIndex !== 0) { this.props.dispatch(jumpToState(this.props.currentStateIndex - 1)); } }; stepRight = () => { this.pauseReplay(); if (this.props.currentStateIndex !== this.props.computedStates.length - 1) { this.props.dispatch(jumpToState(this.props.currentStateIndex + 1)); } }; changeReplaySpeed = replaySpeed => { this.setState({ replaySpeed }); if (this.state.timer) { this.pauseReplay(() => { if (replaySpeed === 'Live') { this.startRealtimeReplay(); } else { this.startReplay(); } }); } }; render() { const { currentStateIndex, computedStates, actionsById, stagedActionIds, hideResetButton } = this.props; const { replaySpeed } = this.state; const theme = this.setUpTheme(); const max = computedStates.length - 1; const actionId = stagedActionIds[currentStateIndex]; let actionType = actionsById[actionId].action.type; if (actionType === undefined) actionType = ''; else if (actionType === null) actionType = ''; else actionType = actionType.toString() || ''; const onPlayClick = replaySpeed === 'Live' ? this.startRealtimeReplay : this.startReplay; const playPause = this.state.timer ? ( ) : ( ); return ( {playPause} {!hideResetButton && [ , ]} ); } }