UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

55 lines 5.04 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { Children, Fragment, isValidElement } from 'react'; import { isCustomWizardNavItem, isWizardBasicStep, isWizardParentStep } from './types'; import { useWizardContext } from './WizardContext'; import { WizardNav } from './WizardNav'; import { WizardNavItem } from './WizardNavItem'; export const WizardNavInternal = ({ nav, navAriaLabel, isVisitRequired, isProgressive, isNavExpanded }) => { const { activeStep, steps, goToStepByIndex } = useWizardContext(); const wizardNavProps = Object.assign({ isExpanded: isNavExpanded, 'aria-label': navAriaLabel || (nav === null || nav === void 0 ? void 0 : nav['aria-label']) || 'Wizard steps' }, ((nav === null || nav === void 0 ? void 0 : nav['aria-labelledby']) && { 'aria-labelledby': nav['aria-labelledby'] })); return (_jsx(WizardNav, Object.assign({}, wizardNavProps, { children: steps.map((step, stepIndex) => { var _a; const hasVisitedNextStep = steps.some((step) => step.index > stepIndex + 1 && step.isVisited); const isStepDisabled = step.isDisabled || (isVisitRequired && !step.isVisited && !hasVisitedNextStep); const customStepNavItem = isCustomWizardNavItem(step.navItem) && (_jsx(Fragment, { children: typeof step.navItem === 'function' ? step.navItem(step, activeStep, steps, goToStepByIndex) : step.navItem }, step.id)); if (isWizardParentStep(step) && !step.isHidden) { let firstSubStepIndex; let hasActiveChild = false; const subNavItems = (_a = step.subStepIds) === null || _a === void 0 ? void 0 : _a.map((subStepId, subStepIndex) => { const subStep = steps.find((step) => step.id === subStepId); const hasVisitedNextStep = steps.some((step) => step.index > subStep.index && step.isVisited); const isSubStepDisabled = subStep.isDisabled || (isVisitRequired && !subStep.isVisited && !hasVisitedNextStep); const customSubStepNavItem = isCustomWizardNavItem(subStep.navItem) && (_jsx(Fragment, { children: typeof subStep.navItem === 'function' ? subStep.navItem(subStep, activeStep, steps, goToStepByIndex) : subStep.navItem }, subStep.id)); // Don't render the sub-step navigation item if the hidden property is enabled if (subStep.isHidden) { return; } // Store the first sub-step index so that when its parent is clicked, the first sub-step is focused if (subStepIndex === 0) { firstSubStepIndex = subStep.index; } // When a sub-step is active, use this flag to set the parent step as active (isCurrent) if ((activeStep === null || activeStep === void 0 ? void 0 : activeStep.id) === subStep.id) { hasActiveChild = true; } if (!isProgressive || (isProgressive && subStep.index <= activeStep.index)) { return (customSubStepNavItem || (_jsx(WizardNavItem, Object.assign({ id: subStep.id, content: subStep.name, isCurrent: (activeStep === null || activeStep === void 0 ? void 0 : activeStep.id) === subStep.id, isDisabled: isSubStepDisabled || isStepDisabled, isVisited: subStep.isVisited, stepIndex: subStep.index, onClick: () => goToStepByIndex(subStep.index), status: subStep.status }, subStep.navItem), subStep.id))); } }); const hasEnabledChildren = Children.toArray(subNavItems).some((child) => isValidElement(child) && !child.props.isDisabled); if (!isProgressive || (isProgressive && step.index <= activeStep.index)) { return (customStepNavItem || (_jsx(WizardNavItem, Object.assign({ id: step.id, content: step.name, isExpandable: step.isExpandable, isCurrent: hasActiveChild, isDisabled: !hasEnabledChildren || isStepDisabled, isVisited: step.isVisited, stepIndex: firstSubStepIndex, onClick: () => goToStepByIndex(firstSubStepIndex), status: step.status }, step.navItem, { children: _jsx(WizardNav, Object.assign({}, wizardNavProps, { isInnerList: true, children: subNavItems })) }), step.id))); } } if (isWizardBasicStep(step) && !step.isHidden && (!isProgressive || (isProgressive && step.index <= activeStep.index))) { return (customStepNavItem || (_jsx(WizardNavItem, Object.assign({ id: step.id, content: step.name, isCurrent: (activeStep === null || activeStep === void 0 ? void 0 : activeStep.id) === step.id, isDisabled: isStepDisabled, isVisited: step.isVisited, stepIndex: step.index, onClick: () => goToStepByIndex(step.index), status: step.status }, step.navItem), step.id))); } }) }))); }; //# sourceMappingURL=WizardNavInternal.js.map