20 lines
412 B
JavaScript
20 lines
412 B
JavaScript
import actions from '../actions';
|
|
|
|
const defaultState = {
|
|
keys: '',
|
|
};
|
|
|
|
export default function reducer(state = defaultState, action = {}) {
|
|
switch (action.type) {
|
|
case actions.INPUT_KEY_PRESS:
|
|
return Object.assign({}, state, {
|
|
keys: state.keys + action.key
|
|
});
|
|
case actions.INPUT_CLEAR_KEYS:
|
|
return Object.assign({}, state, {
|
|
keys: '',
|
|
});
|
|
default:
|
|
return state;
|
|
}
|
|
}
|