a3ba5fbc4a12197e5104c6922940b54dc5a687b2
[sdc.git] /
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 ComputeFlavorEditorView from './ComputeFlavorEditorView.jsx';
18 import {COMPUTE_FLAVOR_FORM} from './ComputeFlavorConstants.js';
19 import ComputeFlavorActionHelper from 'sdc-app/onboarding/softwareProduct/components/compute/ComputeFlavorActionHelper.js';
20 import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js';
21 import {COMPONENTS_COMPUTE_QUESTIONNAIRE} from 'sdc-app/onboarding/softwareProduct/components/SoftwareProductComponentsConstants.js';
22 import {onboardingMethod} from 'sdc-app/onboarding/softwareProduct/SoftwareProductConstants.js';
23
24 export const mapStateToProps = ({
25         softwareProduct: {
26                 softwareProductEditor,
27                 softwareProductComponents: {computeFlavor: {computeEditor = {}}}
28         },
29         currentScreen: {
30                 props: {isReadOnlyMode}
31         }
32 }) => {
33         const {data: currentSoftwareProduct = {}} = softwareProductEditor;
34         let {data , qdata, qgenericFieldInfo, dataMap, genericFieldInfo, formReady} = computeEditor;
35         let isFormValid = ValidationHelper.checkFormValid(genericFieldInfo);
36
37         return {
38                 data,
39                 qdata,
40                 qgenericFieldInfo,
41                 dataMap,
42                 genericFieldInfo,
43                 isReadOnlyMode,
44                 isFormValid,
45                 formReady,
46                 isManual: currentSoftwareProduct.onboardingMethod === onboardingMethod.MANUAL
47         };
48 };
49
50
51 const mapActionsToProps = (dispatch, {softwareProductId, componentId, version}) => {
52         return {
53                 onDataChanged: deltaData => ValidationHelper.dataChanged(dispatch, {deltaData, formName: COMPUTE_FLAVOR_FORM}),
54                 onQDataChanged: deltaData => ValidationHelper.qDataChanged(dispatch, {deltaData, qName: COMPONENTS_COMPUTE_QUESTIONNAIRE}),
55                 onCancel: () => ComputeFlavorActionHelper.closeComputeEditor(dispatch),
56                 onSubmit: ({data, qdata}) => ComputeFlavorActionHelper.saveComputeDataAndQuestionnaire(dispatch, {softwareProductId, componentId, data, qdata, version}),
57                 onValidateForm: () => ValidationHelper.validateForm(dispatch, COMPUTE_FLAVOR_FORM)
58         };
59 };
60
61 export default connect(mapStateToProps, mapActionsToProps)(ComputeFlavorEditorView);