mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
10badea19e
* Babel: Updates babel dependencies to latest version * Emotion: Upgrade form 10 to 11 * Fixing tests * Updated to use emotion/css instead in test
86 lines
2.3 KiB
TypeScript
86 lines
2.3 KiB
TypeScript
import React from 'react';
|
|
import { css } from '@emotion/css';
|
|
import { CSSTransition } from 'react-transition-group';
|
|
import { useTheme, Tooltip, stylesFactory, ButtonGroup, ToolbarButton } from '@grafana/ui';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
|
|
type LiveTailButtonProps = {
|
|
splitted: boolean;
|
|
start: () => void;
|
|
stop: () => void;
|
|
pause: () => void;
|
|
resume: () => void;
|
|
isLive: boolean;
|
|
isPaused: boolean;
|
|
};
|
|
|
|
export function LiveTailButton(props: LiveTailButtonProps) {
|
|
const { start, pause, resume, isLive, isPaused, stop, splitted } = props;
|
|
const theme = useTheme();
|
|
const styles = getStyles(theme);
|
|
const buttonVariant = isLive && !isPaused ? 'active' : 'default';
|
|
const onClickMain = isLive ? (isPaused ? resume : pause) : start;
|
|
|
|
return (
|
|
<ButtonGroup>
|
|
<Tooltip
|
|
content={isLive && !isPaused ? <>Pause the live stream</> : <>Start live stream your logs</>}
|
|
placement="bottom"
|
|
>
|
|
<ToolbarButton
|
|
iconOnly={splitted}
|
|
variant={buttonVariant}
|
|
icon={!isLive || isPaused ? 'play' : 'pause'}
|
|
onClick={onClickMain}
|
|
>
|
|
{isLive && isPaused ? 'Paused' : 'Live'}
|
|
</ToolbarButton>
|
|
</Tooltip>
|
|
|
|
<CSSTransition
|
|
mountOnEnter={true}
|
|
unmountOnExit={true}
|
|
timeout={100}
|
|
in={isLive}
|
|
classNames={{
|
|
enter: styles.stopButtonEnter,
|
|
enterActive: styles.stopButtonEnterActive,
|
|
exit: styles.stopButtonExit,
|
|
exitActive: styles.stopButtonExitActive,
|
|
}}
|
|
>
|
|
<Tooltip content={<>Stop and exit the live stream</>} placement="bottom">
|
|
<ToolbarButton variant={buttonVariant} onClick={stop} icon="square-shape" />
|
|
</Tooltip>
|
|
</CSSTransition>
|
|
</ButtonGroup>
|
|
);
|
|
}
|
|
|
|
const getStyles = stylesFactory((theme: GrafanaTheme) => {
|
|
return {
|
|
stopButtonEnter: css`
|
|
label: stopButtonEnter;
|
|
width: 0;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
`,
|
|
stopButtonEnterActive: css`
|
|
label: stopButtonEnterActive;
|
|
opacity: 1;
|
|
width: 32px;
|
|
`,
|
|
stopButtonExit: css`
|
|
label: stopButtonExit;
|
|
width: 32px;
|
|
opacity: 1;
|
|
overflow: hidden;
|
|
`,
|
|
stopButtonExitActive: css`
|
|
label: stopButtonExitActive;
|
|
opacity: 0;
|
|
width: 0;
|
|
`,
|
|
};
|
|
});
|