You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.0 KiB
45 lines
1.0 KiB
import * as React from 'react';
|
|
import { ProgressProps, ProgressSize } from './progress';
|
|
|
|
interface StepsProps extends ProgressProps {
|
|
steps: number;
|
|
size?: ProgressSize;
|
|
}
|
|
|
|
const Steps: React.FC<StepsProps> = props => {
|
|
const {
|
|
size = 'default',
|
|
steps,
|
|
percent = 0,
|
|
strokeWidth = 8,
|
|
strokeColor,
|
|
prefixCls,
|
|
children,
|
|
} = props;
|
|
const getStyledSteps = () => {
|
|
const current = Math.floor(steps * (percent / 100));
|
|
const stepWidth = size === 'small' ? 2 : 14;
|
|
const styleSteps = [];
|
|
for (let i = 0; i < steps; i++) {
|
|
let color;
|
|
if (i <= current - 1) {
|
|
color = strokeColor;
|
|
}
|
|
const stepStyle = {
|
|
backgroundColor: `${color}`,
|
|
width: `${stepWidth}px`,
|
|
height: `${strokeWidth}px`,
|
|
};
|
|
styleSteps.push(<div key={i} className={`${prefixCls}-steps-item`} style={stepStyle} />);
|
|
}
|
|
return styleSteps;
|
|
};
|
|
return (
|
|
<div className={`${prefixCls}-steps-outer`}>
|
|
{getStyledSteps()}
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Steps;
|
|
|