mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-12-02 06:23:53 +03:00
ee52c29a8d
* Get started * stash * stash * stash * stash * stash * stash * stash * stash * stash * stash * stash * stash * stash * stash * stash * stash
77 lines
2.3 KiB
TypeScript
77 lines
2.3 KiB
TypeScript
import React, { Component } from 'react';
|
|
import { connect, ResolveThunks } from 'react-redux';
|
|
import { Container } from 'devui';
|
|
import SliderMonitor from './monitors/Slider';
|
|
import { liftedDispatch as liftedDispatchAction, getReport } from '../actions';
|
|
import { getActiveInstance } from '../reducers/instances';
|
|
import DevTools from '../containers/DevTools';
|
|
import Dispatcher from './monitors/Dispatcher';
|
|
import TopButtons from '../components/TopButtons';
|
|
import BottomButtons from '../components/BottomButtons';
|
|
import { StoreState } from '../reducers';
|
|
|
|
type StateProps = ReturnType<typeof mapStateToProps>;
|
|
type DispatchProps = ResolveThunks<typeof actionCreators>;
|
|
type Props = StateProps & DispatchProps;
|
|
|
|
class Actions extends Component<Props> {
|
|
render() {
|
|
const {
|
|
monitor,
|
|
dispatcherIsOpen,
|
|
sliderIsOpen,
|
|
options,
|
|
liftedState,
|
|
liftedDispatch,
|
|
} = this.props;
|
|
return (
|
|
<Container>
|
|
<TopButtons
|
|
dispatch={liftedDispatch}
|
|
liftedState={liftedState}
|
|
options={options}
|
|
/>
|
|
<DevTools
|
|
monitor={monitor}
|
|
liftedState={liftedState}
|
|
monitorState={this.props.monitorState}
|
|
dispatch={liftedDispatch}
|
|
features={options.features}
|
|
/>
|
|
{sliderIsOpen && options.connectionId && options.features.jump && (
|
|
<SliderMonitor liftedState={liftedState} dispatch={liftedDispatch} />
|
|
)}
|
|
{dispatcherIsOpen &&
|
|
options.connectionId &&
|
|
options.features.dispatch && <Dispatcher options={options} />}
|
|
<BottomButtons
|
|
dispatcherIsOpen={dispatcherIsOpen}
|
|
sliderIsOpen={sliderIsOpen}
|
|
options={options}
|
|
/>
|
|
</Container>
|
|
);
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state: StoreState) => {
|
|
const instances = state.instances;
|
|
const id = getActiveInstance(instances);
|
|
return {
|
|
liftedState: instances.states[id],
|
|
monitorState: state.monitor.monitorState,
|
|
options: instances.options[id],
|
|
monitor: state.monitor.selected,
|
|
dispatcherIsOpen: state.monitor.dispatcherIsOpen,
|
|
sliderIsOpen: state.monitor.sliderIsOpen,
|
|
reports: state.reports.data,
|
|
};
|
|
};
|
|
|
|
const actionCreators = {
|
|
liftedDispatch: liftedDispatchAction,
|
|
getReport,
|
|
};
|
|
|
|
export default connect(mapStateToProps, actionCreators)(Actions);
|