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 keyMirror from 'nfvo-utils/KeyMirror.js'; |
| 17 | import i18n from 'nfvo-utils/i18n/i18n.js'; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame^] | 18 | import InputOptions, {other as optionInputOther} from 'nfvo-components/input/inputOptions/InputOptions.jsx'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 19 | |
| 20 | export const actionTypes = keyMirror({ |
| 21 | LICENSE_AGREEMENT_LIST_LOADED: null, |
| 22 | ADD_LICENSE_AGREEMENT: null, |
| 23 | EDIT_LICENSE_AGREEMENT: null, |
| 24 | DELETE_LICENSE_AGREEMENT: null, |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 25 | |
| 26 | licenseAgreementEditor: { |
| 27 | OPEN: null, |
| 28 | CLOSE: null, |
| 29 | DATA_CHANGED: null, |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame^] | 30 | SELECT_TAB: null |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | }); |
| 34 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame^] | 35 | export const LA_EDITOR_FORM = 'LA_EDITOR_FORM'; |
| 36 | |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 37 | export const enums = keyMirror({ |
| 38 | SELECTED_LICENSE_AGREEMENT_TAB: { |
| 39 | GENERAL: 1, |
| 40 | FEATURE_GROUPS: 2 |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 41 | } |
| 42 | }); |
| 43 | |
| 44 | export const defaultState = { |
| 45 | LICENSE_AGREEMENT_EDITOR_DATA: { |
| 46 | licenseTerm: {choice: '', other: ''} |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | export const optionsInputValues = { |
| 51 | LICENSE_MODEL_TYPE: [ |
| 52 | {enum: '', title: i18n('please select…')}, |
| 53 | {enum: 'Fixed_Term', title: 'Fixed Term'}, |
| 54 | {enum: 'Perpetual', title: 'Perpetual'}, |
| 55 | {enum: 'Unlimited', title: 'Unlimited'} |
| 56 | ] |
| 57 | }; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame^] | 58 | |
| 59 | export const extractValue = (item) => { |
| 60 | if (item === undefined) { |
| 61 | return ''; |
| 62 | } //TODO fix it later |
| 63 | |
| 64 | return item ? item.choice === optionInputOther.OTHER ? item.other : InputOptions.getTitleByName(optionsInputValues, item.choice) : ''; |
| 65 | }; |