ced885d03f
* added grid * add table to textoutput * add all three outputs * add shortcuts * fix sound bug for triangle * fix triangle bug - again
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
import * as ActionTypes from '../../../constants';
|
|
|
|
const initialState = {
|
|
fontSize: 18,
|
|
indentationAmount: 2,
|
|
isTabIndent: true,
|
|
autosave: true,
|
|
lintWarning: false,
|
|
textOutput: 0,
|
|
theme: 'light',
|
|
autorefresh: false
|
|
};
|
|
|
|
const preferences = (state = initialState, action) => {
|
|
switch (action.type) {
|
|
case ActionTypes.SET_FONT_SIZE:
|
|
return Object.assign({}, state, { fontSize: action.value });
|
|
case ActionTypes.SET_INDENTATION:
|
|
return Object.assign({}, state, { indentationAmount: action.value });
|
|
case ActionTypes.INDENT_WITH_TAB:
|
|
return Object.assign({}, state, {
|
|
isTabIndent: true
|
|
});
|
|
case ActionTypes.INDENT_WITH_SPACE:
|
|
return Object.assign({}, state, {
|
|
isTabIndent: false
|
|
});
|
|
case ActionTypes.SET_AUTOSAVE:
|
|
return Object.assign({}, state, { autosave: action.value });
|
|
case ActionTypes.SET_LINT_WARNING:
|
|
return Object.assign({}, state, { lintWarning: action.value });
|
|
case ActionTypes.SET_TEXT_OUTPUT:
|
|
return Object.assign({}, state, { textOutput: action.value });
|
|
case ActionTypes.SET_PREFERENCES:
|
|
return action.preferences;
|
|
case ActionTypes.SET_THEME:
|
|
return Object.assign({}, state, { theme: action.value });
|
|
case ActionTypes.SET_AUTOREFRESH:
|
|
return Object.assign({}, state, { autorefresh: action.value });
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|
|
export default preferences;
|