blob: 3ac3fcad2828544154faff277593adb3001eed32 (
plain)
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
|
import React from 'react';
import FontAwesome from 'react-fontawesome';
import classnames from 'classnames';
import Input from 'react-bootstrap/lib/Input';
class ExpandableInput extends React.Component {
constructor(props){
super(props);
this.state = {showInput: false, value: ''};
this.toggleInput = this.toggleInput.bind(this);
this.handleFocus = this.handleFocus.bind(this);
this.handleInput = this.handleInput.bind(this);
this.handleClose = this.handleClose.bind(this);
}
toggleInput(){
if (!this.state.showInput){
this.searchInputNode.refs.input.focus();
} else {
this.setState({showInput: false});
}
}
handleInput(e){
let {onChange} = this.props;
this.setState({value: e.target.value});
onChange(e);
}
handleClose(){
this.handleInput({target: {value: ''}});
this.searchInputNode.refs.input.focus();
}
handleFocus(){
if (!this.state.showInput){
this.setState({showInput: true});
}
}
getValue(){
return this.state.value;
}
render(){
let {iconType} = this.props;
let inputClasses = classnames({
'expandable-active': this.state.showInput,
'expandable-not-active': !this.state.showInput
});
let iconClasses = classnames(
'expandable-icon',
{'expandable-icon-active': this.state.showInput}
);
return (
<div className='expandable-input-wrapper'>
<Input
type='text'
value={this.state.value}
ref={(input) => this.searchInputNode = input}
className={inputClasses}
groupClassName='expandable-input-control'
onChange={e => this.handleInput(e)}
onFocus={this.handleFocus}/>
{this.state.showInput && this.state.value && <FontAwesome onClick={this.handleClose} name='close' className='expandable-close-button'/>}
{!this.state.value && <FontAwesome onClick={this.toggleInput} name={iconType} className={iconClasses}/>}
</div>
);
}
}
export default ExpandableInput;
|