Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | 1x 7x 7x 7x 7x 4x 12x 4x 12x 4x 4x 2x 2x 2x 7x 7x 12x 12x 12x 12x 1x 1x | import {Children, useEffect, useState} from 'react' import cx from 'classnames' import PropTypes from 'prop-types' import MoleculeStepper, {moleculeStepperAlignment, moleculeStepperDesign, Step} from '@s-ui/react-molecule-stepper' import MoleculeProgressStep, {STATUSES} from './components/MoleculeProgressStep/index.js' import { BASE_CLASS, CLASS_COMPRESSED, CLASS_CONTENT, CLASS_VERTICAL, CONTENT_STYLE, PROGRESS_BAR_JUSTIFY_CONTENT } from './config.js' const MoleculeProgressSteps = ({ vertical, children, iconStepDone, compressed, progressBarJustifyContent = PROGRESS_BAR_JUSTIFY_CONTENT.LEGACY, contentStyle = CONTENT_STYLE.FIXED, onChange, showLabel = true }) => { const [step, setStep] = useState() const className = cx(BASE_CLASS, { [CLASS_VERTICAL]: vertical, [CLASS_COMPRESSED]: compressed }) useEffect(() => { if (children) { const currentStep = Children.toArray(children) .filter(Boolean) .map((child, index, elements) => child.props.status) .lastIndexOf(STATUSES.ACTIVE) const lastVisitedStep = Children.toArray(children) .filter(Boolean) .map((child, index, elements) => child.props.status) .lastIndexOf(STATUSES.VISITED) const steps = Children.toArray(children).filter(Boolean).length if (currentStep >= 0 && step !== currentStep) { setStep(currentStep) } else Iif (steps - 1 === lastVisitedStep && step !== steps) { setStep(steps) } else Iif (lastVisitedStep === -1 && currentStep === -1) { setStep(-1) } } }, [children, step]) const onChangeHandler = (event, {step, ...args}) => { typeof onChange === 'function' && onChange(event, {step, ...args}) } return ( <div className={className}> {children && ( <MoleculeStepper steps={Children.toArray(children).length} step={step} visitedIcon={iconStepDone} labels={Children.toArray(children) .filter(Boolean) .map(({props: {label} = {}, index}) => { return label })} justifyContent={progressBarJustifyContent} design={compressed ? moleculeStepperDesign.COMPRESSED : moleculeStepperDesign.DEFAULT} alignment={vertical ? moleculeStepperAlignment.VERTICAL : moleculeStepperAlignment.HORIZONTAL} onChange={onChangeHandler} showLabel={showLabel} > {Children.toArray(children) .filter(Boolean) .map((child, index, elements) => ( <Step key={index} steps={elements.length} step={index + 1} visited={index < step} current={step === index} label={child?.props?.label} icon={child?.props?.icon} currentIcon={child?.props?.iconActive} /> ))} </MoleculeStepper> )} <div className={cx(CLASS_CONTENT, contentStyle)}> {Children.toArray(children) .filter(Boolean) .map((child, index) => { const {children: childrenChild, status} = child.props return ( <div key={index} className={cx(`${CLASS_CONTENT}-item`, { [`${CLASS_CONTENT}-item--active`]: status === STATUSES.ACTIVE })} > {childrenChild} </div> ) })} </div> </div> ) } MoleculeProgressSteps.displayName = 'MoleculeProgressSteps' MoleculeProgressSteps.propTypes = { /** children */ children: PropTypes.any, /** Icon to display when status VISITED */ iconStepDone: PropTypes.node.isRequired, /** Compressed mode (mobile) */ compressed: PropTypes.bool, /** Vertical mode */ vertical: PropTypes.bool, /** Fit the content size */ contentStyle: PropTypes.oneOf(Object.values(CONTENT_STYLE)), /** justify the progressbar elements in its area following the element declared **/ progressBarJustifyContent: PropTypes.oneOf(Object.values(PROGRESS_BAR_JUSTIFY_CONTENT)), /** callback fired every time page changes **/ onChange: PropTypes.func, /** show label or not */ showLabel: PropTypes.bool } export default MoleculeProgressSteps export { MoleculeProgressStep, STATUSES, STATUSES as moleculeProgressStepsStatuses, PROGRESS_BAR_JUSTIFY_CONTENT as moleculeProgressStepsJustifyContentBar, CONTENT_STYLE as moleculeProgressContentStyle } |