diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-02-29 02:16:38 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-29 02:16:38 +0100 |
commit | 9192427d7b845a6389c4a44c930e067c479cdf0d (patch) | |
tree | 0ba9d50f38b959bec1f9e8269f6f9f5d4dd92f99 /web/src/js/components/flowview/index.js | |
parent | cbb068edaaa4a91297cc8c6416dcbc274b3e1317 (diff) | |
download | mitmproxy-9192427d7b845a6389c4a44c930e067c479cdf0d.tar.gz mitmproxy-9192427d7b845a6389c4a44c930e067c479cdf0d.tar.bz2 mitmproxy-9192427d7b845a6389c4a44c930e067c479cdf0d.zip |
web: fix router
Diffstat (limited to 'web/src/js/components/flowview/index.js')
-rw-r--r-- | web/src/js/components/flowview/index.js | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/web/src/js/components/flowview/index.js b/web/src/js/components/flowview/index.js index 91b17dd2..bd34fe8d 100644 --- a/web/src/js/components/flowview/index.js +++ b/web/src/js/components/flowview/index.js @@ -1,7 +1,7 @@ var React = require("react"); var _ = require("lodash"); -var common = require("../common.js"); +import { Router, StickyHeadMixin } from "../common.js" var Nav = require("./nav.js"); var Messages = require("./messages.js"); var Details = require("./details.js"); @@ -16,7 +16,7 @@ var allTabs = { }; var FlowView = React.createClass({ - mixins: [common.StickyHeadMixin, common.Navigation, common.RouterState], + mixins: [StickyHeadMixin, Router], getInitialState: function () { return { prompt: false @@ -34,20 +34,17 @@ var FlowView = React.createClass({ }, nextTab: function (i) { var tabs = this.getTabs(this.props.flow); - var currentIndex = tabs.indexOf(this.getActive()); + var currentIndex = tabs.indexOf(this.props.tab); // JS modulo operator doesn't correct negative numbers, make sure that we are positive. var nextIndex = (currentIndex + i + tabs.length) % tabs.length; this.selectTab(tabs[nextIndex]); }, selectTab: function (panel) { - this.replaceWith(`/flows/${this.getParams().flowId}/${panel}`); - }, - getActive: function(){ - return this.getParams().detailTab; + this.updateLocation(`/flows/${this.getParams().flowId}/${panel}`); }, promptEdit: function () { var options; - switch(this.getActive()){ + switch(this.props.tab){ case "request": options = [ "method", @@ -67,7 +64,7 @@ var FlowView = React.createClass({ case "details": return; default: - throw "Unknown tab for edit: " + this.getActive(); + throw "Unknown tab for edit: " + this.props.tab; } this.setState({ @@ -85,7 +82,7 @@ var FlowView = React.createClass({ render: function () { var flow = this.props.flow; var tabs = this.getTabs(flow); - var active = this.getActive(); + var active = this.props.tab; if (tabs.indexOf(active) < 0) { if (active === "response" && flow.error) { |