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