Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import * as React from 'react';
|
|
import CircularProgress, {
|
|
CircularProgressProps,
|
|
} from '@mui/material/CircularProgress';
|
|
import Typography from '@mui/material/Typography';
|
|
import Box from '@mui/material/Box';
|
|
|
|
function CircularProgressWithLabel(
|
|
props: CircularProgressProps & { value: number },
|
|
) {
|
|
return (
|
|
<Box sx={{ position: 'relative', display: 'inline-flex' }}>
|
|
<CircularProgress variant="determinate" {...props} />
|
|
<Box
|
|
sx={{
|
|
top: 0,
|
|
left: 0,
|
|
bottom: 0,
|
|
right: 0,
|
|
position: 'absolute',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}}
|
|
>
|
|
<Typography
|
|
variant="caption"
|
|
component="div"
|
|
sx={{ color: 'text.secondary' }}
|
|
>{`${Math.round(props.value)}%`}</Typography>
|
|
</Box>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default function CircularWithValueLabel() {
|
|
const [progress, setProgress] = React.useState(10);
|
|
|
|
React.useEffect(() => {
|
|
const timer = setInterval(() => {
|
|
setProgress((prevProgress) => (prevProgress >= 100 ? 0 : prevProgress + 10));
|
|
}, 800);
|
|
return () => {
|
|
clearInterval(timer);
|
|
};
|
|
}, []);
|
|
|
|
return <CircularProgressWithLabel value={progress} />;
|
|
}
|