Merge "refactor devicemanager-core"
[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 class IsBusycheckingConnectivityAction extends Action{
37     constructor(public isBusy: boolean){
38         super();
39     }
40 }
41
42 export const verifyResponse = (response: Response) =>{
43
44     if(response.ok){
45         return response
46     }else{
47         throw Error(`Connection Error: ${response.status} | ${response.statusText} | ${response.url}`)
48     }
49 }
50
51 export const handleConnectionError = (error: Error) => (dispatcher: Dispatch, getState: () => IApplicationStoreState)=>{
52     const {network:{connectivity: {isToplogyServerAvailable}}} = getState();
53     if(isToplogyServerAvailable){
54        dispatcher(new IsTopologyServerReachableAction(false))
55     }
56 }
57
58 export const setTileServerReachableAction = (isReachable: boolean) => (dispatcher: Dispatch, getState: () => IApplicationStoreState)=>{
59     const {network:{connectivity: {isTileServerAvailable}}} = getState();
60     if(isReachable !== isTileServerAvailable){
61        dispatcher(new IsTileServerReachableAction(isReachable))
62     }
63 }