23 lines
692 B
TypeScript
23 lines
692 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
import { useDispatch } from 'app/types';
|
|
import { StateHistoryItem } from 'app/types/unified-alerting';
|
|
|
|
import { fetchGrafanaAnnotationsAction } from '../state/actions';
|
|
import { AsyncRequestState } from '../utils/redux';
|
|
|
|
import { useUnifiedAlertingSelector } from './useUnifiedAlertingSelector';
|
|
|
|
export function useManagedAlertStateHistory(ruleUID: string) {
|
|
const dispatch = useDispatch();
|
|
const history = useUnifiedAlertingSelector<AsyncRequestState<StateHistoryItem[]>>(
|
|
(state) => state.managedAlertStateHistory
|
|
);
|
|
|
|
useEffect(() => {
|
|
dispatch(fetchGrafanaAnnotationsAction(ruleUID));
|
|
}, [dispatch, ruleUID]);
|
|
|
|
return history;
|
|
}
|