blob: 0b06f5502ca77990cb427a7c35ff09650f33f12a (
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
74
75
76
77
78
|
/*
* 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 './MainPage.scss';
import './common.scss';
import Connections from "../panels/ConnectionsPane";
import StreamsPane from "../panels/StreamsPane";
import {BrowserRouter as Router, Route, Switch} from "react-router-dom";
import Timeline from "../Timeline";
import PcapsPane from "../panels/PcapsPane";
import RulesPane from "../panels/RulesPane";
import ServicesPane from "../panels/ServicesPane";
import Header from "../Header";
import Filters from "../dialogs/Filters";
import MainPane from "../panels/MainPane";
import SearchPane from "../panels/SearchPane";
class MainPage extends Component {
state = {};
render() {
let modal;
if (this.state.filterWindowOpen) {
modal = <Filters onHide={() => this.setState({filterWindowOpen: false})}/>;
}
return (
<div className="page main-page">
<Router>
<div className="page-header">
<Header onOpenFilters={() => this.setState({filterWindowOpen: true})}/>
</div>
<div className="page-content">
<div className="pane connections-pane">
<Connections onSelected={(c) => this.setState({selectedConnection: c})}/>
</div>
<div className="pane details-pane">
<Switch>
<Route path="/searches" children={<SearchPane/>}/>
<Route path="/pcaps" children={<PcapsPane/>}/>
<Route path="/rules" children={<RulesPane/>}/>
<Route path="/services" children={<ServicesPane/>}/>
<Route exact path="/connections/:id"
children={<StreamsPane connection={this.state.selectedConnection}/>}/>
<Route children={<MainPane version={this.props.version}/>}/>
</Switch>
</div>
{modal}
</div>
<div className="page-footer">
<Timeline/>
</div>
</Router>
</div>
);
}
}
export default MainPage;
|