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
|
import PropTypes from 'prop-types'
import { Form, FormGroup, Input, Label } from 'reactstrap'
import React, { useRef } from 'react'
import Shapes from '../../../shapes'
import Modal from '../Modal'
const NewTopologyModalComponent = ({ show, onCreateTopology, onDuplicateTopology, onCancel, topologies }) => {
const textInput = useRef(null)
const originTopology = useRef(null)
const onCreate = () => {
onCreateTopology(textInput.current.value)
}
const onDuplicate = () => {
onDuplicateTopology(textInput.current.value, originTopology.current.value)
}
const onSubmit = () => {
if (originTopology.current.selectedIndex === 0) {
onCreate()
} else {
onDuplicate()
}
}
return (
<Modal title="New Topology" show={show} onSubmit={onSubmit} onCancel={onCancel}>
<Form
onSubmit={(e) => {
e.preventDefault()
onSubmit()
}}
>
<FormGroup>
<Label for="name">Name</Label>
<Input name="name" type="text" required innerRef={textInput} />
</FormGroup>
<FormGroup>
<Label for="origin">Topology to duplicate</Label>
<Input name="origin" type="select" innerRef={originTopology}>
<option value={-1} key={-1}>
None - start from scratch
</option>
{topologies.map((topology) => (
<option value={topology._id} key={topology._id}>
{topology.name}
</option>
))}
</Input>
</FormGroup>
</Form>
</Modal>
)
}
NewTopologyModalComponent.propTypes = {
show: PropTypes.bool.isRequired,
topologies: PropTypes.arrayOf(Shapes.Topology),
onCreateTopology: PropTypes.func.isRequired,
onDuplicateTopology: PropTypes.func.isRequired,
onCancel: PropTypes.func.isRequired,
}
export default NewTopologyModalComponent
|