Adding filter bar
[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
24 import keyMirror from 'utils/KeyMirror.js';
25 import {BASE_URL} from 'app/networking/NetworkConstants.js';
26
27 export const VNF_TITLE = 'VNFs';
28 export const VNF_SEARCH_FILTER_NAME = 'vnfSearch';
29
30 export const vnfActionTypes = keyMirror({
31   VNF_NETWORK_ERROR: null,
32   VNF_SEARCH_RESULTS_RECEIVED: null,
33   VNF_SEARCH_FILTERS_RECEIVED: null,
34   VNF_FILTER_PANEL_TOGGLED: null
35 });
36
37 export const CHART_PROV_STATUS = {
38   title: 'VNFs By Provisioning Status',
39   yAxisLabel: 'VNFs',
40   xAxisLabel: 'VNFs',
41   emptyData: {'values': [
42     {
43       'x': 'No data discovered for Provisioning Status',
44       'y': 0
45     }
46   ]}
47 };
48
49 export const CHART_ORCH_STATUS = {
50   title: 'VNFs By Orchestration Status',
51   yAxisLabel: 'VNFs',
52   emptyData: {'values': [
53     {
54       'x': 'No data discovered for Orchestration Status',
55       'y': 0
56     }
57   ]}
58 };
59
60 export const CHART_NF_TYPE = {
61   title: 'VNFs By Network Function Type',
62   yAxisLabel: 'VNFs',
63   emptyData: {'values': [
64     {
65       'x': 'No data discovered for Network Function Type',
66       'y': 0
67     }
68   ]}
69 };
70
71 export const CHART_NF_ROLE = {
72   title: 'VNFs By Network Function Role',
73   yAxisLabel: 'VNFs',
74   emptyData: {'values': [
75     {
76       'x': 'No data discovered for Network Function Role',
77       'y': 0
78     }
79   ]}
80 };
81
82 export const TOTAL_VNF_COUNT = {
83   title: 'Total VNFs',
84   emptyValue: ''
85 };
86
87 export const VNF_FILTER_AGGREGATION_URL = BASE_URL + '/rest/search/filterAggregation';
88
89 export const DEFAULT_VNFS_SEARCH_HASH = '2172a3c25ae56e4995038ffbc1f055692bfc76c0b8ceda1205bc745a9f7a805d';
90 export const VNFS_ROUTE = 'vnfSearch';
91 export const VNF_FILTER_EMPTY_RESULT = 'No data for the specified filters';