Merge "[1707-OS] Updated license text according to the"
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / general / SoftwareProductComponentsGeneral.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 SoftwareProductComponentsGeneralView from './SoftwareProductComponentsGeneralView.jsx';
18 import SoftwareProductComponentsActionHelper from '../SoftwareProductComponentsActionHelper.js';
19 import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
20 import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js';
21 import SoftwareProductActionHelper from 'sdc-app/onboarding/softwareProduct/SoftwareProductActionHelper.js';
22
23
24 import {forms, COMPONENTS_QUESTIONNAIRE} from '../SoftwareProductComponentsConstants.js';
25
26
27 export const mapStateToProps = ({softwareProduct}) => {
28         let {softwareProductEditor: {data: currentVSP}, softwareProductComponents} = softwareProduct;
29         let {componentEditor: {data: componentData = {} , qdata, qgenericFieldInfo : qGenericFieldInfo, dataMap, genericFieldInfo}} = softwareProductComponents;
30         let isReadOnlyMode = VersionControllerUtils.isReadOnly(currentVSP);
31         let isFormValid = ValidationHelper.checkFormValid(genericFieldInfo);
32
33         return {
34                 componentData,
35                 qdata,
36                 isReadOnlyMode,
37                 genericFieldInfo,
38                 qGenericFieldInfo,
39                 dataMap,
40                 isFormValid
41         };
42 };
43
44
45 const mapActionsToProps = (dispatch, {softwareProductId, version, componentId}) => {
46         return {
47                 onDataChanged: (deltaData) => ValidationHelper.dataChanged(dispatch, {deltaData, formName: forms.ALL_SPC_FORMS}),
48                 onQDataChanged: (deltaData) => ValidationHelper.qDataChanged(dispatch, {deltaData, qName: COMPONENTS_QUESTIONNAIRE}),
49                 onSubmit: ({componentData, qdata}) => { return SoftwareProductComponentsActionHelper.updateSoftwareProductComponent(dispatch,
50                         {softwareProductId, version, vspComponentId: componentId, componentData, qdata});
51                 },
52                 onValidityChanged: isValidityData => SoftwareProductActionHelper.setIsValidityData(dispatch, {isValidityData})
53         };
54
55 };
56
57 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductComponentsGeneralView);