blob: eab1d45ef4f83574f8dbcbf19f7477ead3476605 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13 * or implied. See the License for the specific language governing
14 * permissions and limitations under the License.
15 */
Michael Landoefa037d2017-02-19 12:57:33 +020016import React from 'react';
AviZi280f8012017-06-09 02:39:56 +030017import ReactDOM from 'react-dom';
Avi Zivb8e2faf2017-07-18 19:45:38 +030018import SVGIcon from 'sdc-ui/lib/react/SVGIcon.js';
AviZi280f8012017-06-09 02:39:56 +030019import Input from 'nfvo-components/input/validation/InputWrapper.jsx';
Michael Landoefa037d2017-02-19 12:57:33 +020020
AviZi280f8012017-06-09 02:39:56 +030021const ExpandableInputClosed = ({iconType, onClick}) => (
Avi Zivb8e2faf2017-07-18 19:45:38 +030022 <SVGIcon className='expandable-input-wrapper closed' data-test-id='expandable-input-closed' name={iconType} onClick={onClick} />
AviZi280f8012017-06-09 02:39:56 +030023);
Michael Landoefa037d2017-02-19 12:57:33 +020024
AviZi280f8012017-06-09 02:39:56 +030025class ExpandableInputOpened extends React.Component {
26 componentDidMount(){
27 this.rawDomNode = ReactDOM.findDOMNode(this.searchInputNode.inputWrapper);
28 this.rawDomNode.focus();
Michael Landoefa037d2017-02-19 12:57:33 +020029 }
30
AviZi280f8012017-06-09 02:39:56 +030031 componentWillReceiveProps(newProps){
32 if (!newProps.value){
33 if (!(document.activeElement === this.rawDomNode)){
34 this.props.handleBlur();
35 }
36 }
37 }
38
39 handleClose(){
40 this.props.onChange('');
41 this.rawDomNode.focus();
42 }
43
44 handleKeyDown(e){
45 if (e.key === 'Escape'){
46 e.preventDefault();
47 if (this.props.value) {
48 this.handleClose();
49 } else {
50 this.rawDomNode.blur();
51 }
52 };
53 }
54
55 render() {
56 let {iconType, value, onChange, handleBlur} = this.props;
57 return (
58 <div className='expandable-input-wrapper opened' key='expandable'>
59 <Input
60 type='text'
Avi Zivb8e2faf2017-07-18 19:45:38 +030061 data-test-id='expandable-input-opened'
AviZi280f8012017-06-09 02:39:56 +030062 value={value}
63 ref={(input) => this.searchInputNode = input}
64 className='expandable-active'
65 groupClassName='expandable-input-control'
66 onChange={e => onChange(e)}
67 onKeyDown={e => this.handleKeyDown(e)}
68 onBlur={handleBlur}/>
Avi Zivb8e2faf2017-07-18 19:45:38 +030069 {value && <SVGIcon data-test-id='expandable-input-close-btn' onClick={() => this.handleClose()} name='close' />}
AviZi280f8012017-06-09 02:39:56 +030070 {!value && <SVGIcon name={iconType} onClick={handleBlur}/>}
71 </div>
72 );
73 }
74}
75
76class ExpandableInput extends React.Component {
77
78 static propTypes = {
79 iconType: React.PropTypes.string,
80 onChange: React.PropTypes.func,
81 value: React.PropTypes.string
82 };
83
84 state = {showInput: false};
85
86 closeInput(){
87 if (!this.props.value) {
Michael Landoefa037d2017-02-19 12:57:33 +020088 this.setState({showInput: false});
89 }
90 }
91
Michael Landoefa037d2017-02-19 12:57:33 +020092 getValue(){
AviZi280f8012017-06-09 02:39:56 +030093 return this.props.value;
Michael Landoefa037d2017-02-19 12:57:33 +020094 }
95
96 render(){
AviZi280f8012017-06-09 02:39:56 +030097 let {iconType, value, onChange = false} = this.props;
Michael Landoefa037d2017-02-19 12:57:33 +020098 return (
AviZi280f8012017-06-09 02:39:56 +030099 <div className='expandable-input-top'>
100 {this.state.showInput &&
101 <ExpandableInputOpened
102 key='open'
103 iconType={iconType}
104 onChange={onChange}
105 value={value}
106 handleKeyDown={(e) => this.handleKeyDown(e)}
107 handleBlur={() => this.closeInput()}/>
108 }
109 {!this.state.showInput && <ExpandableInputClosed key='closed' iconType={iconType} onClick={() => this.setState({showInput: true})} />}
Michael Landoefa037d2017-02-19 12:57:33 +0200110 </div>
AviZi280f8012017-06-09 02:39:56 +0300111 );
Michael Landoefa037d2017-02-19 12:57:33 +0200112 }
113}
114
AviZi280f8012017-06-09 02:39:56 +0300115
Michael Landoefa037d2017-02-19 12:57:33 +0200116export default ExpandableInput;