aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/views/MainPane.js
blob: d2950abd005d209388eb81313ca0184bd59ad92f (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
import React, {Component} from 'react';
import './MainPane.scss';
import Connections from "./Connections";
import ConnectionContent from "../components/ConnectionContent";
import {Route, Switch, withRouter} from "react-router-dom";
import PcapPane from "../components/panels/PcapPane";
import backend from "../backend";
import RulePane from "../components/panels/RulePane";
import ServicePane from "../components/panels/ServicePane";

class MainPane extends Component {

    constructor(props) {
        super(props);
        this.state = {
            selectedConnection: null,
            loading: false
        };
    }

    componentDidMount() {
        const match = this.props.location.pathname.match(/^\/connections\/([a-f0-9]{24})$/);
        if (match != null) {
            this.setState({loading: true});
            backend.get(`/api/connections/${match[1]}`)
                .then(res => this.setState({selectedConnection: res.json, loading: false}))
                .catch(error => console.log(error));
        }
    }

    render() {
        return (
            <div className="main-pane">
                <div className="container-fluid">
                    <div className="row">
                        <div className="col-md-6 pane">
                            {
                                !this.state.loading &&
                                    <Connections onSelected={(c) => this.setState({selectedConnection: c})}
                                                 initialConnection={this.state.selectedConnection} />
                            }
                        </div>
                        <div className="col-md-6 pl-0 pane">
                            <Switch>
                                <Route path="/pcaps" children={<PcapPane />} />
                                <Route path="/rules" children={<RulePane />} />
                                <Route path="/services" children={<ServicePane />} />
                                <Route exact path="/connections/:id" children={<ConnectionContent connection={this.state.selectedConnection} />} />
                                <Route children={<ConnectionContent />} />
                            </Switch>
                        </div>
                    </div>
                </div>
            </div>
        );
    }
}

export default withRouter(MainPane);