Adding filter bar
[aai/sparky-fe.git] / src / app / MainScreenWrapperReducer.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 {aaiActionTypes} from './MainScreenWrapperConstants.js';
24 import {
25   globalAutoCompleteSearchBarActionTypes
26 } from 'app/globalAutoCompleteSearchBar/GlobalAutoCompleteSearchBarConstants.js';
27 import {
28   contextHandlerActionTypes
29 } from 'app/contextHandler/ContextHandlerConstants.js';
30
31 export default (state = {}, action) => {
32   switch (action.type) {
33     case aaiActionTypes.AAI_SHOW_MENU:
34       return {
35         ...state,
36         showMenu: action.data.showMenu,
37         toggleButtonActive: action.data.showMenu // if showing menu, then toggle
38                                                // is active
39       };
40     case aaiActionTypes.EXTENSIBLE_VIEW_NETWORK_CALLBACK_RESPONSE_RECEIVED:
41       let obj = {...state};
42       obj['extensibleViewNetworkCallbackData'] = {};
43       obj['extensibleViewNetworkCallbackData'][action.data.paramName] =  action.data.viewData;
44       // If there are some current viewData that need to be kept:
45       for(var vData in action.data.curViewData) {
46         obj['extensibleViewNetworkCallbackData'][vData] = action.data.curViewData[vData];
47       }
48       return obj;
49     case aaiActionTypes.EXTENSIBLE_VIEW_NETWORK_CALLBACK_CLEAR_DATA:
50       return {
51         ...state,
52         extensibleViewNetworkCallbackData : {}
53       };
54     case globalAutoCompleteSearchBarActionTypes.SEARCH_WARNING_EVENT:
55       return {
56         ...state,
57         extensibleViewNetworkCallbackData: {clearView: true}
58       };
59     case contextHandlerActionTypes.SINGLE_SUGGESTION_FOUND:
60       return {
61         ...state,
62         externalRequestFound: action.data
63       };
64     case aaiActionTypes.SET_SECONDARY_TITLE:
65       return {
66         ...state,
67         secondaryTitle: action.data
68       };
69   }
70   return state;
71 };
72