blob: f96b036daafe61e6df5d12f43245b3537135559f (
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
|
import React, {Component} from 'react';
import Typed from 'typed.js';
import './Header.scss';
import {Button} from "react-bootstrap";
class Header extends Component {
constructor(props) {
super(props);
this.state = {
servicesShow: false
};
}
componentDidMount() {
const options = {
strings: ["caronte$ "],
typeSpeed: 50,
cursorChar: "❚"
};
this.typed = new Typed(this.el, options);
}
componentWillUnmount() {
this.typed.destroy();
}
render() {
return (
<header className="header container-fluid">
<div className="row">
<div className="col">
<h1 className="header-title type-wrap">
<span style={{whiteSpace: 'pre'}} ref={(el) => {
this.el = el;
}}/>
</h1>
</div>
<div className="col">
<div className="header-buttons">
<Button variant="yellow" size="sm">pcaps</Button>
<Button variant="blue">rules</Button>
<Button variant="red" onClick={this.props.onOpenServices}>
services
</Button>
</div>
</div>
</div>
</header>
);
}
}
export default Header;
|