[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / deployment / SoftwareProductDeployment.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 SoftwareProductDeploymentView from './SoftwareProductDeploymentView.jsx';
18 import SoftwareProductDeploymentActionHelper from './SoftwareProductDeploymentActionHelper.js';
19 import i18n from 'nfvo-utils/i18n/i18n.js';
20 import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
21 import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
22
23 export function mapStateToProps({softwareProduct}) {
24         let {softwareProductEditor: {data: currentSoftwareProduct = {}},softwareProductComponents: {componentsList}, softwareProductDeployment: {deploymentFlavors}} = softwareProduct;
25         let isReadOnlyMode = VersionControllerUtils.isReadOnly(currentSoftwareProduct);
26         return {
27                 isReadOnlyMode,
28                 deploymentFlavors,
29                 componentsList
30         };
31 }
32
33 function mapActionToProps(dispatch, {softwareProductId, version}) {
34         let modalClassName = 'deployment-flavor-editor';
35         return {
36                 onAddDeployment: componentsList => SoftwareProductDeploymentActionHelper.openDeploymentFlavorEditor(dispatch, {softwareProductId, modalClassName, componentsList, version}),
37                 onDeleteDeployment: ({id, model}) => dispatch({
38                         type: modalActionTypes.GLOBAL_MODAL_WARNING,
39                         data:{
40                                 msg: i18n(`Are you sure you want to delete "${model}"?`),
41                                 onConfirmed: () => SoftwareProductDeploymentActionHelper.deleteDeploymentFlavor(dispatch, {softwareProductId, deploymentFlavorId: id, version})
42                         }
43                 }),
44                 onEditDeployment: (deploymentFlavor, componentsList) =>
45                         SoftwareProductDeploymentActionHelper.fetchDeploymentFlavor({softwareProductId, deploymentFlavorId: deploymentFlavor.id, version}).then(response =>
46                                 SoftwareProductDeploymentActionHelper
47                                         .openDeploymentFlavorEditor(dispatch, {softwareProductId, componentsList, modalClassName, deploymentFlavor: {...response.data, id: response.id}, isEdit: true, version}),
48                         )
49         };
50 }
51
52 export default connect(mapStateToProps, mapActionToProps, null, {withRef: true})(SoftwareProductDeploymentView);