blob: 73e950deac93d67bdc96435c13a0c4e69450280d (
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
|
import React, {Component} from 'react';
import './ChoiceField.scss';
import './common.scss';
import {randomClassName} from "../../utils";
const classNames = require('classnames');
class ChoiceField extends Component {
constructor(props) {
super(props);
this.state = {
expanded: false
};
this.id = `field-${this.props.name || "noname"}-${randomClassName()}`;
}
render() {
const name = this.props.name || null;
const inline = this.props.inline;
const collapse = () => this.setState({expanded: false});
const expand = () => this.setState({expanded: true});
const handler = (key) => {
collapse();
if (this.props.onChange) {
this.props.onChange(key);
}
};
const keys = this.props.keys || [];
const values = this.props.values || [];
const options = keys.map((key, i) =>
<span className="field-option" key={key} onClick={() => handler(key)}>{values[i]}</span>
);
let fieldValue = "";
if (inline && name) {
fieldValue = name;
}
if (!this.props.onlyName && inline && name) {
fieldValue += ": ";
}
if (!this.props.onlyName) {
fieldValue += this.props.value || "select a value";
}
return (
<div className={classNames( "field", "choice-field", {"field-inline" : inline},
{"field-small": this.props.small})}>
{!inline && name && <label className="field-name">{name}:</label>}
<div className={classNames("field-select", {"select-expanded": this.state.expanded})}
tabIndex={0} onBlur={collapse} onClick={() => this.state.expanded ? collapse() : expand()}>
<div className="field-value">{fieldValue}</div>
<div className="field-options">
{options}
</div>
</div>
</div>
);
}
}
export default ChoiceField;
|