8c9f54b5babcdcbbecd64a17a34e3d84029274e3
[sdc.git] /
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
19 export const actionTypes = keyMirror({
20     TOGGLE_EXPANDED: null,
21     SELECTED_NODE: null,
22     UNSELECTED_NODE: null
23 });
24
25 export const errorTypes = keyMirror({
26     MISSING_FILE_IN_ZIP: i18n('missing file in zip'),
27     MISSING_FILE_IN_MANIFEST: i18n('missing file in manifest'),
28     MISSING_OR_ILLEGAL_FILE_TYPE_IN_MANIFEST: i18n(
29         'missing or illegal file type in manifest'
30     ),
31     FILE_IS_YML_WITHOUT_YML_EXTENSION: i18n(
32         "file is defined as a heat file but it doesn't have .yml or .yaml extension"
33     ),
34     FILE_IS_ENV_WITHOUT_ENV_EXTENSION: i18n(
35         "file is defined as an env file but it doesn't have .env extension"
36     ),
37     ILLEGAL_YAML_FILE_CONTENT: i18n('illegal yaml file content'),
38     ILLEGAL_HEAT_YAML_FILE_CONTENT: i18n('illegal HEAT yaml file content'),
39     MISSING_FILE_NAME_IN_MANIFEST: i18n(
40         'a file is written in manifest without file name'
41     ),
42     MISSING_ENV_FILE_IN_ZIP: i18n('missing env file in zip'),
43     ARTIFACT_NOT_IN_USE: i18n('artifact not in use')
44 });
45
46 export const errorLevels = keyMirror({
47     WARNING: 'WARNING',
48     ERROR: 'ERROR'
49 });
50 export const nodeFilters = keyMirror({
51     ALL: 'All'
52 });
53 export const nodeTypes = keyMirror({
54     heat: i18n('Heat'),
55     volume: i18n('Volume'),
56     network: i18n('Network'),
57     artifact: i18n('Artifact'),
58     env: i18n('Environment'),
59     other: i18n('')
60 });
61
62 export const mouseActions = keyMirror({
63     MOUSE_BUTTON_CLICK: 0
64 });