From acdd182754625fabcfc2c6ed4bdad8a63bce8ad6 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Tue, 16 Sep 2014 00:05:06 +0200 Subject: web: implement EventLogStore --- web/src/js/components/TrafficTable.react.js | 33 ++++++++++++----------------- 1 file changed, 13 insertions(+), 20 deletions(-) (limited to 'web/src/js/components/TrafficTable.react.js') diff --git a/web/src/js/components/TrafficTable.react.js b/web/src/js/components/TrafficTable.react.js index 442f8da2..d6a4f200 100644 --- a/web/src/js/components/TrafficTable.react.js +++ b/web/src/js/components/TrafficTable.react.js @@ -1,36 +1,29 @@ /** @jsx React.DOM */ var TrafficTable = React.createClass({ - /*getInitialState: function(){ + getInitialState: function(){ return { flows: [] }; - },*/ - componentDidMount: function () { - /*var flowStore = new DummyFlowStore([]); - this.setState({flowStore: flowStore}); - - flowStore.addChangeListener(this.onFlowsChange); - - $.getJSON("/flows.json").success(function (flows) { - flows.forEach(function (flow, i) { - window.setTimeout(function () { - flowStore.addFlow(flow); - }, _.random(i*400,i*400+1000)); - }); - }.bind(this));*/ }, - componentWillUnmount: function(){ - //this.state.flowStore.close(); + componentDidMount(){ + //this.flowStore = FlowStore.getView(); + //this.flowStore.addListener("change",this.onFlowChange); + }, + componentWillUnmount(){ + //this.flowStore.removeListener("change",this.onFlowChange); + //this.flowStore.close(); }, - onFlowsChange: function(event, flows){ - //this.setState({flows: flows.getAll()}); + onFlowChange(){ + this.setState({ + //flows: this.flowStore.getAll() + }); }, render: function () { /*var flows = this.state.flows.map(function(flow){ return
{flow.request.method} {flow.request.scheme}://{flow.request.host}{flow.request.path}
; }); *//**/ - x = "WTF"; + x = "Flow"; i = 12; while(i--) x += x; return
{x}
; -- cgit v1.2.3