Rift.IO OSM R1 Initial Submission
[osm/UI.git] / skyquake / plugins / launchpad / src / topologyL2View / topologyL2View.jsx
diff --git a/skyquake/plugins/launchpad/src/topologyL2View/topologyL2View.jsx b/skyquake/plugins/launchpad/src/topologyL2View/topologyL2View.jsx
new file mode 100644 (file)
index 0000000..25db983
--- /dev/null
@@ -0,0 +1,128 @@
+
+/*
+ * 
+ *   Copyright 2016 RIFT.IO Inc
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+import React from 'react';
+import TopologyL2Store from './topologyL2Store.js';
+import TopologyL2Actions from './topologyL2Actions.js';
+import RecordDetail from '../recordViewer/recordDetails.jsx';
+import './topologyL2View.scss';
+import TopologyDetail from './detailView.jsx';
+import DashboardCard from 'widgets/dashboard_card/dashboard_card.jsx';
+import AppHeader from 'widgets/header/header.jsx';
+import TopologyL2Graph from 'widgets/topology/topologyL2Graph.jsx';
+import Button from 'widgets/button/rw.button.js';
+
+export default class TopologyL2view extends React.Component {
+    constructor(props) {
+        super(props);
+        this.state = TopologyL2Store.getState();
+        TopologyL2Store.listen(this.storeListener);
+    }
+    openAbout = () => {
+        this.componentWillUnmount();
+        let loc = window.location.hash.split('/');
+        loc.pop();
+        loc.pop();
+        loc.push('lp-about');
+        window.location.hash = loc.join('/');
+    }
+    openDebug = () => {
+        this.compoentWillUnmount();
+        let loc = window.location.hash.split('/');
+        loc.pop();
+        loc.pop();
+        loc.push('lp-debug');
+        window.location.hash = loc.join('/');
+    }
+    storeListener = (state) => {
+        this.setState(state);
+    }
+
+    componentWillUnmount() {
+        TopologyL2Store.closeSocket();
+        TopologyL2Store.unlisten(this.storeListener);
+    }
+    componentDidMount() {
+        TopologyL2Store.getTopologyData('dummy-id');
+    }
+
+    onNodeEvent = (node_id) => {
+        TopologyL2Actions.nodeClicked(node_id);
+    }
+
+    handleReloadData = () => {
+        console.log("TopologyView.handleReloadData");
+        this.componentDidMount();
+    }
+
+    render() {
+        let html;
+         let location = this.props.location;
+              let navItems = [{
+          name: 'Viewport',
+          onClick: this.context.router.push.bind(this, {pathname:'/viewport', query: {id: location.query.id, sdnpresent: location.query.sdnpresent}})
+        },{
+          name: 'COMPUTE TOPOLOGY',
+          onClick: this.context.router.push.bind(this, {pathname:'/compute-topology', query: {id: location.query.id, sdnpresent: location.query.sdnpresent}})
+        },{
+             name: 'NETWORK TOPOLOGY'
+        }
+        ];
+
+        let nav = <AppHeader title="Launchpad: Viewport: Network Topology" nav={navItems} />
+        let reloadButton = null;
+        if (this.state.ajax_mode) {
+            reloadButton = <Button label="Reload data" className="reloadButton"
+                onClick={this.handleReloadData} />
+        }
+
+        html = (
+            <div className="app-body topologyL2ViewAppBody">
+                {nav}
+                {reloadButton}
+                <div className="topologyL2View">
+                    <i className="corner-accent top left"></i>
+                    <i className="corner-accent top right"></i>
+                    <TopologyL2Graph data={this.state.topologyData}
+                                     nodeEvent={this.onNodeEvent}
+                                     debugMode={this.props.debugMode}
+                                     headerExtras={reloadButton}
+                    />
+                    <TopologyDetail data={this.state.detailData || {}}
+                                    isLoading={this.state.isLoading}
+                                    debugMode={this.props.debugMode}
+                    />
+                    <i className="corner-accent bottom left"></i>
+                    <i className="corner-accent bottom right"></i>
+                </div>
+            </div>
+        );
+
+        return html;
+    }
+}
+
+TopologyL2view.contextTypes = {
+    router: React.PropTypes.object
+};
+TopologyL2view.propTypes = {
+    debugMode: React.PropTypes.bool
+}
+TopologyL2view.defaultProps = {
+    debugMode: false
+}