forked from TamimEhsan/AlgorithmVisualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.jsx
More file actions
69 lines (63 loc) · 2 KB
/
menu.jsx
File metadata and controls
69 lines (63 loc) · 2 KB
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
import React, {Component} from 'react';
import DiscreteSlider from "./slider";
import SimpleSelect from "./simpleSelect";
import CustomizedSlider from "./airBnbSlider";
import RangeSlider from "./doubleSlider";
import SwitchLabels from "./formControlLabel";
class Menu extends Component {
render() {
return (
<nav className="nav alert-dark">
<button
className='btn btn-secondary m-2'
onClick={this.props.onRandomize}
disabled={this.props.disable}
style={this.isClickable()}
>
Randomize
</button>
<RangeSlider
disable={this.props.disable}
/>
<DiscreteSlider
default={20}
min={10}
max={100}
step={10}
title="Numbers"
onCountChange={this.props.onCountChange}
disable={this.props.disable}
/>
<DiscreteSlider
default={50}
min={10}
max={100}
step={1}
title="Speed"
onCountChange={this.props.onSpeedChange}
disable={false}
/>
<SimpleSelect
pos={0}
onAlgoChanged={this.props.onAlgoChanged}
/>
<button
className='btn btn-warning btn-lg '
onClick={this.props.onViusalize}
disabled={this.props.disable}
style={this.isClickable()}
>
Visualize
</button>
</nav>
);
}
isClickable = () =>{
if( this.props.disable ){
return {cursor: "not-allowed"};
} else{
return {};
}
}
}
export default Menu;