UNPKG

@patternfly/react-core

Version:

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

57 lines 2.62 kB
import { __rest } from "tslib"; import { Children, isValidElement } from 'react'; import { isWizardParentStep, isWizardSubStep } from './types'; import { WizardStep } from './WizardStep'; /** * Accumulate list of step & sub-step props pulled from child components * @param children * @returns WizardStepType[] */ export const buildSteps = (children) => Children.toArray(children).reduce((acc, child, index) => { if (isWizardStep(child)) { const { props: childProps } = child; const { steps: childStepComponents, id } = childProps; const stepIndex = acc.length + 1; const subSteps = []; acc.push(Object.assign(Object.assign(Object.assign({ index: stepIndex, component: child }, (index === 0 && !(childStepComponents === null || childStepComponents === void 0 ? void 0 : childStepComponents.length) && { isVisited: true })), (childStepComponents && { subStepIds: childStepComponents === null || childStepComponents === void 0 ? void 0 : childStepComponents.map((childStepComponent, subStepIndex) => { subSteps.push(Object.assign(Object.assign({ index: stepIndex + subStepIndex + 1, component: childStepComponent, parentId: id }, (index === 0 && subStepIndex === 0 && { isVisited: true })), normalizeStepProps(childStepComponent.props))); return childStepComponent.props.id; }) })), normalizeStepProps(childProps)), ...subSteps); } else { throw new Error('Wizard only accepts children of type WizardStep.'); } return acc; }, []); export function isWizardStep(child) { return isValidElement(child) && child.type === WizardStep; } // Omit "children" and "steps" when building steps for the Wizard's context export const normalizeStepProps = (_a) => { var { children: _children, steps: _steps } = _a, controlStep = __rest(_a, ["children", "steps"]); return controlStep; }; /** * Determines whether a step is navigable based on disabled/hidden properties * @param steps All steps * @param step * @returns boolean */ export const isStepEnabled = (steps, step) => { // Skip over parent steps since they are merely containers of sub-steps if (!isWizardParentStep(step) && !step.isHidden && !step.isDisabled) { if (isWizardSubStep(step)) { const parentStep = steps.find((otherStep) => otherStep.id === step.parentId); if (!parentStep.isHidden && !parentStep.isDisabled) { return true; } } else { return true; } } return false; }; //# sourceMappingURL=utils.js.map