40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import LinearProgress, { LinearProgressProps } from '@mui/material/LinearProgress';
|
||
|
|
import Typography from '@mui/material/Typography';
|
||
|
|
import Box from '@mui/material/Box';
|
||
|
|
|
||
|
|
function LinearProgressWithLabel(props: LinearProgressProps & { value: number }) {
|
||
|
|
return (
|
||
|
|
<Box sx={{ display: 'flex', alignItems: 'center' }}>
|
||
|
|
<Box sx={{ width: '100%', mr: 1 }}>
|
||
|
|
<LinearProgress variant="determinate" {...props} />
|
||
|
|
</Box>
|
||
|
|
<Box sx={{ minWidth: 35 }}>
|
||
|
|
<Typography
|
||
|
|
variant="body2"
|
||
|
|
sx={{ color: 'text.secondary' }}
|
||
|
|
>{`${Math.round(props.value)}%`}</Typography>
|
||
|
|
</Box>
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function LinearWithValueLabel() {
|
||
|
|
const [progress, setProgress] = React.useState(10);
|
||
|
|
|
||
|
|
React.useEffect(() => {
|
||
|
|
const timer = setInterval(() => {
|
||
|
|
setProgress((prevProgress) => (prevProgress >= 100 ? 10 : prevProgress + 10));
|
||
|
|
}, 800);
|
||
|
|
return () => {
|
||
|
|
clearInterval(timer);
|
||
|
|
};
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Box sx={{ width: '100%' }}>
|
||
|
|
<LinearProgressWithLabel value={progress} />
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|