blob: 61fdae86a1062c2b3b1bb1dea839f2e7cc1b3b82 [file] [log] [blame]
svishnev091edfd2018-03-19 12:15:19 +02001/*
2 * 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
svishnev091edfd2018-03-19 12:15:19 +02007 *
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,
svishnev091edfd2018-03-19 12:15:19 +020012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * 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';
Avi Ziv61070c92017-07-26 17:37:57 +030017import i18n from 'nfvo-utils/i18n/i18n.js';
Michael Landoefa037d2017-02-19 12:57:33 +020018
svishnevbacc7152018-11-05 12:11:30 +020019export const actionTypes = keyMirror(
20 {
21 LICENSE_MODEL_LOADED: null,
22 LICENSE_MODELS_LIST_LOADED: null,
23 FINALIZED_LICENSE_MODELS_LIST_LOADED: null,
24 ARCHIVED_LICENSE_MODELS_LIST_LOADED: null,
25 EDIT_LICENSE_MODEL: null
26 },
27 'licenseModel'
28);
Michael Landoefa037d2017-02-19 12:57:33 +020029
Avi Ziv61070c92017-07-26 17:37:57 +030030export const thresholdUnitType = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020031 ABSOLUTE: 'Absolute',
32 PERCENTAGE: 'Percentage'
Avi Ziv61070c92017-07-26 17:37:57 +030033};
34
35export const optionsInputValues = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020036 THRESHOLD_UNITS: [
37 { enum: '', title: i18n('please select…') },
38 { enum: thresholdUnitType.ABSOLUTE, title: 'Absolute' },
39 { enum: thresholdUnitType.PERCENTAGE, title: '%' }
40 ]
41};
svishnevc72587e2018-09-12 13:25:42 +030042
43export const SORTING_PROPERTY_NAME = 'name';