Adding filter bar
[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 export const VNF_SEARCH_FILTER_NAME = 'vnfSearch';
30
31 export const vnfActionTypes = keyMirror({
32   VNF_NETWORK_ERROR: null,
33   VNF_SEARCH_RESULTS_RECEIVED: null,
34   VNF_SEARCH_FILTERS_RECEIVED: null,
35   VNF_FILTER_PANEL_TOGGLED: 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 CHART_NF_TYPE = {
62   title: 'VNFs By Network Function Type',
63   yAxisLabel: 'VNFs',
64   emptyData: {'values': [
65     {
66       'x': 'No data discovered for Network Function Type',
67       'y': 0
68     }
69   ]}
70 };
71
72 export const CHART_NF_ROLE = {
73   title: 'VNFs By Network Function Role',
74   yAxisLabel: 'VNFs',
75   emptyData: {'values': [
76     {
77       'x': 'No data discovered for Network Function Role',
78       'y': 0
79     }
80   ]}
81 };
82
83 export const TOTAL_VNF_COUNT = {
84   title: 'Total VNFs',
85   emptyValue: ''
86 };
87
88 export const VNF_FILTER_AGGREGATION_URL = BASE_URL + '/rest/search/filterAggregation';
89
90 export const DEFAULT_VNFS_SEARCH_HASH = '2172a3c25ae56e4995038ffbc1f055692bfc76c0b8ceda1205bc745a9f7a805d';
91 export const VNFS_ROUTE = 'vnfSearch';
92 export const VNF_FILTER_EMPTY_RESULT = 'No data for the specified filters';