blob: 07d66440428ae881ef5156712b661438fdf5c3f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/** @jsx React.DOM */
//TODO: Move out of here, just a stub.
var Reports = React.createClass({
render(){
return <div>Report Editor</div>;
}
});
var ProxyAppMain = React.createClass({
getInitialState(){
return { settings: SettingsStore.getAll() };
},
componentDidMount(){
SettingsStore.addListener("change", this.onSettingsChange);
},
componentWillUnmount(){
SettingsStore.removeListener("change", this.onSettingsChange);
},
onSettingsChange(){
console.log("onSettingsChange");
this.setState({settings: SettingsStore.getAll()});
},
render() {
return (
<div id="container">
<Header settings={this.state.settings}/>
<div id="main"><this.props.activeRouteHandler/></div>
{this.state.settings.showEventLog ? <EventLog/> : null}
<Footer settings={this.state.settings}/>
</div>
);
}
});
var ProxyApp = (
<ReactRouter.Routes location="hash">
<ReactRouter.Route name="app" path="/" handler={ProxyAppMain}>
<ReactRouter.Route name="main" handler={TrafficTable}/>
<ReactRouter.Route name="reports" handler={Reports}/>
<ReactRouter.Redirect to="main"/>
</ReactRouter.Route>
</ReactRouter.Routes>
);
|