forked from sclibraries/scl_a11y_eval_tool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm.js
73 lines (67 loc) · 2.18 KB
/
Form.js
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
import React, { Component } from 'react'
import {Form, FormGroup, FormControl, ControlLabel} from 'react-bootstrap'
export default class SearchForm extends Component {
componentDidMount(){
this.api.focus();
}
state = {
credits: 0
}
handleSubmit = (e) => {
e.preventDefault()
const items = {
api: this.api.value,
credits: this.credits.value,
urls: this.urls.value
}
this.props.handleSearch(items)
}
changeDisplay = (e) => {
this.props.display(e.target.value)
}
render() {
return (
<div className="col-md-3 form-wrapper">
<Form onSubmit={(e) => this.handleSubmit(e)}>
<FormGroup controlId="formApiKey">
<ControlLabel>API Key</ControlLabel>
<FormControl
type="text"
placeholder="Enter API Key"
id="formApiKey"
name="api"
inputRef={(input) => this.api = input}
/>
</FormGroup>
<FormGroup>
<FormControl.Static>The first time you run a report, it will show that you have 0 credits. Once you have run the first report, it will show the correct number of credits.</FormControl.Static>
</FormGroup>
<FormGroup controlId="formCreditSelect">
<ControlLabel>Credits ({this.props.credits} remaining)</ControlLabel>
<FormControl
componentClass="select"
placeholder="select"
inputRef={(input) => this.credits = input}
onChange={(e) => this.changeDisplay(e)}
>
<option value="select">select</option>
<option value="1">Summary (1 credit)</option>
<option value="2">Summary and Detail (2 credits)</option>
</FormControl>
</FormGroup>
<FormGroup controlId="formURLs">
<ControlLabel>Websites (separated by new lines)</ControlLabel>
<FormControl
componentClass="textarea"
placeholder="urls"
rows="7"
inputRef={(input) => this.urls = input}
/>
</FormGroup>
<button id="submit" type="submit" className="btn btn-primary">Submit</button>
</Form>
<br/><br/>
</div>
)
}
}