fix incorrect dependency
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / SoftwareProductComponentsList.js
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 {connect} from 'react-redux';
17 import i18n from 'nfvo-utils/i18n/i18n.js';
18
19 import SoftwareProductComponentsListView from './SoftwareProductComponentsListView.jsx';
20 import OnboardingActionHelper from 'sdc-app/onboarding/OnboardingActionHelper.js';
21 import SoftwareProductActionHelper from 'sdc-app/onboarding/softwareProduct/SoftwareProductActionHelper.js';
22 import SoftwareProductComponentsActionHelper from '../components/SoftwareProductComponentsActionHelper.js';
23 import {actionTypes as globalModalActions} from 'nfvo-components/modal/GlobalModalConstants.js';
24
25 const generateMessage = (name) => {
26         return i18n(`Are you sure you want to delete ${name}?`);
27 };
28
29
30 const mapActionToProps = (dispatch) => {
31         return {
32                 onComponentSelect: ({id: softwareProductId, componentId, version}) => {
33                         OnboardingActionHelper.navigateToSoftwareProductComponentGeneralAndUpdateLeftPanel(dispatch, {softwareProductId, componentId, version });
34                 },
35                 onAddComponent: (softwareProductId) => SoftwareProductActionHelper.addComponent(dispatch, {softwareProductId, modalClassName: 'create-vfc-modal'}),
36                 onDeleteComponent: (component, softwareProductId, version) => dispatch({
37                         type: globalModalActions.GLOBAL_MODAL_WARNING,
38                         data:{
39                                 msg: generateMessage(component.displayName),
40                                 onConfirmed: ()=>SoftwareProductComponentsActionHelper.deleteComponent(dispatch,
41                                         {
42                                                 softwareProductId,
43                                                 componentId: component.id,
44                                                 version
45                                         })
46                         }
47                 })
48         };
49 };
50
51 export default connect(null, mapActionToProps, null, {withRef: true})(SoftwareProductComponentsListView);