Initial coomit for AAI-UI(sparky-fe)
[aai/sparky-fe.git] / src / app / vnfSearch / VnfSearchConstants.js
1 /*
2  * ============LICENSE_START===================================================
3  * SPARKY (AAI UI service)
4  * ============================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=====================================================
21  *
22  * ECOMP and OpenECOMP are trademarks
23  * and service marks of AT&T Intellectual Property.
24  */
25 import keyMirror from 'utils/KeyMirror.js';
26 import {BASE_URL} from 'app/networking/NetworkConstants.js';
27
28 export const VNF_TITLE = 'VNFs';
29
30 export const vnfActionTypes = keyMirror({
31   COUNT_BY_PROV_STATUS_RECEIVED: null,
32   ERROR_NO_DATA_FOR_PROV_STATUS_IN_SEARCH_RANGE_RECEIVED: null,
33   COUNT_BY_ORCH_STATUS_RECEIVED: null,
34   ERROR_NO_DATA_FOR_ORCH_STATUS_IN_SEARCH_RANGE_RECEIVED: null,
35   TOTAL_VNF_COUNT_RECEIVED: null,
36   ERROR_NO_COUNT_RECEIVED: null,
37   VNF_NETWORK_ERROR: null
38 });
39
40 export const CHART_PROV_STATUS = {
41   title: 'VNFs By Provisioning Status',
42   yAxisLabel: 'VNFs',
43   xAxisLabel: 'VNFs',
44   emptyData: [{'values': [
45     {
46       'x': 'No data discovered for Provisioning Status',
47       'y': 0
48     }
49   ]}]
50 };
51
52 export const CHART_ORCH_STATUS = {
53   title: 'VNFs By Orchestration Status',
54   yAxisLabel: 'VNFs',
55   emptyData: [{'values': [
56     {
57       'x': 'No data discovered for Orchestration Status',
58       'y': 0
59     }
60   ]}]
61 };
62
63 export const TOTAL_VNF_COUNT = {
64   title: 'Total VNFs',
65   emptyValue: 0
66 };
67
68 export const VNF_RESULT_URL = BASE_URL + '/search/summarybyentitytype';
69
70 export const DEFAULT_VNFS_SEARCH_HASH = '2172a3c25ae56e4995038ffbc1f055692bfc76c0b8ceda1205bc745a9f7a805d';
71 export const VNFS_ROUTE = 'vnfSearch';