980d0ff2156e976e974cf96a471876cb525ab066
[aai/sparky-fe.git] / src / generic-components / input / ToggleInput.jsx
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 import React from 'react';
22
23 export default
24 class ToggleInput extends React.Component {
25                 
26                 static propTypes = {
27                                 label: React.PropTypes.node,
28                                 value: React.PropTypes.bool,
29                                 onChange: React.PropTypes.func,
30                                 disabled: React.PropTypes.bool
31                 }
32                 
33                 static defaultProps = {
34                                 value: false,
35                                 label: ''
36                 }
37                 
38                 state = {
39                                 value: this.props.value
40                 }
41                 
42                 status() {
43                                 return this.state.value ? 'on' : 'off';
44                 }
45                 
46                 render() {
47                                 let {label, disabled} = this.props;
48                                 let checked = this.status() === 'on';
49                                 return (
50                                                 <div className='toggle-input-wrapper form-group'
51                                                      onClick={!disabled && this.click}>
52                                                                 <div className='toggle-input-label'>{label}</div>
53                                                                 <div className='toggle-switch'>
54                                                                                 <input className='toggle toggle-round-flat' type='checkbox'
55                                                                                        checked={checked} readOnly/>
56                                                                                 <label></label>
57                                                                 </div>
58                                                 </div>
59                                 );
60                 }
61                 
62                 click = () => {
63                                 let value = !this.state.value;
64                                 this.setState({value});
65                                 
66                                 let onChange = this.props.onChange;
67                                 if (onChange) {
68                                                 onChange(value);
69                                 }
70                 }
71                 
72                 getValue() {
73                                 return this.state.value;
74                 }
75 }