Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / odlux / apps / faultApp / src / handlers / faultStatusHandler.ts
1 /**
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt odlux
4  * =================================================================================================
5  * Copyright (C) 2019 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 import { IActionHandler } from '../../../../framework/src/flux/action';
19
20 import { SetFaultStatusAction } from '../actions/statusActions';
21
22 export interface IFaultStatus {
23   critical: number;
24   major: number;
25   minor: number;
26   warning: number;
27   isLoadingAlarmStatusChart: boolean;
28   Connected: number;
29   Connecting: number;
30   Disconnected: number;
31   Mounted: number;
32   UnableToConnect: number;
33   Undefined: number;
34   Unmounted: number;
35   total: number;
36   isLoadingConnectionStatusChart: boolean;
37 }
38
39 const faultStatusInit: IFaultStatus = {
40   critical: 0,
41   major: 0,
42   minor: 0,
43   warning: 0,
44   isLoadingAlarmStatusChart: false,
45   Connected: 0,
46   Connecting: 0,
47   Disconnected: 0,
48   Mounted: 0,
49   UnableToConnect: 0,
50   Undefined: 0,
51   Unmounted: 0,
52   total: 0,
53   isLoadingConnectionStatusChart: false,
54 };
55
56 export const faultStatusHandler: IActionHandler<IFaultStatus> = (state = faultStatusInit, action) => {
57   if (action instanceof SetFaultStatusAction) {
58     state = {
59       critical: action.criticalFaults,
60       major: action.majorFaults,
61       minor: action.minorFaults,
62       warning: action.warnings,
63       isLoadingAlarmStatusChart: action.isLoadingAlarmStatusChart,
64       Connected: action.ConnectedCount,
65       Connecting: action.ConnectingCount,
66       Disconnected: action.DisconnectedCount,
67       Mounted: action.MountedCount,
68       UnableToConnect: action.UnableToConnectCount,
69       Undefined: action.UndefinedCount,
70       Unmounted: action.UnmountedCount,
71       total: action.totalCount,
72       isLoadingConnectionStatusChart: action.isLoadingConnectionStatusChart,
73     };
74   }
75
76   return state;
77 };