Add collaboration feature
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / creation / LicenseModelCreationActionHelper.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 import {actionTypes} from './LicenseModelCreationConstants.js';
19 import {modalContentMapper} from 'sdc-app/common/modal/ModalContentMapper.js';
20 import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
21 import i18n from 'nfvo-utils/i18n/i18n.js';
22
23 function baseUrl() {
24         const restPrefix = Configuration.get('restPrefix');
25         return `${restPrefix}/v1.0/vendor-license-models/`;
26 }
27
28 function createLicenseModel(licenseModel) {
29         return RestAPIUtil.post(baseUrl(), {
30                 vendorName: licenseModel.vendorName,
31                 description: licenseModel.description,
32                 iconRef: 'icon'
33         });
34 }
35
36
37 export default {
38
39         open(dispatch) {
40                 dispatch({
41                         type: actionTypes.OPEN
42                 });
43
44                 dispatch({
45                         type: modalActionTypes.GLOBAL_MODAL_SHOW,
46                         data: {
47                                 modalComponentName: modalContentMapper.LICENSE_MODEL_CREATION,
48                                 title: i18n('New License Model')
49                         }
50                 });
51         },
52
53         close(dispatch){
54                 dispatch({
55                         type: actionTypes.CLOSE
56                 });
57
58                 dispatch({
59                         type: modalActionTypes.GLOBAL_MODAL_CLOSE
60                 });
61         },
62
63         createLicenseModel(dispatch, {licenseModel}){
64                 return createLicenseModel(licenseModel).then(result => {
65                         dispatch({
66                                 type: actionTypes.LICENSE_MODEL_CREATED,
67                                 result
68                         });
69                         return result;
70                 });
71         }
72
73 };