aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/panels/MainPane.js
blob: d34d58a9b9eacdcb3c7bb66f93385ecd051a571c (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
 * This file is part of caronte (https://github.com/eciavatta/caronte).
 * Copyright (c) 2020 Emiliano Ciavatta.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, version 3.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

import React, {Component} from 'react';
import './common.scss';
import './MainPane.scss';
import Connections from "../../views/Connections";
import ConnectionContent from "../ConnectionContent";
import {Route, Switch, withRouter} from "react-router-dom";
import PcapPane from "./PcapPane";
import backend from "../../backend";
import RulePane from "./RulePane";
import ServicePane from "./ServicePane";
import log from "../../log";

class MainPane extends Component {

    state = {};

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

    render() {
        return (
            <div className="main-pane">
                <div className="pane connections-pane">
                    {
                        !this.loading &&
                        <Connections onSelected={(c) => this.setState({selectedConnection: c})}
                                     initialConnection={this.state.selectedConnection}/>
                    }
                </div>
                <div className="pane details-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>
        );
    }
}

export default withRouter(MainPane);