49089a7330cc819668066d076e4546dc79ebb8bb
[aai/sparky-fe.git] / src / generic-components / componentManager / ComponentManagerContainer.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 ButtonGroup from 'react-bootstrap/lib/ButtonGroup';
25 import Button from 'react-bootstrap/lib/Button';
26
27 import i18n from 'utils/i18n/i18n';
28
29 const ICON_CLASS_CLOSE = 'fa fa-times';
30
31 export default class ComponentManagerContainer extends Component {
32
33   static propType = {
34     id: PropTypes.string,
35     title: PropTypes.string,
36     actions: PropTypes.array,
37     showHeader: PropTypes.bool,
38     showTitle: PropTypes.bool,
39     showBorder: PropTypes.bool,
40   };
41
42   static defaultProps = {
43     id: '',
44     title: 'Some Title',
45     actions: [],
46     showHeader: true,
47     showTitle: true,
48     showBorder: true
49   };
50
51   constructor(props) {
52     super(props);
53   }
54
55   render() {
56     let {
57           title,
58           actions,
59           children,
60           showHeader,
61           showTitle,
62           showBorder
63         } = this.props;
64     let buttons = [];
65     actions.forEach((action) => {
66       switch (action.type) {
67         case 'close':
68           buttons.push(
69             <Button
70               type='submit'
71               key={action.type}
72               className='close-button'
73               onClick={ () => {
74                 action.callback(action.id);
75               }}>
76               <i className={ICON_CLASS_CLOSE} aria-hidden='true'></i>
77             </Button>
78           );
79           break;
80         case 'custom':
81           buttons.push(
82             <Button
83               type='submit'
84               key={action.type}
85               className='custom-button'
86               onClick={action.callback}>
87               <i className={'fa ' + action.icon} aria-hidden='true'></i>
88             </Button>
89           );
90           break;
91       }
92     });
93
94     let containerClass = showBorder
95       ? 'titled-container titled-container-boarders'
96       : 'titled-container';
97     let headerClass = showHeader ? 'titled-container-header' : 'hidden';
98     let titleClass = showTitle ? '' : 'hidden';
99
100     return (
101       <div className={containerClass}>
102         <ButtonGroup>{buttons}</ButtonGroup>
103         <div className={headerClass}>
104           <span className={titleClass}>{i18n(title)}</span>
105         </div>
106         <div className='contents'>
107           {children}
108         </div>
109       </div>
110     );
111   }
112 }