aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-03-09 18:53:05 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-03-09 18:53:05 +0100
commit454cca43f034c59e576df151fa1ba3489b0b37af (patch)
tree79a56d8b78529879924df840cd79f7982abf384f
parentaa2bf90b114f24ce01ca5d0e4f62cda819479e5d (diff)
parent84f180847d0e63dd6e12a82cebaf7fe4ffad040d (diff)
downloadmitmproxy-454cca43f034c59e576df151fa1ba3489b0b37af.tar.gz
mitmproxy-454cca43f034c59e576df151fa1ba3489b0b37af.tar.bz2
mitmproxy-454cca43f034c59e576df151fa1ba3489b0b37af.zip
Merge pull request #1015 from gzzhanghao/props
[web] dont mutate props
-rw-r--r--mitmproxy/web/static/app.js5
-rw-r--r--web/src/js/components/eventlog.js5
2 files changed, 6 insertions, 4 deletions
diff --git a/mitmproxy/web/static/app.js b/mitmproxy/web/static/app.js
index bb06970e..b939da74 100644
--- a/mitmproxy/web/static/app.js
+++ b/mitmproxy/web/static/app.js
@@ -999,8 +999,9 @@ var EventLogContents = _react2.default.createClass({
},
componentWillReceiveProps: function componentWillReceiveProps(nextProps) {
if (nextProps.filter !== this.props.filter) {
- this.props.filter = nextProps.filter; // Dirty: Make sure that view filter sees the update.
- this.state.view.recalculate();
+ this.state.view.recalculate(function (entry) {
+ return nextProps.filter[entry.level];
+ });
}
},
getDefaultProps: function getDefaultProps() {
diff --git a/web/src/js/components/eventlog.js b/web/src/js/components/eventlog.js
index 650f7cd3..51f1578e 100644
--- a/web/src/js/components/eventlog.js
+++ b/web/src/js/components/eventlog.js
@@ -58,8 +58,9 @@ var EventLogContents = React.createClass({
},
componentWillReceiveProps: function (nextProps) {
if (nextProps.filter !== this.props.filter) {
- this.props.filter = nextProps.filter; // Dirty: Make sure that view filter sees the update.
- this.state.view.recalculate();
+ this.state.view.recalculate(entry =>
+ nextProps.filter[entry.level]
+ );
}
},
getDefaultProps: function () {