d205798a2d4efd635299ed8d1e200887099fe588
[aai/sparky-fe.git] / src / generic-components / input / ToggleInput.jsx
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 import React from 'react';
24
25 export default
26 class ToggleInput extends React.Component {
27                 
28                 static propTypes = {
29                                 label: React.PropTypes.node,
30                                 value: React.PropTypes.bool,
31                                 onChange: React.PropTypes.func,
32                                 disabled: React.PropTypes.bool
33                 }
34                 
35                 static defaultProps = {
36                                 value: false,
37                                 label: ''
38                 }
39                 
40                 state = {
41                                 value: this.props.value
42                 }
43                 
44                 status() {
45                                 return this.state.value ? 'on' : 'off';
46                 }
47                 
48                 render() {
49                                 let {label, disabled} = this.props;
50                                 let checked = this.status() === 'on';
51                                 return (
52                                                 <div className='toggle-input-wrapper form-group'
53                                                      onClick={!disabled && this.click}>
54                                                                 <div className='toggle-input-label'>{label}</div>
55                                                                 <div className='toggle-switch'>
56                                                                                 <input className='toggle toggle-round-flat' type='checkbox'
57                                                                                        checked={checked} readOnly/>
58                                                                                 <label></label>
59                                                                 </div>
60                                                 </div>
61                                 );
62                 }
63                 
64                 click = () => {
65                                 let value = !this.state.value;
66                                 this.setState({value});
67                                 
68                                 let onChange = this.props.onChange;
69                                 if (onChange) {
70                                                 onChange(value);
71                                 }
72                 }
73                 
74                 getValue() {
75                                 return this.state.value;
76                 }
77 }