blob: d97f682535a64431fc12333560c6c883dcd16d00 [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
19export const actionTypes = keyMirror({
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020020 LICENSE_MODEL_LOADED: null,
21 LICENSE_MODELS_LIST_LOADED: null,
22 FINALIZED_LICENSE_MODELS_LIST_LOADED: null,
23 ARCHIVED_LICENSE_MODELS_LIST_LOADED: null,
24 EDIT_LICENSE_MODEL: null
Michael Landoefa037d2017-02-19 12:57:33 +020025});
26
Avi Ziv61070c92017-07-26 17:37:57 +030027export const thresholdUnitType = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020028 ABSOLUTE: 'Absolute',
29 PERCENTAGE: 'Percentage'
Avi Ziv61070c92017-07-26 17:37:57 +030030};
31
32export const optionsInputValues = {
Einav Weiss Keidar7fdf7332018-03-20 14:45:40 +020033 THRESHOLD_UNITS: [
34 { enum: '', title: i18n('please select…') },
35 { enum: thresholdUnitType.ABSOLUTE, title: 'Absolute' },
36 { enum: thresholdUnitType.PERCENTAGE, title: '%' }
37 ]
38};