blob: 87df1386b648ad29790be1dcccbe861fd4df6e2a [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
Michael Landoefa037d2017-02-19 12:57:33 +02002 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
AviZi280f8012017-06-09 02:39:56 +03003 *
Michael Landoefa037d2017-02-19 12:57:33 +02004 * 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
AviZi280f8012017-06-09 02:39:56 +03007 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
Michael Landoefa037d2017-02-19 12:57:33 +020010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
AviZi280f8012017-06-09 02:39:56 +030012 * 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.
Michael Landoefa037d2017-02-19 12:57:33 +020015 */
Michael Landoefa037d2017-02-19 12:57:33 +020016import RestAPIUtil from 'nfvo-utils/RestAPIUtil.js';
17import Configuration from 'sdc-app/config/Configuration.js';
Michael Landoefa037d2017-02-19 12:57:33 +020018import {actionTypes} from './LicenseModelCreationConstants.js';
AviZi280f8012017-06-09 02:39:56 +030019import {modalContentMapper} from 'sdc-app/common/modal/ModalContentMapper.js';
20import {actionTypes as modalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js';
21import i18n from 'nfvo-utils/i18n/i18n.js';
Michael Landoefa037d2017-02-19 12:57:33 +020022
23function baseUrl() {
24 const restPrefix = Configuration.get('restPrefix');
25 return `${restPrefix}/v1.0/vendor-license-models/`;
26}
27
28function createLicenseModel(licenseModel) {
AviZi280f8012017-06-09 02:39:56 +030029 return RestAPIUtil.post(baseUrl(), {
Michael Landoefa037d2017-02-19 12:57:33 +020030 vendorName: licenseModel.vendorName,
31 description: licenseModel.description,
32 iconRef: 'icon'
33 });
34}
35
36
37export default {
38
39 open(dispatch) {
40 dispatch({
41 type: actionTypes.OPEN
42 });
AviZi280f8012017-06-09 02:39:56 +030043
44 dispatch({
45 type: modalActionTypes.GLOBAL_MODAL_SHOW,
46 data: {
47 modalComponentName: modalContentMapper.LICENSE_MODEL_CREATION,
48 title: i18n('New License Model')
49 }
50 });
Michael Landoefa037d2017-02-19 12:57:33 +020051 },
52
53 close(dispatch){
54 dispatch({
55 type: actionTypes.CLOSE
56 });
Michael Landoefa037d2017-02-19 12:57:33 +020057
Michael Landoefa037d2017-02-19 12:57:33 +020058 dispatch({
AviZi280f8012017-06-09 02:39:56 +030059 type: modalActionTypes.GLOBAL_MODAL_CLOSE
Michael Landoefa037d2017-02-19 12:57:33 +020060 });
61 },
62
63 createLicenseModel(dispatch, {licenseModel}){
talig8e9c0652017-12-20 14:30:43 +020064 return createLicenseModel(licenseModel).then(result => {
65 dispatch({
66 type: actionTypes.LICENSE_MODEL_CREATED,
67 result
68 });
69 return result;
70 });
Michael Landoefa037d2017-02-19 12:57:33 +020071 }
AviZi280f8012017-06-09 02:39:56 +030072
Michael Landoefa037d2017-02-19 12:57:33 +020073};