[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / licenseAgreement / LicenseAgreementConstants.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 keyMirror from 'nfvo-utils/KeyMirror.js';
17 import i18n from 'nfvo-utils/i18n/i18n.js';
18 import InputOptions, {other as optionInputOther} from 'nfvo-components/input/inputOptions/InputOptions.jsx';
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,
25
26         licenseAgreementEditor: {
27                 OPEN: null,
28                 CLOSE: null,
29                 DATA_CHANGED: null,
30                 SELECT_TAB: null
31         }
32
33 });
34
35 export const LA_EDITOR_FORM = 'LA_EDITOR_FORM';
36
37 export const enums = keyMirror({
38         SELECTED_LICENSE_AGREEMENT_TAB: {
39                 GENERAL: 1,
40                 FEATURE_GROUPS: 2
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 };
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 };