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.
mvfront-react/components/CreationSteps.tsx

61 lines
1.9 KiB

/**
* This component displays a bar releaving the current step
*/
import {useTranslation} from "next-i18next";
import {faArrowLeft, faCheck} from "@fortawesome/free-solid-svg-icons";
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
const {Row, Col, Container} = require("reactstrap")
const Step = ({name, position, active, check}) => {
const {t} = useTranslation();
const disabled = !active && !check
return <Col
className="col-auto">
<Row className={`align-items-center creation-step ${active ? 'active' : ''} ${disabled ? 'disabled' : ''}`}>
<Col className='col-auto badge align-items-center justify-content-center d-flex'>
<div>{check ? <FontAwesomeIcon icon={faCheck} /> : position}</div>
</Col>
<Col className='col-auto name'>
{t(`admin.step-${name}`)}
</Col>
</Row >
</Col >
}
export const creationSteps = ['candidate', 'params', 'confirm'];
export const ProgressSteps = ({step, className, ...props}) => {
const {t} = useTranslation();
if (!creationSteps.includes(step)) {
throw Error(`Unknown step {step}`);
}
const stepId = creationSteps.indexOf(step);
return <Row className={`w-100 m-5 d-flex ${className}`} {...props}>
<Col className='col-lg-3 col-6 mb-3'>
{step === 'candidate' ? null : (
<Row className='gx-2 align-items-end'>
<Col className='col-auto'>
<FontAwesomeIcon icon={faArrowLeft} />
</Col>
<Col className='col-auto'>
{t('admin.candidates-back-step')}
</Col>
</Row>
)
}
</Col>
<Col className='col-lg-6 col-12'>
<Row className='w-100 gx-5 justify-content-center'>
{creationSteps.map((name, i) => <Step name={name} active={step === name} check={i < stepId} key={i} position={i + 1} />
)}
</Row >
</Col>
<Col className='col-3'>
</Col>
</Row >
}