3b434e3ba480c120b33af2555c8cf18345491aff
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / creation / SoftwareProductCreationActionHelper.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 RestAPIUtil from 'nfvo-utils/RestAPIUtil.js';
17 import Configuration from 'sdc-app/config/Configuration.js';
18
19 import SoftwareProductActionHelper from 'sdc-app/onboarding/softwareProduct/SoftwareProductActionHelper.js';
20 import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
21 import {modalContentMapper} from 'sdc-app/common/modal/ModalContentMapper.js';
22 import {actionTypes} from './SoftwareProductCreationConstants.js';
23 import i18n from 'nfvo-utils/i18n/i18n.js';
24
25 function baseUrl() {
26         const restPrefix = Configuration.get('restPrefix');
27         return `${restPrefix}/v1.0/vendor-software-products/`;
28 }
29
30 function createSoftwareProduct(softwareProduct) {
31         return RestAPIUtil.post(baseUrl(), {
32                 ...softwareProduct,
33                 icon: 'icon',
34                 licensingData: {}
35         });
36 }
37
38 const SoftwareProductCreationActionHelper = {
39
40         open(dispatch, vendorId) {
41                 SoftwareProductActionHelper.loadSoftwareProductAssociatedData(dispatch);
42                 dispatch({
43                         type: actionTypes.OPEN,
44                         selectedVendorId: vendorId
45                 });
46
47                 dispatch({
48                         type: modalActionTypes.GLOBAL_MODAL_SHOW,
49                         data: {
50                                 modalComponentName: modalContentMapper.SOFTWARE_PRODUCT_CREATION,
51                                 title: i18n('New Software Product'),
52                                 modalComponentProps: {
53                                         vendorId
54                                 }
55                         }
56                 });
57
58         },
59
60         resetData(dispatch) {
61
62                 dispatch({
63                         type: modalActionTypes.GLOBAL_MODAL_CLOSE
64                 });
65
66                 dispatch({
67                         type: actionTypes.RESET_DATA
68                 });
69         },
70
71         createSoftwareProduct(dispatch, {softwareProduct}) {
72                 return createSoftwareProduct(softwareProduct);
73         }
74
75 };
76
77 export default SoftwareProductCreationActionHelper;