Skip to content

Commit f6e8d24

Browse files
committedJul 20, 2015
Use a generic setMonitorState action so other monitors can impleemnt other logic
1 parent 276efcc commit f6e8d24

File tree

2 files changed

+16
-29
lines changed

2 files changed

+16
-29
lines changed
 

‎src/devTools.js

+7-19
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ const ActionTypes = {
66
SWEEP: 'SWEEP',
77
TOGGLE_ACTION: 'TOGGLE_ACTION',
88
JUMP_TO_STATE: 'JUMP_TO_STATE',
9-
HIDE: 'HIDE',
10-
SHOW: 'SHOW'
9+
SET_MONITOR_STATE: 'SET_MONITOR_STATE'
1110
};
1211

1312
const INIT_ACTION = {
@@ -133,21 +132,13 @@ function liftReducer(reducer, initialState) {
133132
currentStateIndex = Math.max(currentStateIndex, stagedActions.length - 1);
134133
break;
135134
case ActionTypes.PERFORM_ACTION:
136-
const { action } = liftedAction;
137135
if (currentStateIndex === stagedActions.length - 1) {
138136
currentStateIndex++;
139137
}
140-
stagedActions = [...stagedActions, action];
138+
stagedActions = [...stagedActions, liftedAction.action];
141139
break;
142-
case ActionTypes.HIDE:
143-
monitorState = {
144-
isVisible: false
145-
};
146-
break;
147-
case ActionTypes.SHOW:
148-
monitorState = {
149-
isVisible: true
150-
};
140+
case ActionTypes.SET_MONITOR_STATE:
141+
monitorState = liftedAction.monitorState;
151142
break;
152143
default:
153144
break;
@@ -227,17 +218,14 @@ export const ActionCreators = {
227218
sweep() {
228219
return { type: ActionTypes.SWEEP };
229220
},
230-
show() {
231-
return { type: ActionTypes.SHOW };
232-
},
233-
hide() {
234-
return { type: ActionTypes.HIDE };
235-
},
236221
toggleAction(index) {
237222
return { type: ActionTypes.TOGGLE_ACTION, index };
238223
},
239224
jumpToState(index) {
240225
return { type: ActionTypes.JUMP_TO_STATE, index };
226+
},
227+
setMonitorState(monitorState) {
228+
return { type: ActionTypes.SET_MONITOR_STATE, monitorState };
241229
}
242230
};
243231

‎src/react/LogMonitor.js

+9-10
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ export default class LogMonitor {
1313
stagedActions: PropTypes.array.isRequired,
1414
skippedActions: PropTypes.object.isRequired,
1515
reset: PropTypes.func.isRequired,
16-
hide: PropTypes.func.isRequired,
17-
show: PropTypes.func.isRequired,
1816
commit: PropTypes.func.isRequired,
1917
rollback: PropTypes.func.isRequired,
2018
sweep: PropTypes.func.isRequired,
2119
toggleAction: PropTypes.func.isRequired,
2220
jumpToState: PropTypes.func.isRequired,
21+
setMonitorState: PropTypes.func.isRequired,
2322
select: PropTypes.func.isRequired
2423
};
2524

2625
static defaultProps = {
27-
select: (state) => state
26+
select: (state) => state,
27+
monitorState: { isVisible: true }
2828
};
2929

3030
componentWillReceiveProps(nextProps) {
@@ -81,15 +81,14 @@ export default class LogMonitor {
8181
}
8282

8383
handleKeyPress(event) {
84-
let { isVisible } = this.props.monitorState;
84+
const { monitorState } = this.props;
8585

86-
if (event.ctrlKey && event.keyCode === 72) {
86+
if (event.ctrlKey && event.keyCode === 72) { // Ctrl+H
8787
event.preventDefault();
88-
if (isVisible) {
89-
this.props.hide();
90-
} else {
91-
this.props.show();
92-
}
88+
this.props.setMonitorState({
89+
...monitorState,
90+
isVisible: !monitorState.isVisible
91+
});
9392
}
9493
}
9594

0 commit comments

Comments
 (0)