58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
import NProgress from 'nprogress';
|
|
import { useEffect, useMemo } from 'react';
|
|
// @mui
|
|
import { useTheme } from '@mui/material/styles';
|
|
import { GlobalStyles } from '@mui/material';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
export function ProgressBarStyle() {
|
|
const theme = useTheme();
|
|
|
|
return (
|
|
<GlobalStyles
|
|
styles={{
|
|
'#nprogress': {
|
|
pointerEvents: 'none',
|
|
'& .bar': {
|
|
top: 0,
|
|
left: 0,
|
|
height: 2,
|
|
width: '100%',
|
|
position: 'fixed',
|
|
zIndex: theme.zIndex.snackbar,
|
|
backgroundColor: theme.palette.primary.main,
|
|
boxShadow: `0 0 2px ${theme.palette.primary.main}`
|
|
},
|
|
'& .peg': {
|
|
right: 0,
|
|
opacity: 1,
|
|
width: 100,
|
|
height: '100%',
|
|
display: 'block',
|
|
position: 'absolute',
|
|
transform: 'rotate(3deg) translate(0px, -4px)',
|
|
boxShadow: `0 0 10px ${theme.palette.primary.main}, 0 0 5px ${theme.palette.primary.main}`
|
|
}
|
|
}
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default function ProgressBar() {
|
|
NProgress.configure({
|
|
showSpinner: false
|
|
});
|
|
|
|
useMemo(() => {
|
|
NProgress.start();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
NProgress.done();
|
|
}, []);
|
|
|
|
return null;
|
|
}
|