NetworkMap bugfix
[ccsdk/features.git] / sdnr / wt / odlux / apps / networkMapApp / src / actions / connectivityAction.ts
1 /**
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt odlux
4  * =================================================================================================
5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18
19 import { Action } from "../../../../framework/src/flux/action";
20 import { Dispatch } from "../../../../framework/src/flux/store";
21 import { IApplicationStoreState } from "../../../../framework/src/store/applicationStore";
22
23
24 export class IsTopologyServerReachableAction extends Action{
25     constructor(public reachable: boolean){
26         super();
27     }
28 }
29
30 export class IsTileServerReachableAction extends Action{
31     constructor(public reachable: boolean){
32         super();
33     }
34 }
35
36 export const verifyResponse = (response: Response) =>{
37
38     if(response.ok){
39         return response
40     }else{
41         throw Error(`Connection Error: ${response.status} | ${response.statusText} | ${response.url}`)
42     }
43 }
44
45 export const setTopologyReachableAction = (error: Error) => (dispatcher: Dispatch, getState: () => IApplicationStoreState)=>{
46     const {network:{connectivity: {isToplogyServerAvailable}}} = getState();
47     if(isToplogyServerAvailable){
48        dispatcher(new IsTopologyServerReachableAction(false))
49     }
50 }
51
52 export const setTileServerReachableAction = (isReachable: boolean) => (dispatcher: Dispatch, getState: () => IApplicationStoreState)=>{
53     const {network:{connectivity: {isTileServerAvailable}}} = getState();
54     if(isReachable !== isTileServerAvailable){
55        dispatcher(new IsTileServerReachableAction(isReachable))
56     }
57 }