[SDC-29] rebase continue work to align source
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / attachments / SoftwareProductAttachments.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 i18n from 'nfvo-utils/i18n/i18n.js';
18 import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
19 import SoftwareProductActionHelper from 'sdc-app/onboarding/softwareProduct/SoftwareProductActionHelper.js';
20 import HeatSetupActionHelper from './setup/HeatSetupActionHelper.js';
21 import SoftwareProductAttachmentsView from './SoftwareProductAttachmentsView.jsx';
22 import {errorLevels} from 'sdc-app/onboarding/softwareProduct/attachments/validation/HeatValidationConstants.js';
23 import OnboardingActionHelper from 'sdc-app/onboarding/OnboardingActionHelper.js';
24 import HeatSetup from './setup/HeatSetup.js';
25 import {doesHeatDataExist} from './SoftwareProductAttachmentsUtils.js';
26
27 import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
28
29 export const mapStateToProps = (state) => {
30         let {
31                 softwareProduct: {
32                         softwareProductEditor:{data: currentSoftwareProduct = {}},
33                         softwareProductAttachments: {heatSetup, heatSetupCache, heatValidation : {errorList}}
34                 }
35         } = state;
36
37         let {unassigned = [], modules = []} = heatSetup;
38         let goToOverview = true;
39         if (errorList) {
40                 for (let i = 0 ; i < errorList.length ; i++) {
41                         if (errorList[i].level === errorLevels.ERROR) {
42                                 goToOverview = false;
43                         }
44                 }
45         }
46         let heatDataExist = doesHeatDataExist(heatSetup);
47
48         let isReadOnlyMode = currentSoftwareProduct && currentSoftwareProduct.version ?
49                         VersionControllerUtils.isReadOnly(currentSoftwareProduct) : false;
50         let {version} = currentSoftwareProduct;
51         return {
52                 isValidationAvailable: unassigned.length === 0 && modules.length > 0,
53                 heatSetup,
54                 heatSetupCache,
55                 heatDataExist,
56                 goToOverview,
57                 HeatSetupComponent: HeatSetup,
58                 isReadOnlyMode,
59                 version
60         };
61 };
62
63 export const mapActionsToProps = (dispatch, {softwareProductId}) => {
64         return {
65                 onDownload: ({heatCandidate, isReadOnlyMode, version}) => SoftwareProductActionHelper.downloadHeatFile(dispatch, {softwareProductId, heatCandidate, isReadOnlyMode, version}),
66                 onUpload: (formData, version) => dispatch({
67                         type: modalActionTypes.GLOBAL_MODAL_WARNING,
68                         data:{
69                                 msg: i18n('Upload will erase existing data. Do you want to continue?'),
70                                 confirmationButtonText: i18n('Continue'),
71                                 onConfirmed: ()=>SoftwareProductActionHelper.uploadFile(dispatch, {
72                                         softwareProductId,
73                                         formData,
74                                         failedNotificationTitle: i18n('Upload validation failed'),
75                                         version
76                                 })
77                         }
78                 }),
79                 onSave: (heatCandidate, version) => SoftwareProductActionHelper.updateSoftwareProductHeatCandidate(dispatch, {softwareProductId, heatCandidate, version}),
80                 onGoToOverview: ({version}) => {
81                         OnboardingActionHelper.navigateToSoftwareProductLandingPage(dispatch, {softwareProductId, version});
82                 },
83                 onProcessAndValidate: ({heatData, heatDataCache, isReadOnlyMode, version}) => {
84                         return HeatSetupActionHelper.processAndValidateHeat(dispatch,
85                                 {softwareProductId, heatData, heatDataCache, isReadOnlyMode, version});
86                 }
87         };
88 };
89
90 export default connect(mapStateToProps, mapActionsToProps, null, {withRef: true})(SoftwareProductAttachmentsView);