Including build.sh to run gulp-webpack
[aai/sparky-fe.git] / src / generic-components / filterBar / FilterBarConstants.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 filterBarActionTypes = keyMirror({
27   SET_FILTERS: null,
28   SET_FILTER_VALUES: null,
29   CLEAR_FILTERS: null,
30   FILTER_VALUE_CHANGE: null,
31   NEW_SELECTIONS: null,
32   SET_NON_CONVERTED_VALUES: null,
33   SET_CONVERTED_VALUES: null,
34   SET_UNIFIED_VALUES: null
35 });
36
37 export const UNIFIED_FILTERS_URL = BASE_URL + '/rest/search/unifiedFilterRequest';
38
39 export const DISCOVER_FILTERS_ERROR_MSG = 'There was an error retrieving the' +
40   ' list of available filters';
41
42 export const FILTER_BAR_TITLE = 'FILTER BY';
43 export const DATE_TIME_ZONE = 'Z';
44
45 export const FILTER_TYPE_ENUM = {
46   LIST: 'dropDown',
47   DATE: 'date'
48 };
49
50 export const FILTER_ATTRIBUTE_DEFAULT_VALUE = 'defaultValue';
51 export const FILTER_ATTRIBUTE_CONTROLS = 'controls';
52 export const FILTER_ATTRIBUTE_CODE = 'code';
53 export const FILTER_ATTRIBUTE_VALUES = 'values';
54 export const FILTER_ATTRIBUTE_TO = 'to';
55 export const FILTER_ATTRIBUTE_FROM = 'from';