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/admin/CandidatesField.jsx

56 lines
1.7 KiB

import {useState, useEffect, createRef} from 'react'
import {useTranslation} from "next-i18next";
import CandidateField from './CandidateField'
import Alert from '@components/Alert'
import {MAX_NUM_CANDIDATES} from '@services/constants';
import {Container, Button} from 'reactstrap';
import {useElection, useElectionDispatch} from './ElectionContext';
const CandidatesField = ({onSubmit}) => {
const {t} = useTranslation();
const election = useElection();
const dispatch = useElectionDispatch();
const candidates = election.candidates;
const [error, setError] = useState(null)
const disabled = candidates.filter(c => c.name !== "").length < 2;
// What to do when we change the candidates
useEffect(() => {
// Initialize the list with at least two candidates
if (candidates.length < 2) {
dispatch({'type': 'candidate-push', 'value': "default"})
}
if (candidates.length > MAX_NUM_CANDIDATES) {
setError('error.too-many-candidates')
}
}, [candidates])
return (
<Container className="candidate flex-grow-1 mt-5 flex-column d-flex justify-content-between">
<div className="d-flex flex-column">
<h4 className='mb-4'>{t('admin.add-candidates')}</h4>
<Alert msg={error} />
{candidates.map((candidate, index) => {
return (
<CandidateField
key={index}
position={index}
/>
)
})}
</div>
<div className="mb-5 d-flex justify-content-center">
<Button outline={true} color="secondary" onClick={onSubmit} disabled={disabled}>
{t('Valider les candidats')}
</Button>
</div>
</Container >
);
}
export default CandidatesField