aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/components/proxyapp.jsx.js
blob: 486e723fd159eaea723bee227d15fd155f3015fa (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: function () {
        return <div>ReportEditor</div>;
    }
});


var ProxyAppMain = React.createClass({
    getInitialState: function () {
        return { settings: SettingsStore.getAll() };
    },
    componentDidMount: function () {
        SettingsStore.addListener("change", this.onSettingsChange);
    },
    componentWillUnmount: function () {
        SettingsStore.removeListener("change", this.onSettingsChange);
    },
    onSettingsChange: function () {
        console.log("onSettingsChange");
        this.setState({settings: SettingsStore.getAll()});
    },
    render: function () {
        return (
            <div id="container">
                <Header settings={this.state.settings}/>
                <this.props.activeRouteHandler/>
                {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={FlowTable}/>
            <ReactRouter.Route name="reports" handler={Reports}/>
            <ReactRouter.Redirect to="main"/>
        </ReactRouter.Route>
    </ReactRouter.Routes>
    );