[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / details / SoftwareProductDetails.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
18 import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
19 import SoftwareProductActionHelper from 'sdc-app/onboarding/softwareProduct/SoftwareProductActionHelper.js';
20 import SoftwareProductDetailsView from './SoftwareProductDetailsView.jsx';
21 import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js';
22 import {PRODUCT_QUESTIONNAIRE} from 'sdc-app/onboarding/softwareProduct/SoftwareProductConstants.js';
23
24
25 export const mapStateToProps = ({finalizedLicenseModelList, softwareProduct, licenseModel: {licenseAgreement, featureGroup}}) => {
26         let {softwareProductEditor: {data: currentSoftwareProduct, genericFieldInfo}, softwareProductCategories, softwareProductQuestionnaire} = softwareProduct;
27         let {licensingData = {}, licensingVersion} = currentSoftwareProduct;
28         let licenseAgreementList = [], filteredFeatureGroupsList = [];
29         licenseAgreementList = licenseAgreement.licenseAgreementList;
30         if(licensingVersion && licensingVersion !== '' && licensingData && licensingData.licenseAgreement) {
31                 let selectedLicenseAgreement = licenseAgreementList.find(la => la.id === licensingData.licenseAgreement);
32                 if (selectedLicenseAgreement) {
33                         let featureGroupsList = featureGroup.featureGroupsList.filter(({referencingLicenseAgreements}) => referencingLicenseAgreements.includes(selectedLicenseAgreement.id));
34                         if (featureGroupsList.length) {
35                                 filteredFeatureGroupsList = featureGroupsList.map(featureGroup => ({enum: featureGroup.id, title: featureGroup.name}));
36                         }
37                 }
38         }
39         let {qdata, qgenericFieldInfo : qGenericFieldInfo, dataMap} = softwareProductQuestionnaire;
40         let isReadOnlyMode = VersionControllerUtils.isReadOnly(currentSoftwareProduct);
41
42         let isFormValid = ValidationHelper.checkFormValid(genericFieldInfo);
43
44         return {
45                 currentSoftwareProduct,
46                 softwareProductCategories,
47                 licenseAgreementList,
48                 featureGroupsList: filteredFeatureGroupsList,
49                 finalizedLicenseModelList,
50                 qdata,
51                 isReadOnlyMode,
52                 isFormValid,
53                 genericFieldInfo,
54                 qGenericFieldInfo,
55                 dataMap
56         };
57 };
58
59 export const mapActionsToProps = (dispatch) => {
60         return {
61                 onDataChanged: (deltaData, formName) => ValidationHelper.dataChanged(dispatch, {deltaData, formName}),
62                 onVendorParamChanged: (deltaData, formName) => SoftwareProductActionHelper.softwareProductEditorVendorChanged(dispatch, {deltaData, formName}),
63                 onQDataChanged: (deltaData) => ValidationHelper.qDataChanged(dispatch, {deltaData, qName: PRODUCT_QUESTIONNAIRE}),
64                 onValidityChanged: isValidityData => SoftwareProductActionHelper.setIsValidityData(dispatch, {isValidityData}),
65                 onSubmit: (softwareProduct, qdata) =>{ return SoftwareProductActionHelper.updateSoftwareProduct(dispatch, {softwareProduct, qdata});}
66         };
67 };
68
69 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductDetailsView);