import clamp from 'lodash/clamp'; import ExternalLink from 'sentry/components/links/externalLink'; import {Tooltip} from 'sentry/components/tooltip'; import {tct} from 'sentry/locale'; import {defined} from 'sentry/utils'; import {NumberContainer} from 'sentry/utils/discover/styles'; import { formatPercentage, formatSpanOperation, getDuration, } from 'sentry/utils/formatters'; interface Props { containerProps?: React.DetailedHTMLProps< React.HTMLAttributes, HTMLDivElement >; op?: string; percentage?: number; total?: number; } export function TimeSpentCell({percentage, total, op, containerProps}: Props) { const formattedTotal = getDuration((total ?? 0) / 1000, 2, true); const tooltip = percentage ? getTimeSpentExplanation(percentage, op) : undefined; return ( {defined(total) ? formattedTotal : '--'} ); } export function getTimeSpentExplanation(percentage: number, op?: string) { const formattedPercentage = formatPercentage(clamp(percentage ?? 0, 0, 1)); return tct( 'The application spent [percentage] of its total time on this [span]. Read more about Time Spent in our [documentation:documentation].', { percentage: formattedPercentage, span: formatSpanOperation(op, 'short'), documentation: ( ), } ); }