-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Netmanager] Added maintenance banner, fixed sidebar, use skip for pagination #2300
Changes from 9 commits
3a26acf
fdebe17
2a7597d
3caa5ec
2297030
6e7eeac
89362b9
f92c09d
86fdb64
2826c40
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { useState, useEffect } from 'react'; | ||
import { getMaintenanceStatusApi } from 'views/apis/authService'; | ||
|
||
export const useMaintenanceStatus = () => { | ||
const [maintenance, setMaintenance] = useState(null); | ||
const [loading, setLoading] = useState(true); | ||
const [error, setError] = useState(null); | ||
|
||
useEffect(() => { | ||
const checkMaintenanceStatus = async () => { | ||
try { | ||
const response = await getMaintenanceStatusApi(); | ||
if (response.success && response.maintenance?.length > 0) { | ||
// Get the first active maintenance | ||
const activeMaintenance = response.maintenance.find((m) => m.isActive); | ||
setMaintenance(activeMaintenance || null); | ||
} else { | ||
setMaintenance(null); | ||
} | ||
} catch (err) { | ||
setError(err); | ||
setMaintenance(null); | ||
} finally { | ||
setLoading(false); | ||
} | ||
}; | ||
|
||
checkMaintenanceStatus(); | ||
// Check every 5 minutes | ||
const interval = setInterval(checkMaintenanceStatus, 5 * 60 * 1000); | ||
return () => clearInterval(interval); | ||
}, []); | ||
|
||
return { maintenance, loading, error }; | ||
}; |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,65 @@ | ||||||||||||||||||||||||||
import React from 'react'; | ||||||||||||||||||||||||||
import { makeStyles } from '@material-ui/styles'; | ||||||||||||||||||||||||||
import { Paper, Typography, Box } from '@material-ui/core'; | ||||||||||||||||||||||||||
import { Warning as WarningIcon } from '@material-ui/icons'; | ||||||||||||||||||||||||||
import { useMaintenanceStatus } from 'utils/hooks/useMaintenanceStatus'; | ||||||||||||||||||||||||||
import { formatDateString } from '../../../utils/dateTime'; | ||||||||||||||||||||||||||
import { format } from 'date-fns'; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const useStyles = makeStyles((theme) => ({ | ||||||||||||||||||||||||||
banner: { | ||||||||||||||||||||||||||
padding: theme.spacing(2), | ||||||||||||||||||||||||||
backgroundColor: '#fff3e0', // Light warning color | ||||||||||||||||||||||||||
border: '1px solid #ffb74d', // Warning border | ||||||||||||||||||||||||||
borderRadius: '4px', | ||||||||||||||||||||||||||
marginBottom: theme.spacing(2), | ||||||||||||||||||||||||||
margin: 5 | ||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||
content: { | ||||||||||||||||||||||||||
display: 'flex', | ||||||||||||||||||||||||||
alignItems: 'center', | ||||||||||||||||||||||||||
justifyContent: 'center', | ||||||||||||||||||||||||||
gap: theme.spacing(2) | ||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||
icon: { | ||||||||||||||||||||||||||
color: '#f57c00' // Warning icon color | ||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||
message: { | ||||||||||||||||||||||||||
color: '#424242', // Dark text for readability | ||||||||||||||||||||||||||
fontWeight: 'bold', | ||||||||||||||||||||||||||
fontSize: 18 | ||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||
timeInfo: { | ||||||||||||||||||||||||||
marginTop: theme.spacing(1), | ||||||||||||||||||||||||||
color: '#616161', // Slightly lighter text for secondary info | ||||||||||||||||||||||||||
fontSize: '0.875rem', | ||||||||||||||||||||||||||
textAlign: 'center' | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
})); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
const MaintenanceBanner = () => { | ||||||||||||||||||||||||||
const classes = useStyles(); | ||||||||||||||||||||||||||
const { maintenance, loading } = useMaintenanceStatus(); | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
if (loading || !maintenance || !maintenance.isActive) { | ||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||
<Paper elevation={0} className={classes.banner}> | ||||||||||||||||||||||||||
<Box className={classes.content}> | ||||||||||||||||||||||||||
<WarningIcon className={classes.icon} /> | ||||||||||||||||||||||||||
<Typography variant="body1" className={classes.message}> | ||||||||||||||||||||||||||
{maintenance.message || | ||||||||||||||||||||||||||
'System maintenance in progress. Some features may be unavailable.'} | ||||||||||||||||||||||||||
</Typography> | ||||||||||||||||||||||||||
</Box> | ||||||||||||||||||||||||||
<Typography variant="body2" className={classes.timeInfo}> | ||||||||||||||||||||||||||
Estimated downtime: {format(new Date(maintenance.startDate), 'MMM d, yyyy h:mm a')} -{' '} | ||||||||||||||||||||||||||
{format(new Date(maintenance.endDate), 'MMM d, yyyy h:mm a')} | ||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Add date validation Consider adding error handling for invalid date values to prevent runtime errors. - Estimated downtime: {format(new Date(maintenance.startDate), 'MMM d, yyyy h:mm a')} -{' '}
- {format(new Date(maintenance.endDate), 'MMM d, yyyy h:mm a')}
+ Estimated downtime: {
+ maintenance.startDate && !isNaN(new Date(maintenance.startDate))
+ ? format(new Date(maintenance.startDate), 'MMM d, yyyy h:mm a')
+ : 'Invalid start date'
+ } -{' '}
+ {
+ maintenance.endDate && !isNaN(new Date(maintenance.endDate))
+ ? format(new Date(maintenance.endDate), 'MMM d, yyyy h:mm a')
+ : 'Invalid end date'
+ } 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||
</Typography> | ||||||||||||||||||||||||||
</Paper> | ||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
export default MaintenanceBanner; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Remove unused import
The
formatDateString
import is not used in the component. Consider removing it.-import { formatDateString } from '../../../utils/dateTime';