Add collaboration feature
[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
22 export function mapStateToProps({softwareProduct}) {
23         let {softwareProductComponents: {componentsList}, softwareProductDeployment: {deploymentFlavors}} = softwareProduct;
24         return {
25                 deploymentFlavors,
26                 componentsList
27         };
28 }
29
30 function mapActionToProps(dispatch, {softwareProductId, version}) {
31         let modalClassName = 'deployment-flavor-editor';
32         return {
33                 onAddDeployment: componentsList => SoftwareProductDeploymentActionHelper.openDeploymentFlavorEditor(dispatch, {softwareProductId, modalClassName, componentsList, version}),
34                 onDeleteDeployment: ({id, model}) => dispatch({
35                         type: modalActionTypes.GLOBAL_MODAL_WARNING,
36                         data:{
37                                 msg: i18n('Are you sure you want to delete "{model}"?', {model: model}),
38                                 onConfirmed: () => SoftwareProductDeploymentActionHelper.deleteDeploymentFlavor(dispatch, {softwareProductId, deploymentFlavorId: id, version})
39                         }
40                 }),
41                 onEditDeployment: (deploymentFlavor, componentsList) =>
42                         SoftwareProductDeploymentActionHelper.fetchDeploymentFlavor({softwareProductId, deploymentFlavorId: deploymentFlavor.id, version}).then(response =>
43                                 SoftwareProductDeploymentActionHelper
44                                         .openDeploymentFlavorEditor(dispatch, {softwareProductId, componentsList, modalClassName, deploymentFlavor: {...response.data, id: response.id}, isEdit: true, version}),
45                         )
46         };
47 }
48
49 export default connect(mapStateToProps, mapActionToProps, null, {withRef: true})(SoftwareProductDeploymentView);