File size: 608 Bytes
1e92f2d |
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 |
import clsx from 'clsx';
import { localize } from 'i18n-calypso';
import './style.scss';
const FlowProgressIndicator = ( { flowLength, positionInFlow, translate, flowName } ) => {
if ( flowLength > 1 ) {
const flowClassName = clsx(
'flow-progress-indicator',
`flow-progress-indicator__${ flowName }`
);
return (
<div className={ flowClassName }>
{ translate( 'Step %(stepNumber)d of %(stepTotal)d', {
args: {
stepNumber: positionInFlow + 1,
stepTotal: flowLength,
},
} ) }
</div>
);
}
return null;
};
export default localize( FlowProgressIndicator );
|