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