2019-09-24 03:18:34 -05:00
|
|
|
import React, { useCallback } from 'react';
|
|
|
|
import { useDispatch } from 'react-redux';
|
|
|
|
|
2019-12-11 07:14:39 -06:00
|
|
|
import { changeRefreshInterval, runQueries } from './state/actions';
|
2019-09-24 03:18:34 -05:00
|
|
|
import { setPausedStateAction } from './state/actionTypes';
|
|
|
|
import { RefreshPicker } from '@grafana/ui';
|
|
|
|
import { ExploreId } from '../../types';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hook that gives you all the functions needed to control the live tailing.
|
|
|
|
*/
|
|
|
|
export function useLiveTailControls(exploreId: ExploreId) {
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
|
|
|
const pause = useCallback(() => {
|
|
|
|
dispatch(setPausedStateAction({ exploreId, isPaused: true }));
|
|
|
|
}, [exploreId, dispatch]);
|
|
|
|
|
|
|
|
const resume = useCallback(() => {
|
|
|
|
dispatch(setPausedStateAction({ exploreId, isPaused: false }));
|
|
|
|
}, [exploreId, dispatch]);
|
|
|
|
|
|
|
|
const stop = useCallback(() => {
|
|
|
|
// We need to pause here first because there is transition where we are not live but live logs are still shown
|
|
|
|
// to cross fade with the normal view. This will prevent reordering of the logs in the live view during the
|
|
|
|
// transition.
|
|
|
|
pause();
|
|
|
|
|
|
|
|
// TODO referencing this from perspective of refresh picker when there is designated button for it now is not
|
|
|
|
// great. Needs a bit of refactoring.
|
|
|
|
dispatch(changeRefreshInterval(exploreId, RefreshPicker.offOption.value));
|
2019-12-11 07:14:39 -06:00
|
|
|
dispatch(runQueries(exploreId));
|
2019-09-24 03:18:34 -05:00
|
|
|
}, [exploreId, dispatch, pause]);
|
|
|
|
|
|
|
|
const start = useCallback(() => {
|
|
|
|
dispatch(changeRefreshInterval(exploreId, RefreshPicker.liveOption.value));
|
|
|
|
}, [exploreId, dispatch]);
|
|
|
|
|
|
|
|
return {
|
|
|
|
pause,
|
|
|
|
resume,
|
|
|
|
stop,
|
|
|
|
start,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
exploreId: ExploreId;
|
|
|
|
children: (controls: ReturnType<typeof useLiveTailControls>) => React.ReactElement;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If you can't use the hook you can use this as a render prop pattern.
|
|
|
|
*/
|
|
|
|
export function LiveTailControls(props: Props) {
|
|
|
|
const controls = useLiveTailControls(props.exploreId);
|
|
|
|
return props.children(controls);
|
|
|
|
}
|