blob: 998d5f0e8d7f60e7a846d87db8f19e520be85f83 [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 keyMirror from 'nfvo-utils/KeyMirror.js';
17import i18n from 'nfvo-utils/i18n/i18n.js';
AviZi280f8012017-06-09 02:39:56 +030018import InputOptions, {other as optionInputOther} from 'nfvo-components/input/inputOptions/InputOptions.jsx';
Michael Landoefa037d2017-02-19 12:57:33 +020019
20export 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 Landoefa037d2017-02-19 12:57:33 +020025
26 licenseAgreementEditor: {
27 OPEN: null,
28 CLOSE: null,
29 DATA_CHANGED: null,
AviZi280f8012017-06-09 02:39:56 +030030 SELECT_TAB: null
Michael Landoefa037d2017-02-19 12:57:33 +020031 }
32
33});
34
AviZi280f8012017-06-09 02:39:56 +030035export const LA_EDITOR_FORM = 'LA_EDITOR_FORM';
36
Michael Landoefa037d2017-02-19 12:57:33 +020037export const enums = keyMirror({
38 SELECTED_LICENSE_AGREEMENT_TAB: {
39 GENERAL: 1,
40 FEATURE_GROUPS: 2
Michael Landoefa037d2017-02-19 12:57:33 +020041 }
42});
43
44export const defaultState = {
45 LICENSE_AGREEMENT_EDITOR_DATA: {
46 licenseTerm: {choice: '', other: ''}
47 }
48};
49
50export 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};
AviZi280f8012017-06-09 02:39:56 +030058
59export 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};