[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / attachments / validation / HeatValidationConstants.js
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('missing or illegal file type in manifest'),
29         FILE_IS_YML_WITHOUT_YML_EXTENSION: i18n('file is defined as a heat file but it doesn\'t have .yml or .yaml extension'),
30         FILE_IS_ENV_WITHOUT_ENV_EXTENSION: i18n('file is defined as an env file but it doesn\'t have .env extension'),
31         ILLEGAL_YAML_FILE_CONTENT: i18n('illegal yaml file content'),
32         ILLEGAL_HEAT_YAML_FILE_CONTENT: i18n('illegal HEAT yaml file content'),
33         MISSING_FILE_NAME_IN_MANIFEST: i18n('a file is written in manifest without file name'),
34         MISSING_ENV_FILE_IN_ZIP: i18n('missing env file in zip'),
35         ARTIFACT_NOT_IN_USE: i18n('artifact not in use')
36 });
37
38 export const errorLevels = keyMirror({
39         WARNING: 'WARNING',
40         ERROR: 'ERROR'
41 });
42 export const nodeFilters = keyMirror({
43         ALL: 'All'
44 });
45 export const nodeTypes = keyMirror({
46         heat: i18n('Heat'),
47         volume: i18n('Volume'),
48         network: i18n('Network'),
49         artifact: i18n('Artifact'),
50         env: i18n('Environment'),
51         other: i18n('')
52 });
53
54 export const mouseActions = keyMirror({
55         MOUSE_BUTTON_CLICK: 0
56 });
57