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