aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/reduxActions.js
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-06-02 00:04:10 -0700
committerMaximilian Hils <git@maximilianhils.com>2016-06-02 00:04:10 -0700
commit9e3591e3c225c51d5a5b80eb331719d20d14dc48 (patch)
tree137afcb2916a214b642db608aab240f761665433 /web/src/js/reduxActions.js
parent9a76e31f2fb77367d6632b6b03cdfeabfadf0caf (diff)
downloadmitmproxy-9e3591e3c225c51d5a5b80eb331719d20d14dc48.tar.gz
mitmproxy-9e3591e3c225c51d5a5b80eb331719d20d14dc48.tar.bz2
mitmproxy-9e3591e3c225c51d5a5b80eb331719d20d14dc48.zip
add basic redux architecture, convert eventlog to redux
Diffstat (limited to 'web/src/js/reduxActions.js')
-rw-r--r--web/src/js/reduxActions.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/web/src/js/reduxActions.js b/web/src/js/reduxActions.js
new file mode 100644
index 00000000..c5902f80
--- /dev/null
+++ b/web/src/js/reduxActions.js
@@ -0,0 +1,13 @@
+export const TOGGLE_EVENTLOG_FILTER = 'TOGGLE_EVENTLOG_FILTER';
+export const HIDE_EVENTLOG = 'HIDE_EVENTLOG';
+export const SHOW_EVENTLOG = 'SHOW_EVENTLOG';
+
+export const EventLogFilters = {
+ DEBUG: 'debug',
+ INFO: 'info',
+ WEB: 'web'
+};
+
+export function toggleEventLogFilter(filter) {
+ return {type: TOGGLE_EVENTLOG_FILTER, filter}
+}