b0fbc4a8b7e6e7b28e001e11a09025c2d1f79b19
[aai/sparky-fe.git] / src / generic-components / titledContainer / TitledContainer.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, {Component, PropTypes} from 'react';
24 import Button from 'react-bootstrap/lib/Button';
25
26 import i18n from 'utils/i18n/i18n';
27
28 const ICON_CLASS_MAXIMIZE = 'fa fa-chevron-down fa-lg';
29 const ICON_CLASS_MINIMIZE = 'fa fa-chevron-up fa-lg';
30
31 export default class TitledContainer extends Component {
32
33   static propType = {
34     title: PropTypes.string
35   };
36
37   static defaultProps = {
38     title: 'Some Title'
39   };
40
41   constructor(props) {
42     super(props);
43     this.state = {isToggleOn: true};
44
45     this.handleClick = this.handleClick.bind(this);
46   }
47
48   handleClick() {
49     this.setState(prevState => ({
50       isToggleOn: !prevState.isToggleOn
51     }));
52   }
53
54   render() {
55     let {title, children} = this.props;
56     let contentsClass = this.state.isToggleOn ? 'contents' : 'hidden';
57     let className = this.state.isToggleOn
58       ? ICON_CLASS_MINIMIZE
59       : ICON_CLASS_MAXIMIZE;
60     return (
61       <div className='dep-titled-container'>
62         <div className='header'>
63           <span className='header-title'>{i18n(title)}</span>
64           <Button type='submit' className='toggle-visibility-button'
65                   onClick={this.handleClick}>
66             <i className={className} aria-hidden='true'/>
67           </Button>
68         </div>
69         <div className={contentsClass}>
70           {children}
71         </div>
72       </div>
73     );
74   }
75 }