import * as React from 'react'; import progressStyle from '@patternfly/react-styles/css/components/Progress/progress'; import { css } from '@patternfly/react-styles'; import { Tooltip, TooltipPosition } from '../Tooltip'; import CheckCircleIcon from '@patternfly/react-icons/dist/esm/icons/check-circle-icon'; import TimesCircleIcon from '@patternfly/react-icons/dist/esm/icons/times-circle-icon'; import ExclamationTriangleIcon from '@patternfly/react-icons/dist/esm/icons/exclamation-triangle-icon'; import { AriaProps, ProgressBar } from './ProgressBar'; import { ProgressHelperText } from './ProgressHelperText'; export enum ProgressMeasureLocation { outside = 'outside', inside = 'inside', top = 'top', none = 'none' } export enum ProgressVariant { danger = 'danger', success = 'success', warning = 'warning' } export interface ProgressContainerProps extends Omit, 'label' | 'title'> { /** Properties needed for aria support */ progressBarAriaProps?: AriaProps; /** Progress component DOM ID. */ parentId: string; /** Progress title. The isTitleTruncated property will only affect string titles. Node title truncation must be handled manually. */ title?: React.ReactNode; /** Label to indicate what progress is showing. */ label?: React.ReactNode; /** Type of progress status. */ variant?: 'danger' | 'success' | 'warning'; /** Location of progress value. */ measureLocation?: 'outside' | 'inside' | 'top' | 'none'; /** Actual progress value. */ value: number; /** Whether string title should be truncated */ isTitleTruncated?: boolean; /** Position of the tooltip which is displayed if title is truncated */ tooltipPosition?: | TooltipPosition | 'auto' | 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end'; /** Content which can be used to convey additional information about the progress component. * We recommend the helper text component as it was designed for this purpose. */ helperText?: React.ReactNode; } const variantToIcon = { danger: TimesCircleIcon, success: CheckCircleIcon, warning: ExclamationTriangleIcon }; export const ProgressContainer: React.FunctionComponent = ({ progressBarAriaProps, value, title = '', parentId, label = null, variant = null, measureLocation = ProgressMeasureLocation.top, isTitleTruncated = false, tooltipPosition, helperText }: ProgressContainerProps) => { const StatusIcon = variantToIcon.hasOwnProperty(variant) && variantToIcon[variant]; const [tooltip, setTooltip] = React.useState(''); const onMouseEnter = (event: any) => { if (event.target.offsetWidth < event.target.scrollWidth) { setTooltip(title || event.target.innerHTML); } else { setTooltip(''); } }; const Title = ( ); return ( {title && (tooltip ? ( {Title} ) : ( Title ))} {(measureLocation !== ProgressMeasureLocation.none || StatusIcon) && ( )} {measureLocation === ProgressMeasureLocation.inside && `${value}%`} {helperText && {helperText}} ); }; ProgressContainer.displayName = 'ProgressContainer';