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