a8cb709194e83c7fb9bcfc9eb0ec7a9766f14421
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / processes / SoftwareProductComponentProcessesList.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 import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
20 import SoftwareProductComponentProcessesActionHelper from './SoftwareProductComponentProcessesActionHelper.js';
21
22 import SoftwareProductComponentsProcessesListView from './SoftwareProductComponentsProcessesListView.jsx';
23
24 export const mapStateToProps = ({softwareProduct}) => {
25
26         let {softwareProductEditor: {data:currentSoftwareProduct = {},  isValidityData = true}, softwareProductComponents: {componentProcesses = {}}} = softwareProduct;
27         let{processesList = [], processesEditor = {}} = componentProcesses;
28         let {data} = processesEditor;
29         let isReadOnlyMode = VersionControllerUtils.isReadOnly(currentSoftwareProduct);
30
31         return {
32                 currentSoftwareProduct,
33                 isValidityData,
34                 processesList,
35                 isDisplayModal: Boolean(data),
36                 isModalInEditMode: Boolean(data && data.id),
37                 isReadOnlyMode
38         };
39
40 };
41
42 const mapActionsToProps = (dispatch, {componentId, softwareProductId}) => {
43
44         return {
45                 onAddProcess: () => SoftwareProductComponentProcessesActionHelper.openEditor(dispatch),
46                 onEditProcessClick: (process) => SoftwareProductComponentProcessesActionHelper.openEditor(dispatch, process),
47                 onDeleteProcessClick: (process, version) => dispatch({
48                         type: modalActionTypes.GLOBAL_MODAL_WARNING,
49                         data:{
50                                 msg: i18n('Are you sure you want to delete "{name}"?', {name: process.name}),
51                                 onConfirmed: ()=> SoftwareProductComponentProcessesActionHelper.deleteProcess(dispatch,
52                                         {process, softwareProductId, version, componentId})
53                         }
54                 })
55         };
56 };
57
58 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductComponentsProcessesListView);