12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import styled from '@emotion/styled';
- import Tooltip from 'sentry/components/tooltip';
- import space from 'sentry/styles/space';
- import {ImageCandidate} from 'sentry/types/debugImage';
- import {getStatusTooltipDescription} from '../utils';
- import Status from '.';
- type Props = {
- candidate: ImageCandidate;
- hasReprocessWarning: boolean;
- };
- function StatusTooltip({candidate, hasReprocessWarning}: Props) {
- const {download} = candidate;
- const {label, description, disabled} = getStatusTooltipDescription(
- candidate,
- hasReprocessWarning
- );
- return (
- <Tooltip
- title={
- label && (
- <Title>
- <Label>{label}</Label>
- {description && <div>{description}</div>}
- </Title>
- )
- }
- disabled={disabled}
- >
- <Status status={download.status} />
- </Tooltip>
- );
- }
- export default StatusTooltip;
- const Title = styled('div')`
- text-align: left;
- `;
- const Label = styled('div')`
- display: inline-block;
- margin-bottom: ${space(0.25)};
- `;
|