[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / nfvo-components / listEditor / ListEditorItemView.jsx
index e8d0fc2..f6c906b 100644 (file)
@@ -1,7 +1,24 @@
+/*!
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing
+ * permissions and limitations under the License.
+ */
 import React from 'react';
-import FontAwesome from 'react-fontawesome';
+import classnames from 'classnames';
+import i18n from 'nfvo-utils/i18n/i18n.js';
+import SVGIcon from 'nfvo-components/icon/SVGIcon.jsx';
 import store from 'sdc-app/AppStore.js';
-import NotificationConstants from 'nfvo-components/notifications/NotificationConstants.js';
+import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
 
 class ListEditorItem extends React.Component {
        static propTypes = {
@@ -16,14 +33,14 @@ class ListEditorItem extends React.Component {
                let {onDelete, onSelect, onEdit, children, isReadOnlyMode} = this.props;
                let isAbilityToDelete = isReadOnlyMode === undefined ? true : !isReadOnlyMode;
                return (
-                       <div className='list-editor-item-view'>
+                       <div className={classnames('list-editor-item-view', {'selectable': Boolean(onSelect)})} data-test-id='list-editor-item'>
                                <div className='list-editor-item-view-content' onClick={onSelect}>
                                        {children}
                                </div>
-                               <div className='list-editor-item-view-controller'>
-                                       {onEdit && <FontAwesome name='sliders' onClick={() => this.onClickedItem(onEdit)}/>}
-                                       {onDelete && isAbilityToDelete && <FontAwesome name='trash-o' onClick={() => this.onClickedItem(onDelete)}/>}
-                               </div>
+                               {(onEdit || onDelete) && <div className='list-editor-item-view-controller'>
+                                       {onEdit && <SVGIcon name='sliders' onClick={() => this.onClickedItem(onEdit)}/>}
+                                       {onDelete && isAbilityToDelete && <SVGIcon name='trash-o' onClick={() => this.onClickedItem(onDelete)}/>}
+                               </div>}
                        </div>
                );
        }
@@ -33,8 +50,11 @@ class ListEditorItem extends React.Component {
                        let {isCheckedOut} = this.props;
                        if (isCheckedOut === false) {
                                store.dispatch({
-                                       type: NotificationConstants.NOTIFY_ERROR,
-                                       data: {title: 'Error', msg: 'This item is checkedin/submitted, Click Check Out to continue'}
+                                       type: modalActionTypes.GLOBAL_MODAL_WARNING,
+                                       data: {
+                                               title: i18n('Error'), 
+                                               msg: i18n('This item is checkedin/submitted, Click Check Out to continue')                                              
+                                       }
                                });
                        }
                        else {