import styled from '@emotion/styled'; import {motion} from 'framer-motion'; import {space} from 'sentry/styles/space'; import testableTransition from 'sentry/utils/testableTransition'; const StepperContainer = styled('div')` display: flex; flex-direction: row; gap: ${space(1)}; border-radius: 4px; position: relative; overflow: hidden; `; const StepperIndicator = styled('span')<{clickable?: boolean}>` height: 8px; width: 80px; background-color: ${p => p.theme.progressBackground}; cursor: ${p => (p.clickable ? 'pointer' : 'default')}; `; const StepperTransitionIndicator = styled(motion.span)` height: 8px; width: 80px; background-color: ${p => p.theme.progressBar}; position: absolute; `; StepperTransitionIndicator.defaultProps = { layout: true, transition: testableTransition({ type: 'spring', stiffness: 175, damping: 18, }), }; type Props = React.HTMLAttributes & { currentStepIndex: number; numSteps: number; onClick: (stepIndex: number) => void; }; function Stepper({currentStepIndex, numSteps, onClick, ...props}: Props) { return ( {Array(numSteps) .fill(0) .map((_, i) => ( i < currentStepIndex && onClick(i)} clickable={i < currentStepIndex} > {currentStepIndex === i && ( )} ))} ); } export default Stepper;