p5.js-web-editor/client/modules/IDE/reducers/ide.js

26 lines
445 B
JavaScript
Raw Normal View History

2016-06-22 21:58:23 +02:00
import * as ActionTypes from '../../../constants';
2016-05-11 22:13:17 +02:00
const initialState = {
isPlaying: false
}
const ide = (state = initialState, action) => {
switch (action.type) {
case ActionTypes.TOGGLE_SKETCH:
return {
isPlaying: !state.isPlaying
}
2016-05-12 23:40:49 +02:00
case ActionTypes.START_SKETCH:
return {
isPlaying: true
}
case ActionTypes.STOP_SKETCH:
return {
isPlaying: false
}
2016-05-11 22:13:17 +02:00
default:
return state
}
}
export default ide;