blob: d4a2f0954ce2417b2212b6483da7417e808a7cb1 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
svishnev8f133302018-08-06 23:08:39 +03002 * Copyright © 2016-2018 European Support Limited
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';
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020018import InputOptions, {
19 other as optionInputOther
20} from 'nfvo-components/input/validation/InputOptions.jsx';
Michael Landoefa037d2017-02-19 12:57:33 +020021
svishnevbacc7152018-11-05 12:11:30 +020022export const actionTypes = keyMirror(
23 {
24 ENTITLEMENT_POOLS_LIST_LOADED: null,
25 entitlementPoolsEditor: {
26 OPEN: null,
27 CLOSE: null,
28 DATA_CHANGED: null,
29 LIMITS_LIST_LOADED: null
30 }
31 },
32 'entitlementPoolsEditor'
33);
Michael Landoefa037d2017-02-19 12:57:33 +020034
35export const enums = keyMirror({
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020036 SELECTED_FEATURE_GROUP_TAB: {
37 GENERAL: 1,
38 ENTITLEMENT_POOLS: 2,
39 LICENCE_KEY_GROUPS: 3
40 },
41 SELECTED_ENTITLEMENT_POOLS_BUTTONTAB: {
42 ASSOCIATED_ENTITLEMENT_POOLS: 1,
43 AVAILABLE_ENTITLEMENT_POOLS: 2
44 }
Michael Landoefa037d2017-02-19 12:57:33 +020045});
46
47export const defaultState = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020048 ENTITLEMENT_POOLS_EDITOR_DATA: {
49 entitlementMetric: { choice: '', other: '' },
50 aggregationFunction: { choice: '', other: '' },
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020051 time: { choice: '', other: '' }
52 }
Michael Landoefa037d2017-02-19 12:57:33 +020053};
54
55export const thresholdUnitType = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020056 ABSOLUTE: 'Absolute',
57 PERCENTAGE: 'Percentage'
Michael Landoefa037d2017-02-19 12:57:33 +020058};
59
60export const optionsInputValues = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020061 TIME: [
62 { enum: '', title: i18n('please select…') },
63 { enum: 'Hour', title: 'Hour' },
64 { enum: 'Day', title: 'Day' },
65 { enum: 'Month', title: 'Month' }
66 ],
67 AGGREGATE_FUNCTION: [
68 { enum: '', title: i18n('please select…') },
69 { enum: 'Peak', title: 'Peak' },
70 { enum: 'Average', title: 'Average' }
71 ],
72 ENTITLEMENT_METRIC: [
73 { enum: '', title: i18n('please select…') },
74 { enum: 'Software_Instances_Count', title: 'Software Instances' },
75 { enum: 'Core', title: 'Core' },
76 { enum: 'CPU', title: 'CPU' },
77 { enum: 'Trunks', title: 'Trunks' },
78 { enum: 'User', title: 'User' },
79 { enum: 'Subscribers', title: 'Subscribers' },
80 { enum: 'Tenants', title: 'Tenants' },
81 { enum: 'Tokens', title: 'Tokens' },
82 { enum: 'Seats', title: 'Seats' },
83 { enum: 'Units_TB', title: 'Units-TB' },
84 { enum: 'Units_GB', title: 'Units-GB' },
85 { enum: 'Units_MB', title: 'Units-MB' }
86 ]
Michael Landoefa037d2017-02-19 12:57:33 +020087};
88
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020089export const extractValue = item => {
90 if (item === undefined) {
91 return '';
92 } //TODO fix it later
93 return item
94 ? item.choice === optionInputOther.OTHER
95 ? item.other
96 : InputOptions.getTitleByName(optionsInputValues, item.choice)
97 : '';
AviZi280f8012017-06-09 02:39:56 +030098};
Michael Landoefa037d2017-02-19 12:57:33 +020099
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200100export const extractUnits = units => {
101 if (units === undefined) {
102 return '';
103 } //TODO fix it later
104 return units === 'Absolute' ? '' : '%';
AviZi280f8012017-06-09 02:39:56 +0300105};
Michael Landoefa037d2017-02-19 12:57:33 +0200106
Avi Ziv61070c92017-07-26 17:37:57 +0300107export const tabIds = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200108 GENERAL: 'GENERAL',
109 SP_LIMITS: 'SP_LIMITS',
110 VENDOR_LIMITS: 'VENDOR_LIMITS',
111 ADD_LIMIT_BUTTON: 'ADD_LIMIT_BUTTON'
Avi Ziv61070c92017-07-26 17:37:57 +0300112};
Avi Zivb8e2faf2017-07-18 19:45:38 +0300113
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +0200114export const SP_ENTITLEMENT_POOL_FORM = 'SPENTITLEMENTPOOL';