Add collaboration feature
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / processes / SoftwareProductProcesses.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 {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
19
20 import SoftwareProductProcessesActionHelper from './SoftwareProductProcessesActionHelper.js';
21 import SoftwareProductProcessesView from './SoftwareProductProcessesView.jsx';
22
23 export const mapStateToProps = ({softwareProduct}) => {
24         let {softwareProductEditor: {data: currentSoftwareProduct = {}}, softwareProductProcesses: {processesList, processesEditor}} = softwareProduct;
25         let {data} = processesEditor;
26
27         return {
28                 currentSoftwareProduct,
29                 processesList,
30                 isDisplayEditor: Boolean(data),
31                 isModalInEditMode: Boolean(data && data.id)
32         };
33 };
34
35 const mapActionsToProps = (dispatch, {softwareProductId, version}) => {
36         return {
37                 onAddProcess: () => SoftwareProductProcessesActionHelper.openEditor(dispatch),
38                 onEditProcess: (process) => SoftwareProductProcessesActionHelper.openEditor(dispatch, process),
39                 onDeleteProcess: (process) => dispatch({
40                         type: modalActionTypes.GLOBAL_MODAL_WARNING,
41                         data:{
42                                 msg: i18n('Are you sure you want to delete "{name}"?', {name: process.name}),
43                                 confirmationButtonText: i18n('Delete'),
44                                 title: i18n('Delete'),
45                                 onConfirmed: ()=> SoftwareProductProcessesActionHelper.deleteProcess(dispatch,
46                                         {process, softwareProductId, version})
47                         }
48                 })
49         };
50 };
51
52 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductProcessesView);