AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | /*! |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 2 | * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 3 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 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 |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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. |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | import RestAPIUtil from 'nfvo-utils/RestAPIUtil.js'; |
| 17 | import Configuration from 'sdc-app/config/Configuration.js'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 18 | import {actionTypes} from './LicenseModelCreationConstants.js'; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 22 | |
| 23 | function baseUrl() { |
| 24 | const restPrefix = Configuration.get('restPrefix'); |
| 25 | return `${restPrefix}/v1.0/vendor-license-models/`; |
| 26 | } |
| 27 | |
| 28 | function createLicenseModel(licenseModel) { |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 29 | return RestAPIUtil.post(baseUrl(), { |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 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 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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 | }); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 51 | }, |
| 52 | |
| 53 | close(dispatch){ |
| 54 | dispatch({ |
| 55 | type: actionTypes.CLOSE |
| 56 | }); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 57 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 58 | dispatch({ |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 59 | type: modalActionTypes.GLOBAL_MODAL_CLOSE |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 60 | }); |
| 61 | }, |
| 62 | |
| 63 | createLicenseModel(dispatch, {licenseModel}){ |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 64 | return createLicenseModel(licenseModel).then(result => { |
| 65 | dispatch({ |
| 66 | type: actionTypes.LICENSE_MODEL_CREATED, |
| 67 | result |
| 68 | }); |
| 69 | return result; |
| 70 | }); |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 71 | } |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 72 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 73 | }; |