[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / onboard / onboardingCatalog / OnboardingCatalogActionHelper.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 React from 'react';
17 import i18n from 'nfvo-utils/i18n/i18n.js';
18 import {actionTypes} from './OnboardingCatalogConstants.js';
19 import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
20 import {statusEnum} from 'nfvo-components/panel/versionController/VersionControllerConstants.js';
21 import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
22 import OnboardActionHelper from '../OnboardActionHelper.js';
23 import SoftwareProductActionHelper from 'sdc-app/onboarding/softwareProduct/SoftwareProductActionHelper.js';
24
25
26 function getMessageForMigration(name) {
27         return (
28                 <div>
29                         <div>{i18n(`${name} needs to be updated. Click ‘Checkout & Update’, to proceed.`)}</div>
30                         <div>{i18n('Please don’t forget to submit afterwards')}</div>
31                 </div>
32         );
33 }
34
35 const OnboardingCatalogActionHelper = {
36         changeVspOverlay(dispatch, vendor) {
37                 dispatch({
38                         type: actionTypes.CHANGE_VSP_OVERLAY,
39                         vendorId: vendor ? vendor.id : null
40                 });
41         },
42         closeVspOverlay(dispatch) {
43                 dispatch({
44                         type: actionTypes.CLOSE_VSP_OVERLAY
45                 });
46         },
47         changeActiveTab(dispatch, activeTab) {
48                 OnboardActionHelper.clearSearchValue(dispatch);
49                 dispatch({
50                         type: actionTypes.CHANGE_ACTIVE_CATALOG_TAB,
51                         activeTab
52                 });
53         },
54         onVendorSelect(dispatch, {vendor}) {
55                 OnboardActionHelper.clearSearchValue(dispatch);
56                 dispatch({
57                         type: actionTypes.ONBOARDING_CATALOG_OPEN_VENDOR_PAGE,
58                         selectedVendor: vendor
59                 });
60         },      
61         onMigrate(dispatch, softwareProduct) {
62                 const {status, name, lockingUser} = softwareProduct;
63                 if (status === statusEnum.CHECK_OUT_STATUS && !VersionControllerUtils.isCheckedOutByCurrentUser(softwareProduct)) {
64                         dispatch({
65                                 type: modalActionTypes.GLOBAL_MODAL_WARNING,                            
66                                 data: {
67                                         title: 'WARNING',
68                                         msg: i18n(`${name} is locked by user ${lockingUser} for self-healing`)
69                                 }
70                         });
71                 } else { 
72                         dispatch({
73                                 type: modalActionTypes.GLOBAL_MODAL_WARNING,
74                                 data:{
75                                         title: 'WARNING',
76                                         msg: getMessageForMigration(softwareProduct.name.toUpperCase()),                                                                                                        
77                                         confirmationButtonText: i18n('Checkout & Update'),
78                                         onConfirmed: ()=>SoftwareProductActionHelper.migrateSoftwareProduct(dispatch, {softwareProduct})
79                                 }
80                         });
81                 }       
82         }
83 };
84
85 export default OnboardingCatalogActionHelper;