aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/reducers/eventLog.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/reducers/eventLog.js')
-rw-r--r--web/src/js/reducers/eventLog.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/web/src/js/reducers/eventLog.js b/web/src/js/reducers/eventLog.js
new file mode 100644
index 00000000..169cd306
--- /dev/null
+++ b/web/src/js/reducers/eventLog.js
@@ -0,0 +1,30 @@
+import {combineReducers} from 'redux'
+import {TOGGLE_EVENTLOG_FILTER} from "../reduxActions"
+
+const defaultVisibility = {
+ "debug": false,
+ "info": true,
+ "web": true
+};
+
+const visibilityFilter = (state = defaultVisibility, action) => {
+ switch (action.type) {
+ case TOGGLE_EVENTLOG_FILTER:
+ return Object.assign({}, state, {
+ [action.filter]: !state[action.filter]
+ });
+ default:
+ return state;
+ }
+};
+
+const entries = (state = [], action) => {
+ return state;
+};
+
+const eventLog = combineReducers({
+ visibilityFilter,
+ entries
+});
+
+export default eventLog