changed the header and license
[aai/sparky-fe.git] / src / app / tierSupport / launchExternalResource / LaunchExternalResourceReducer.js
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 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 import {tierSupportActionTypes} from 'app/tierSupport/TierSupportConstants.js';
22 import {
23   globalAutoCompleteSearchBarActionTypes
24 } from 'app/globalAutoCompleteSearchBar/GlobalAutoCompleteSearchBarConstants.js';
25 import {isEmpty} from 'lodash';
26
27 export default (state = {}, action) => {
28   switch (action.type) {
29     case tierSupportActionTypes.TS_NODE_SEARCH_RESULTS:
30       if(!isEmpty(action.data.nodes)){
31         for (const node of action.data.nodes) {
32           if (node.nodeMeta.searchTarget === true) {
33             let externalResourcePayload = {};
34             if(!isEmpty(node.externalResourcePayload)){
35               externalResourcePayload = node.externalResourcePayload;
36             }
37             return {
38               ...state,
39               externalResourcePayload: externalResourcePayload
40             };
41           }
42         }
43       }
44       return {
45         ...state,
46         externalResourcePayload: {}
47       };
48
49     case tierSupportActionTypes.TS_GRAPH_NODE_SELECTED:
50       let externalResourcePayload;
51       if(action.data.externalResourcePayload){
52         externalResourcePayload = action.data.externalResourcePayload;
53       } else {
54         externalResourcePayload = {};
55       }
56       return {
57         ...state,
58         externalResourcePayload: externalResourcePayload
59       };
60
61     case globalAutoCompleteSearchBarActionTypes.SEARCH_WARNING_EVENT:
62     case tierSupportActionTypes.TIER_SUPPORT_NETWORK_ERROR:
63     case tierSupportActionTypes.TIER_SUPPORT_CLEAR_DATA:
64     case tierSupportActionTypes.TS_NODE_SEARCH_NO_RESULTS:
65       return {
66         ...state,
67         externalResourcePayload: {}
68       };
69   }
70   return state;
71 };