-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add notifications for issues. (#183)
* feat: Add notifications for issues count in MiniDrawer component * feat: add Notifications Modal * fmt * fix: immediate_choice option not working in some cases * fmt * refactor / redesign * success--->successfully * chore: Update Notifications component text to "Configuration Issues Detected" * chore: Update Notifications component text to "No notifications (issues)" * feat: delate all issues buttoon added
- Loading branch information
1 parent
f612bf8
commit a124a11
Showing
2 changed files
with
353 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,351 @@ | ||
import * as React from 'react'; | ||
import { alpha, styled } from '@mui/material/styles'; | ||
import NotificationsNoneRoundedIcon from '@mui/icons-material/NotificationsNoneRounded'; | ||
import Tooltip from '@mui/material/Tooltip'; | ||
import CircularProgress from '@mui/material/CircularProgress'; | ||
import IconButton from '@mui/material/IconButton'; | ||
import Badge from '@mui/material/Badge'; | ||
import Typography from '@mui/material/Typography'; | ||
import CheckCircleOutlineIcon from '@mui/icons-material/CheckCircleOutline'; | ||
import List from '@mui/material/List'; | ||
import MuiListItem from '@mui/material/ListItem'; | ||
import MuiDivider from '@mui/material/Divider'; | ||
import axios from 'axios'; | ||
import { CodeBlock } from './Common/CodeBlock'; | ||
import { Box, Button, Chip, Drawer, useMediaQuery } from '@mui/material'; | ||
import { requestFromCode } from './CodeEditorWindow/config/RequesFromCode'; | ||
import { bigIntJSON } from '../common/bigIntJSON'; | ||
import PropTypes from 'prop-types'; | ||
import { Close } from '@mui/icons-material'; | ||
|
||
async function fetchNotifications() { | ||
try { | ||
const issues = await axios.get('/issues'); | ||
return issues.data.result.issues; | ||
} catch (error) { | ||
console.log('error', error); | ||
} | ||
} | ||
|
||
async function deleteNotifications() { | ||
try { | ||
const res = await axios.delete('/issues'); | ||
return res.data; | ||
} catch (error) { | ||
console.log('error', error); | ||
return error; | ||
} | ||
} | ||
|
||
const ListItem = styled(MuiListItem)(({ theme }) => ({ | ||
display: 'flex', | ||
flexDirection: 'column', | ||
background: alpha(theme.palette.info.main, 0.05), | ||
borderColor: `${theme.palette.info.main} !important`, | ||
borderRadius: '5px', | ||
padding: theme.spacing(2), | ||
marginBottom: theme.spacing(2), | ||
})); | ||
|
||
const Loading = styled('div')(({ theme }) => ({ | ||
display: 'flex', | ||
justifyContent: 'center', | ||
margin: theme.spacing(3, 0), | ||
})); | ||
|
||
const Divider = styled(MuiDivider)(({ theme }) => ({ | ||
margin: theme.spacing(1, 0), | ||
})); | ||
|
||
export default function Notifications() { | ||
const [open, setOpen] = React.useState(false); | ||
const [tooltipOpen, setTooltipOpen] = React.useState(false); | ||
const anchorRef = React.useRef(null); | ||
const [issues, setIssues] = React.useState([]); | ||
const [issuesCount, setIssuesCount] = React.useState(0); | ||
const [loading, setLoading] = React.useState(true); | ||
const matchesMdMedia = useMediaQuery('(max-width: 992px)'); | ||
|
||
React.useEffect(() => { | ||
setLoading(true); | ||
fetchNotifications().then((data) => { | ||
setIssuesCount(data.length); | ||
setIssues(data); | ||
setLoading(false); | ||
}); | ||
}, []); | ||
|
||
const handleToggle = () => { | ||
if (open) { | ||
fetchNotifications().then((data) => { | ||
setIssues(data); | ||
setLoading(false); | ||
}); | ||
} | ||
if (issuesCount > 0) { | ||
setIssuesCount(0); | ||
} | ||
setOpen((prevOpen) => !prevOpen); | ||
setTooltipOpen(false); | ||
}; | ||
|
||
const handleDeleteAll = () => { | ||
setLoading(true); | ||
deleteNotifications().then(() => { | ||
fetchNotifications().then((data) => { | ||
setIssues(data); | ||
setLoading(false); | ||
}); | ||
}); | ||
}; | ||
|
||
return ( | ||
<React.Fragment> | ||
<Tooltip | ||
open={tooltipOpen} | ||
title={'toggleNotifications'} | ||
enterDelay={300} | ||
onOpen={() => { | ||
setTooltipOpen(!open); | ||
}} | ||
onClose={() => { | ||
setTooltipOpen(false); | ||
}} | ||
> | ||
<IconButton | ||
ref={anchorRef} | ||
aria-controls={open ? 'notifications-popup' : undefined} | ||
aria-haspopup="true" | ||
aria-label="unreadNotifications" | ||
data-ga-event-category="AppBar" | ||
data-ga-event-action="toggleNotifications" | ||
onClick={handleToggle} | ||
size="large" | ||
> | ||
<Badge color="error" badgeContent={issuesCount}> | ||
<NotificationsNoneRoundedIcon /> | ||
</Badge> | ||
</IconButton> | ||
</Tooltip> | ||
<Drawer | ||
anchor={'right'} | ||
open={open} | ||
onClose={handleToggle} | ||
sx={{ | ||
'& .MuiDrawer-paper': { | ||
minWidth: matchesMdMedia ? '100vw' : '680px', | ||
width: matchesMdMedia ? '100vw' : '55vw', | ||
padding: '1rem', | ||
pt: '6rem', | ||
}, | ||
'& .MuiBackdrop-root.MuiModal-backdrop': { | ||
opacity: '0 !important', | ||
}, | ||
}} | ||
> | ||
<div> | ||
<Box sx={{ display: 'flex', alignItems: 'center', mb: 2, mr: 2 }}> | ||
<Typography variant={'h5'}>Notifications</Typography> | ||
<Box sx={{ flexGrow: 1 }} /> | ||
<IconButton onClick={handleToggle}> | ||
<Close /> | ||
</IconButton> | ||
</Box> | ||
<Box sx={{ display: 'flex', alignItems: 'center', mb: 2, mr: 2 }}> | ||
<Typography variant={'body1'}>Configuration Issues Detected</Typography> | ||
<Box sx={{ flexGrow: 1 }} /> | ||
{issues.length > 0 && ( | ||
<Button color="error" variant="contained" onClick={handleDeleteAll}> | ||
Delete all issues | ||
</Button> | ||
)} | ||
</Box> | ||
|
||
<List> | ||
{!loading ? ( | ||
issues.length > 0 ? ( | ||
issues.map((issue) => ( | ||
<React.Fragment key={issue.id}> | ||
<Notification issue={issue} /> | ||
</React.Fragment> | ||
)) | ||
) : ( | ||
<ListItem> | ||
<Typography color="text.secondary">No notifications (issues)</Typography> | ||
</ListItem> | ||
) | ||
) : ( | ||
<Loading> | ||
<CircularProgress size={32} /> | ||
</Loading> | ||
)} | ||
</List> | ||
</div> | ||
</Drawer> | ||
</React.Fragment> | ||
); | ||
} | ||
|
||
function Notification({ issue }) { | ||
const [result, setResult] = React.useState(null); | ||
const [loading, setLoading] = React.useState(false); | ||
const [error, setError] = React.useState(null); | ||
|
||
const handleRun = (code) => { | ||
setLoading(true); | ||
requestFromCode(code, false) | ||
.then((res) => { | ||
setResult(() => bigIntJSON.stringify(res, null, 2)); | ||
setLoading(false); | ||
}) | ||
.catch((err) => { | ||
setError(() => bigIntJSON.stringify(err, null, 2)); | ||
setLoading(false); | ||
}); | ||
}; | ||
|
||
return ( | ||
<ListItem | ||
alignItems="flex-start" | ||
sx={ | ||
result | ||
? { | ||
background: 'rgba(0, 255, 0, 0.1)', | ||
borderColor: 'rgba(0, 255, 0, 0.5) !important', | ||
} | ||
: error | ||
? { | ||
background: 'rgba(255, 0, 0, 0.1)', | ||
borderColor: 'rgba(255, 0, 0, 0.5) !important', | ||
} | ||
: null | ||
} | ||
> | ||
{loading ? ( | ||
<CircularProgress size={32} /> | ||
) : result ? ( | ||
<Box sx={{ display: 'flex', alignItems: 'center', gap: 2 }}> | ||
<CheckCircleOutlineIcon color="success" /> | ||
<Typography color="success" variant="body1"> | ||
<b>Success! Indexing successfully acknowledged.</b> | ||
</Typography> | ||
</Box> | ||
) : ( | ||
<React.Fragment> | ||
{error ? ( | ||
<Box> | ||
<Typography color="error" variant="body1"> | ||
<b>Error</b> | ||
</Typography> | ||
<CodeBlock | ||
codeStr={error.toString()} | ||
language="json" | ||
withRunButton={false} | ||
title="Error" | ||
editable={false} | ||
/> | ||
</Box> | ||
) : null} | ||
<Typography | ||
component={'span'} | ||
variant={'caption'} | ||
sx={(theme) => ({ | ||
display: 'inline-block', | ||
color: theme.palette.info.main, | ||
border: `1px solid ${theme.palette.info.main}`, | ||
px: 0.5, | ||
borderRadius: '5px', | ||
my: 0.5, | ||
})} | ||
> | ||
#{issue.id} | ||
</Typography> | ||
<Typography gutterBottom> | ||
<b>{issue.description}</b> | ||
</Typography> | ||
|
||
{issue.solution && issue.solution.immediate && ( | ||
<React.Fragment> | ||
<Typography gutterBottom variant="body2" color="text.secondary"> | ||
<span | ||
id="notification-message" | ||
// eslint-disable-next-line react/no-danger | ||
dangerouslySetInnerHTML={{ __html: issue.solution.immediate.message }} | ||
/> | ||
</Typography> | ||
<Box | ||
sx={{ | ||
width: '100%', | ||
}} | ||
> | ||
<CodeBlock | ||
codeStr={`${issue.solution.immediate.action.method} ${issue.solution.immediate.action.uri} | ||
${JSON.stringify(issue.solution.immediate.action.body, null, 2)}`} | ||
language="json" | ||
withRunButton={true} | ||
onRun={handleRun} | ||
title="Solution" | ||
editable={false} | ||
/> | ||
</Box> | ||
</React.Fragment> | ||
)} | ||
{issue.solution && issue.solution.immediate_choice && ( | ||
<React.Fragment> | ||
<Typography gutterBottom variant="body" color="text.secondary"> | ||
Choose one of the following solutions: | ||
</Typography> | ||
{issue.solution.immediate_choice.map((choice, index) => ( | ||
<React.Fragment key={index}> | ||
<Typography gutterBottom variant="body2" color="text.secondary"> | ||
<span | ||
id="notification-message" | ||
// eslint-disable-next-line react/no-danger | ||
dangerouslySetInnerHTML={{ __html: choice.message }} | ||
/> | ||
</Typography> | ||
<Box | ||
sx={{ | ||
width: '100%', | ||
}} | ||
> | ||
<CodeBlock | ||
codeStr={`${choice.action.method} ${choice.action.uri} | ||
${JSON.stringify(choice.action.body, null, 2)}`} | ||
language="json" | ||
withRunButton={true} | ||
onRun={handleRun} | ||
title="Solution" | ||
editable={false} | ||
/> | ||
</Box> | ||
{index < issue.solution.immediate_choice.length - 1 ? ( | ||
<Divider sx={{ width: '100%' }}> | ||
<Chip label="OR" size="small" /> | ||
</Divider> | ||
) : null} | ||
</React.Fragment> | ||
))} | ||
</React.Fragment> | ||
)} | ||
|
||
{issue.timestamp && ( | ||
<Typography variant="caption" color="text.secondary"> | ||
{new Date(issue.timestamp).toLocaleDateString('en-US', { | ||
year: 'numeric', | ||
month: 'long', | ||
day: 'numeric', | ||
hour: '2-digit', | ||
minute: '2-digit', | ||
})} | ||
</Typography> | ||
)} | ||
</React.Fragment> | ||
)} | ||
</ListItem> | ||
); | ||
} | ||
|
||
Notification.propTypes = { | ||
issue: PropTypes.any, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters