46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
|
|
import * as React from 'react';
|
||
|
|
import LinearProgress from '@mui/joy/LinearProgress';
|
||
|
|
import Typography from '@mui/joy/Typography';
|
||
|
|
import Box from '@mui/joy/Box';
|
||
|
|
|
||
|
|
export default function LinearProgressWithLabel() {
|
||
|
|
const [progress, setProgress] = React.useState(0);
|
||
|
|
|
||
|
|
React.useEffect(() => {
|
||
|
|
const timer = setInterval(() => {
|
||
|
|
setProgress((prevProgress) => (prevProgress >= 100 ? 0 : prevProgress + 10));
|
||
|
|
}, 800);
|
||
|
|
|
||
|
|
return () => {
|
||
|
|
clearInterval(timer);
|
||
|
|
};
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Box sx={{ bgcolor: 'white', width: '100%' }}>
|
||
|
|
<LinearProgress
|
||
|
|
determinate
|
||
|
|
variant="outlined"
|
||
|
|
color="neutral"
|
||
|
|
size="sm"
|
||
|
|
thickness={32}
|
||
|
|
value={progress}
|
||
|
|
sx={{
|
||
|
|
'--LinearProgress-radius': '0px',
|
||
|
|
'--LinearProgress-progressThickness': '24px',
|
||
|
|
boxShadow: 'sm',
|
||
|
|
borderColor: 'neutral.500',
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<Typography
|
||
|
|
level="body-xs"
|
||
|
|
textColor="common.white"
|
||
|
|
sx={{ fontWeight: 'xl', mixBlendMode: 'difference' }}
|
||
|
|
>
|
||
|
|
LOADING… {`${Math.round(progress)}%`}
|
||
|
|
</Typography>
|
||
|
|
</LinearProgress>
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|