2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 import keyMirror from 'nfvo-utils/KeyMirror.js';
17 import i18n from 'nfvo-utils/i18n/i18n.js';
19 export const actionTypes = keyMirror({
20 TOGGLE_EXPANDED: null,
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'
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"
34 FILE_IS_ENV_WITHOUT_ENV_EXTENSION: i18n(
35 "file is defined as an env file but it doesn't have .env extension"
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'
42 MISSING_ENV_FILE_IN_ZIP: i18n('missing env file in zip'),
43 ARTIFACT_NOT_IN_USE: i18n('artifact not in use')
46 export const errorLevels = keyMirror({
50 export const nodeFilters = keyMirror({
53 export const nodeTypes = keyMirror({
55 volume: i18n('Volume'),
56 network: i18n('Network'),
57 artifact: i18n('Artifact'),
58 env: i18n('Environment'),
62 export const mouseActions = keyMirror({