-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
81 lines (70 loc) · 1.79 KB
/
index.jsx
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
74
75
76
77
78
79
80
81
var React = require('react');
var b = require('b_').with('y-input');
var Style = require('./index.css!');
var YInput = {
displayName: 'y-input',
__onFocus: function() {
this.setState({focused: true});
},
__onBlur: function() {
this.setState({focused: false});
},
__onMouseEnter: function() {
this.setState({hovered: true});
},
__onMouseLeave: function() {
this.setState({hovered: false});
},
getInitialState: function() {
return {
checked: this.props.checked,
disabled: this.props.disabled,
hovered: false,
focused: this.props.focused,
userInput: ''
};
},
toggle: function (e) {
if (this.state.disabled) { return; }
this.setState({ checked: !this.state.checked });
},
clearInput: function () {
this.setState({ userInput: '' });
},
handleChange: function(e) {
this.setState({userInput: e.target.value});
},
render: function () {
var selectClasses = b({
theme: this.props.theme || 'normal',
size: this.props.size || 'm',
checked: this.state.checked,
disabled: this.state.disabled,
hovered: this.state.hovered,
focused: this.state.focused
});
return (
<span
className={selectClasses}
onClick={this.toggle}
onMouseEnter={this.__onMouseEnter}
onMouseLeave={this.__onMouseLeave}
>
<span className={b('box')}>
<input
ref="textInput"
value={this.state.userInput}
onChange={this.handleChange}
className={b('control')}
placeholder={this.props.placeholder}
onFocus={this.__onFocus}
onBlur={this.__onBlur}/>
<i className={b('clear', {visible: this.state.userInput && this.props.clearable})}
onClick={this.clearInput}/>
</span>
</span>
);
}
};
module.exports = React.createClass(YInput);
module.exports.Class = YInput;