import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Wizard/wizard'; import AngleRightIcon from '@patternfly/react-icons/dist/esm/icons/angle-right-icon'; import ExclamationCircleIcon from '@patternfly/react-icons/dist/esm/icons/exclamation-circle-icon'; import { OUIAProps, useOUIAProps } from '../../helpers'; import { WizardNavItemStatus } from './types'; import globalSpacerSm from '@patternfly/react-tokens/dist/esm/global_spacer_sm'; import globalDangerColor100 from '@patternfly/react-tokens/dist/esm/global_danger_color_100'; export interface WizardNavItemProps extends OUIAProps { /** Can nest a WizardNav component for substeps */ children?: React.ReactNode; /** The content to display in the navigation item */ content?: React.ReactNode; /** Whether the navigation item is the currently active item */ isCurrent?: boolean; /** Whether the navigation item is disabled */ isDisabled?: boolean; /** Whether the navigation item has been visited */ isVisited?: boolean; /** The step index passed into the onNavItemClick callback */ stepIndex: number; /** Callback for when the navigation item is clicked */ onClick?: (event: React.MouseEvent | React.MouseEvent, index: number) => any; /** Component used to render WizardNavItem */ component?: 'button' | 'a'; /** An optional url to use for when using an anchor component */ href?: string; /** Where to display the linked URL when using an anchor component */ target?: React.HTMLAttributeAnchorTarget; /** Flag indicating that this NavItem has child steps and is expandable */ isExpandable?: boolean; /** The id for the navigation item */ id?: string | number; /** Used to determine the icon displayed next to content. Default has no icon. */ status?: 'default' | 'error'; } export const WizardNavItem = ({ children = null, content = '', isCurrent = false, isDisabled = false, isVisited = false, stepIndex, onClick, component: NavItemComponent = 'button', href, isExpandable = false, id, status = 'default', target, ouiaId, ouiaSafe = true }: WizardNavItemProps) => { const [isExpanded, setIsExpanded] = React.useState(false); const ouiaProps = useOUIAProps(WizardNavItem.displayName, ouiaId, ouiaSafe); React.useEffect(() => { setIsExpanded(isCurrent); }, [isCurrent]); if (NavItemComponent === 'a' && !href && process.env.NODE_ENV !== 'production') { // eslint-disable-next-line no-console console.error('WizardNavItem: When using an anchor, please provide an href'); } const ariaLabel = React.useMemo(() => { if (status === WizardNavItemStatus.Error || (isVisited && !isCurrent)) { let label = content.toString(); if (status === WizardNavItemStatus.Error) { label += `, ${status}`; } // No need to signify step is visited if current if (isVisited && !isCurrent) { label += ', visited'; } return label; } }, [content, isCurrent, isVisited, status]); return (
  • { e.stopPropagation(); isExpandable ? setIsExpanded(!isExpanded || isCurrent) : onClick?.(e, stepIndex); }} className={css( styles.wizardNavLink, isCurrent && styles.modifiers.current, isDisabled && styles.modifiers.disabled )} aria-disabled={isDisabled ? true : null} aria-current={isCurrent && !children ? 'step' : false} {...(isExpandable && { 'aria-expanded': isExpanded })} {...(ariaLabel && { 'aria-label': ariaLabel })} {...ouiaProps} > {isExpandable ? ( <> {content} ) : ( <> {content} {/* TODO, patternfly/patternfly#5142 */} {status === WizardNavItemStatus.Error && ( )} )} {children}
  • ); }; WizardNavItem.displayName = 'WizardNavItem';