[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / processes / SoftwareProductComponentProcessesEditor.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 ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js';
18 import SoftwareProductComponentProcessesActionHelper from './SoftwareProductComponentProcessesActionHelper';
19 import SoftwareProductComponentProcessesEditorView from './SoftwareProductComponentProcessesEditorView.jsx';
20 import {SOFTWARE_PRODUCT_PROCESS_COMPONENTS_EDITOR_FORM} from './SoftwareProductComponentProcessesConstants.js';
21
22 export const mapStateToProps = ({softwareProduct}) => {
23         let {softwareProductComponents: {componentProcesses = {}}} = softwareProduct;
24         let {processesList = [], processesEditor = {}} = componentProcesses;
25         let {data, genericFieldInfo, formReady} = processesEditor;
26         let isFormValid = ValidationHelper.checkFormValid(genericFieldInfo);
27
28         let previousData;
29         const processId = data ? data.id : null;
30         if(processId) {
31                 previousData = processesList.find(process => process.id === processId);
32         }
33
34         return {
35                 data,
36                 genericFieldInfo,
37                 previousData,
38                 isFormValid,
39                 formReady
40         };
41 };
42
43 const mapActionsToProps = (dispatch, {softwareProductId, version, componentId}) => {
44
45         return {
46                 onDataChanged: (deltaData) => ValidationHelper.dataChanged(dispatch, {deltaData, formName: SOFTWARE_PRODUCT_PROCESS_COMPONENTS_EDITOR_FORM}),
47                 onCancel: () => SoftwareProductComponentProcessesActionHelper.closeEditor(dispatch),
48                 onSubmit: ({previousProcess, process}) => {
49                         SoftwareProductComponentProcessesActionHelper.closeEditor(dispatch);
50                         SoftwareProductComponentProcessesActionHelper.saveProcess(dispatch, {softwareProductId, version, previousProcess, componentId, process});
51                 },
52                 onValidateForm: () => ValidationHelper.validateForm(dispatch, SOFTWARE_PRODUCT_PROCESS_COMPONENTS_EDITOR_FORM)
53         };
54 };
55
56 export default connect(mapStateToProps, mapActionsToProps)(SoftwareProductComponentProcessesEditorView);