c3769453487ce1a5293a1fdd85ee0d346ee0c78e
[oam/oam-controller.git] /
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 // main state handler
19
20 import { IActionHandler } from '../../../../framework/src/flux/action';
21 import { combineActionHandler } from '../../../../framework/src/flux/middleware';
22 // ** do not remove **
23 // eslint-disable-next-line @typescript-eslint/no-unused-vars
24 import { IApplicationStoreState } from '../../../../framework/src/store/applicationStore';
25
26 import { SetPanelAction } from '../actions/panelChangeActions';
27 import { PanelId } from '../models/panelId';
28
29 import { unmFaultStatusHandler, IUnmFaultStatusCount } from './unmFaultManagementAlarmStatusHandler';
30 import { IUnmFaultLogEntriesState, unmFaultLogEntriesActionHandler } from './unmFaultLogEntriesHandler';
31
32 export interface IUnmFaultManagementAppStoreState {
33   unmFaultLogEntries: IUnmFaultLogEntriesState;
34   currentOpenPanel: PanelId | null;
35   unmFaultStatus: IUnmFaultStatusCount;
36 }
37
38 const currentOpenPanelHandler: IActionHandler<PanelId | null> = (state = null, action) => {
39   if (action instanceof SetPanelAction) {
40     state = action.panelId;
41   }
42   return state;
43 };
44
45 declare module '../../../../framework/src/store/applicationStore' {
46   interface IApplicationStoreState {
47     unmFaultManagement: IUnmFaultManagementAppStoreState;
48   }
49 }
50
51 const actionHandlers = {
52   unmFaultLogEntries: unmFaultLogEntriesActionHandler,
53   currentOpenPanel: currentOpenPanelHandler,
54   unmFaultStatus: unmFaultStatusHandler,
55 };
56
57 export const UnmFaultManagementAppRootHandler = combineActionHandler<IUnmFaultManagementAppStoreState>(actionHandlers);
58 export default UnmFaultManagementAppRootHandler;