f6c906b56b662ed38a0af02e313a1585789257bf
[sdc.git] / openecomp-ui / src / nfvo-components / listEditor / ListEditorItemView.jsx
1 /*!
2  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13  * or implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 import React from 'react';
17 import classnames from 'classnames';
18 import i18n from 'nfvo-utils/i18n/i18n.js';
19 import SVGIcon from 'nfvo-components/icon/SVGIcon.jsx';
20 import store from 'sdc-app/AppStore.js';
21 import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
22
23 class ListEditorItem extends React.Component {
24         static propTypes = {
25                 onSelect: React.PropTypes.func,
26                 onDelete: React.PropTypes.func,
27                 onEdit: React.PropTypes.func,
28                 children: React.PropTypes.node,
29                 isReadOnlyMode: React.PropTypes.bool
30         }
31
32         render() {
33                 let {onDelete, onSelect, onEdit, children, isReadOnlyMode} = this.props;
34                 let isAbilityToDelete = isReadOnlyMode === undefined ? true : !isReadOnlyMode;
35                 return (
36                         <div className={classnames('list-editor-item-view', {'selectable': Boolean(onSelect)})} data-test-id='list-editor-item'>
37                                 <div className='list-editor-item-view-content' onClick={onSelect}>
38                                         {children}
39                                 </div>
40                                 {(onEdit || onDelete) && <div className='list-editor-item-view-controller'>
41                                         {onEdit && <SVGIcon name='sliders' onClick={() => this.onClickedItem(onEdit)}/>}
42                                         {onDelete && isAbilityToDelete && <SVGIcon name='trash-o' onClick={() => this.onClickedItem(onDelete)}/>}
43                                 </div>}
44                         </div>
45                 );
46         }
47
48         onClickedItem(callBackFunc) {
49                 if(typeof callBackFunc === 'function') {
50                         let {isCheckedOut} = this.props;
51                         if (isCheckedOut === false) {
52                                 store.dispatch({
53                                         type: modalActionTypes.GLOBAL_MODAL_WARNING,
54                                         data: {
55                                                 title: i18n('Error'), 
56                                                 msg: i18n('This item is checkedin/submitted, Click Check Out to continue')                                              
57                                         }
58                                 });
59                         }
60                         else {
61                                 callBackFunc();
62                         }
63                 }
64         }
65 }
66
67 export default ListEditorItem;