summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/performanceHistoryApp/src/handlers/adaptiveModulation24hoursHandler.ts
blob: 466b229666a337b2aeeec0b2d892c858fc8fed59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { createExternal, IExternalTableState } from '../../../../framework/src/components/material-table/utilities';
import { createSearchDataHandler } from '../../../../framework/src/utilities/elasticSearch';


import { AdaptiveModulationDataType, AdaptiveModulation, AdaptiveModulationResult } from '../models/adaptiveModulationDataType';

export interface IAdaptiveModulation24hoursState extends IExternalTableState<AdaptiveModulationDataType> { }

/**
 * Creates elastic search material data fetch handler for Adaptive modulation from historicalperformance24h database.
 */
const adaptiveModulationSearchHandler = createSearchDataHandler<AdaptiveModulationResult, AdaptiveModulation>(
  "sdnperformance/historicalperformance24h",
  null,
  (hit) => ({
    _id: hit._id,
    ...hit._source,
    ...hit._source["performance-data"]
  }),
  (name) => `${name}`);

export const {
  actionHandler: adaptiveModulation24hoursActionHandler,
  createActions: createAdaptiveModulation24hoursActions,
  createProperties: createAdaptiveModulation24hoursProperties,
  createPreActions: createAdaptiveModulation24hoursPreActions,
  reloadAction: adaptiveModulation24hoursReloadAction,
} = createExternal<AdaptiveModulationDataType>(adaptiveModulationSearchHandler, appState => appState.performanceHistory.adaptiveModulation24hours);