mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
|
|
import { Button, Chip, Grid } from '@mui/material';
|
||
|
|
import { UserType } from '../../Types/UserType';
|
||
|
|
import { PlayArrow } from '@mui/icons-material';
|
||
|
|
import LaunchQuizDialog from '../LaunchQuizDialog/LaunchQuizDialog';
|
||
|
|
import { useState } from 'react';
|
||
|
|
import './userWaitPage.css';
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
users: UserType[];
|
||
|
|
launchQuiz: () => void;
|
||
|
|
setQuizMode: (mode: 'student' | 'teacher') => void;
|
||
|
|
}
|
||
|
|
|
||
|
|
const UserWaitPage: React.FC<Props> = ({ users, launchQuiz, setQuizMode }) => {
|
||
|
|
const [isDialogOpen, setIsDialogOpen] = useState<boolean>(false);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="wait">
|
||
|
|
<div className='button'>
|
||
|
|
<Button
|
||
|
|
variant="contained"
|
||
|
|
onClick={() => setIsDialogOpen(true)}
|
||
|
|
startIcon={<PlayArrow />}
|
||
|
|
fullWidth
|
||
|
|
sx={{ fontWeight: 600, fontSize: 20 }}
|
||
|
|
>
|
||
|
|
Lancer
|
||
|
|
</Button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="students">
|
||
|
|
|
||
|
|
<Grid container spacing={3}>
|
||
|
|
|
||
|
|
{users.map((user, index) => (
|
||
|
|
<Grid item key={user.name + index}>
|
||
|
|
<Chip label={user.name} sx={{ width: '100%' }} />
|
||
|
|
</Grid>
|
||
|
|
))}
|
||
|
|
|
||
|
|
</Grid>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<LaunchQuizDialog
|
||
|
|
open={isDialogOpen}
|
||
|
|
handleOnClose={() => setIsDialogOpen(false)}
|
||
|
|
launchQuiz={launchQuiz}
|
||
|
|
setQuizMode={setQuizMode}
|
||
|
|
/>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default UserWaitPage;
|