[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / network / SoftwareProductComponentsNetworkList.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 import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
19
20 import SoftwareProductComponentsActionHelper from 'sdc-app/onboarding/softwareProduct/components/SoftwareProductComponentsActionHelper.js';
21 import SoftwareProductComponentsNetworkListView from './SoftwareProductComponentsNetworkListView.jsx';
22 import SoftwareProductComponentsNetworkActionHelper from './SoftwareProductComponentsNetworkActionHelper.js';
23 import {COMPONENTS_QUESTIONNAIRE} from 'sdc-app/onboarding/softwareProduct/components/SoftwareProductComponentsConstants.js';
24 import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js';
25 import {actionTypes as GlobalModalActions} from 'nfvo-components/modal/GlobalModalConstants.js';
26 import NICCreationActionHelper from './NICCreation/NICCreationActionHelper.js';
27 import {onboardingMethod as onboardingMethodTypes} from '../../SoftwareProductConstants.js';
28
29
30 export const mapStateToProps = ({softwareProduct}) => {
31
32         let {softwareProductEditor: {data: currentSoftwareProduct = {}, isValidityData = true}, softwareProductComponents} = softwareProduct;
33         let {network: {nicList = []}, componentEditor: {data: componentData, qdata, dataMap, qgenericFieldInfo}} = softwareProductComponents;
34         let isReadOnlyMode = VersionControllerUtils.isReadOnly(currentSoftwareProduct);
35         let {version, onboardingMethod} = currentSoftwareProduct;
36
37         return {
38                 version,
39                 componentData,
40                 qdata,
41                 dataMap,
42                 qgenericFieldInfo,
43                 isValidityData,
44                 nicList,
45                 isReadOnlyMode,
46                 isManual: onboardingMethod === onboardingMethodTypes.MANUAL
47         };
48
49 };
50
51 const mapActionsToProps = (dispatch, {softwareProductId, componentId}) => {
52         return {
53                 onQDataChanged: (deltaData) => ValidationHelper.qDataChanged(dispatch, {deltaData,
54                         qName: COMPONENTS_QUESTIONNAIRE}),
55                 onAddNic: () => NICCreationActionHelper.open(dispatch, {softwareProductId, componentId, modalClassName: 'network-nic-modal-create'}),
56                 onDeleteNic: (nic, version) => dispatch({
57                         type: GlobalModalActions.GLOBAL_MODAL_WARNING,
58                         data:{
59                                 msg: i18n(`Are you sure you want to delete "${nic.name}"?`),
60                                 onConfirmed: () => SoftwareProductComponentsNetworkActionHelper.deleteNIC(dispatch, {softwareProductId,
61                                         componentId, nicId: nic.id, version})
62                         }
63                 }),
64                 onEditNicClick: (nic, version, isReadOnlyMode) => {
65                         Promise.all([
66                                 SoftwareProductComponentsNetworkActionHelper.loadNICData({
67                                         softwareProductId,
68                                         version,
69                                         componentId,
70                                         nicId: nic.id
71                                 }),
72                                 SoftwareProductComponentsNetworkActionHelper.loadNICQuestionnaire(dispatch, {
73                                         softwareProductId,
74                                         version,
75                                         componentId,
76                                         nicId: nic.id
77                                 })
78                         ]).then(
79                                 ([{data}]) => SoftwareProductComponentsNetworkActionHelper.openNICEditor(dispatch, {nic, data,
80                                         isReadOnlyMode, softwareProductId, componentId, modalClassName: 'network-nic-modal-edit'})
81                         );
82                 },
83                 onSubmit: ({qdata, version}) => { return SoftwareProductComponentsActionHelper.updateSoftwareProductComponentQuestionnaire(dispatch,
84                         {softwareProductId, version,
85                         vspComponentId: componentId,
86                         qdata});
87                 }
88
89
90         };
91 };
92
93 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductComponentsNetworkListView);