fix install types and test ids
This commit is contained in:
@@ -1,21 +1,19 @@
|
||||
import React from 'react';
|
||||
import { Trans, withTranslation } from 'react-i18next';
|
||||
import { Trans } from 'react-i18next';
|
||||
|
||||
import { INSTALL_TOTAL_STEPS } from '../../helpers/constants';
|
||||
|
||||
const getProgressPercent = (step: any) => (step / INSTALL_TOTAL_STEPS) * 100;
|
||||
const getProgressPercent = (step: number) => (step / INSTALL_TOTAL_STEPS) * 100;
|
||||
|
||||
type Props = {
|
||||
step: number;
|
||||
};
|
||||
|
||||
const Progress = (props: Props) => (
|
||||
export const Progress = ({ step }: Props) => (
|
||||
<div className="setup__progress">
|
||||
<Trans>install_step</Trans> {props.step}/{INSTALL_TOTAL_STEPS}
|
||||
<Trans>install_step</Trans> {step}/{INSTALL_TOTAL_STEPS}
|
||||
<div className="setup__progress-wrap">
|
||||
<div className="setup__progress-inner" style={{ width: `${getProgressPercent(props.step)}%` }} />
|
||||
<div className="setup__progress-inner" style={{ width: `${getProgressPercent(step)}%` }} />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
export default withTranslation()(Progress);
|
||||
|
||||
Reference in New Issue
Block a user