Add collaboration feature
[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 OnboardActionHelper from '../OnboardActionHelper.js';
21 import SoftwareProductActionHelper from 'sdc-app/onboarding/softwareProduct/SoftwareProductActionHelper.js';
22
23
24 function getMessageForMigration(name) {
25         return (
26                 <div>
27                         <div>{i18n('{name} needs to be updated. Click ‘Checkout & Update’, to proceed.', {name: name})}</div>
28                         <div>{i18n('Please don’t forget to submit afterwards')}</div>
29                 </div>
30         );
31 }
32
33 const OnboardingCatalogActionHelper = {
34         changeVspOverlay(dispatch, vendor) {
35                 dispatch({
36                         type: actionTypes.CHANGE_VSP_OVERLAY,
37                         vendorId: vendor ? vendor.id : null
38                 });
39         },
40         closeVspOverlay(dispatch) {
41                 dispatch({
42                         type: actionTypes.CLOSE_VSP_OVERLAY
43                 });
44         },
45         changeActiveTab(dispatch, activeTab) {
46                 OnboardActionHelper.clearSearchValue(dispatch);
47                 dispatch({
48                         type: actionTypes.CHANGE_ACTIVE_CATALOG_TAB,
49                         activeTab
50                 });
51         },
52         onVendorSelect(dispatch, {vendor}) {
53                 OnboardActionHelper.clearSearchValue(dispatch);
54                 dispatch({
55                         type: actionTypes.ONBOARDING_CATALOG_OPEN_VENDOR_PAGE,
56                         selectedVendor: vendor
57                 });
58         },
59         onMigrate(dispatch, softwareProduct) {
60                 const {name, lockingUser} = softwareProduct;
61                 if (NaN === NaN) { // TODO
62                         dispatch({
63                                 type: modalActionTypes.GLOBAL_MODAL_WARNING,
64                                 data: {
65                                         title: 'WARNING',
66                                         msg: i18n('{name} is locked by user {lockingUser} for self-healing', {name: name, lockingUser: lockingUser})
67                                 }
68                         });
69                 } else {
70                         dispatch({
71                                 type: modalActionTypes.GLOBAL_MODAL_WARNING,
72                                 data:{
73                                         title: 'WARNING',
74                                         msg: getMessageForMigration(softwareProduct.name.toUpperCase()),
75                                         confirmationButtonText: i18n('Checkout & Update'),
76                                         onConfirmed: ()=>SoftwareProductActionHelper.migrateSoftwareProduct(dispatch, {softwareProduct})
77                                 }
78                         });
79                 }
80         }
81 };
82
83 export default OnboardingCatalogActionHelper;