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
10 * http://www.apache.org/licenses/LICENSE-2.0
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
16 * ============LICENSE_END==========================================================================
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';
26 import { SetPanelAction } from '../actions/panelChangeActions';
27 import { PanelId } from '../models/panelId';
29 import { unmFaultStatusHandler, IUnmFaultStatusCount } from './unmFaultManagementAlarmStatusHandler';
30 import { IUnmFaultLogEntriesState, unmFaultLogEntriesActionHandler } from './unmFaultLogEntriesHandler';
32 export interface IUnmFaultManagementAppStoreState {
33 unmFaultLogEntries: IUnmFaultLogEntriesState;
34 currentOpenPanel: PanelId | null;
35 unmFaultStatus: IUnmFaultStatusCount;
38 const currentOpenPanelHandler: IActionHandler<PanelId | null> = (state = null, action) => {
39 if (action instanceof SetPanelAction) {
40 state = action.panelId;
45 declare module '../../../../framework/src/store/applicationStore' {
46 interface IApplicationStoreState {
47 unmFaultManagement: IUnmFaultManagementAppStoreState;
51 const actionHandlers = {
52 unmFaultLogEntries: unmFaultLogEntriesActionHandler,
53 currentOpenPanel: currentOpenPanelHandler,
54 unmFaultStatus: unmFaultStatusHandler,
57 export const UnmFaultManagementAppRootHandler = combineActionHandler<IUnmFaultManagementAppStoreState>(actionHandlers);
58 export default UnmFaultManagementAppRootHandler;