2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
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';
24 export const mapStateToProps = ({
26 softwareProductEditor,
27 softwareProductComponents: {computeFlavor: {computeEditor = {}}}
30 props: {isReadOnlyMode}
33 const {data: currentSoftwareProduct = {}} = softwareProductEditor;
34 let {data , qdata, qgenericFieldInfo, dataMap, genericFieldInfo, formReady} = computeEditor;
35 let isFormValid = ValidationHelper.checkFormValid(genericFieldInfo);
46 isManual: currentSoftwareProduct.onboardingMethod === onboardingMethod.MANUAL
51 const mapActionsToProps = (dispatch, {softwareProductId, componentId, version}) => {
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)
61 export default connect(mapStateToProps, mapActionsToProps)(ComputeFlavorEditorView);