svishnev | 091edfd | 2018-03-19 12:15:19 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2016-2018 European Support Limited |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 3 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 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 |
svishnev | 091edfd | 2018-03-19 12:15:19 +0200 | [diff] [blame] | 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
svishnev | 091edfd | 2018-03-19 12:15:19 +0200 | [diff] [blame] | 12 | * 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 Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 15 | */ |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 16 | import keyMirror from 'nfvo-utils/KeyMirror.js'; |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 17 | import i18n from 'nfvo-utils/i18n/i18n.js'; |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 18 | |
svishnev | bacc715 | 2018-11-05 12:11:30 +0200 | [diff] [blame^] | 19 | export 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 Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 29 | |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 30 | export const thresholdUnitType = { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 31 | ABSOLUTE: 'Absolute', |
| 32 | PERCENTAGE: 'Percentage' |
Avi Ziv | 61070c9 | 2017-07-26 17:37:57 +0300 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | export const optionsInputValues = { |
Einav Weiss Keidar | 7fdf733 | 2018-03-20 14:45:40 +0200 | [diff] [blame] | 36 | THRESHOLD_UNITS: [ |
| 37 | { enum: '', title: i18n('please select…') }, |
| 38 | { enum: thresholdUnitType.ABSOLUTE, title: 'Absolute' }, |
| 39 | { enum: thresholdUnitType.PERCENTAGE, title: '%' } |
| 40 | ] |
| 41 | }; |
svishnev | c72587e | 2018-09-12 13:25:42 +0300 | [diff] [blame] | 42 | |
| 43 | export const SORTING_PROPERTY_NAME = 'name'; |