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