\n
\n MRD Response Alert!\n
\n
\n {message}\n {/* */}\n
\n
\n );\n};\n\nexport default Notification;\n","import React, {useContext, useEffect, useState} from 'react';\nimport AppHeader from './AppHeader';\nimport {ContentView} from '../../../index';\nimport {useAuthUser} from '../../../utility/AppHooks';\n\nimport Box from '@material-ui/core/Box';\nimport useStyles from './index.style';\nimport clsx from 'clsx';\nimport AppFooter from './AppFooter';\nimport AppFixedFooter from './AppFixedFooter';\nimport AppContext from '../../../utility/AppContext';\nimport AppSidebar from './AppSidebar';\nimport {LayoutType, AuthType} from '../../../../shared/constants/AppEnums';\nimport {useDispatch, useSelector} from 'react-redux';\nimport {getRequestList} from '../../../../../src/redux/actions/index';\nimport moment from 'moment';\nimport Notification from 'modules/common/Notification/Notification';\n\nconst HorDefault = (props) => {\n const {footer, layoutType, footerType} = useContext(AppContext);\n const classes = useStyles(props);\n const user = useAuthUser();\n\n const dispatch = useDispatch();\n const [showNotification, setShowNotification] = useState(false);\n const LoginUser = useSelector(({auth}) => auth);\n const drPendCount = useSelector(({mrdDr}) => mrdDr.getPendCount);\n const [msg, setMsg] = useState('');\n function formatDate(date) {\n if (moment(date)?.isValid() == true) {\n var d = new Date(date),\n month = '' + (d.getMonth() + 1),\n day = '' + d.getDate(),\n year = d.getFullYear();\n if (month.length < 2) month = '0' + month;\n if (day.length < 2) day = '0' + day;\n return [year, month, day].join('-');\n } else {\n return '';\n }\n }\n\n function updateScroll() {\n if (Number(LoginUser?.user?.mrdDrCheck) == 3) {\n let getFromDate = localStorage.getItem('drFromDate');\n let getToDate = localStorage.getItem('drToDate');\n let passData = {\n userCode: LoginUser && LoginUser.user ? LoginUser.user.doctorCode : 0,\n fromDate: getFromDate ? formatDate(getFromDate) : '',\n toDate: getToDate ? formatDate(getToDate) : '',\n limit: 10,\n offset: 0,\n };\n dispatch(getRequestList(passData));\n }\n }\n function Alert() {\n let pendCount = localStorage.getItem('alertPendCount');\n if (pendCount > 0) {\n setShowNotification(true);\n let msg = `Your ${pendCount} ${pendCount == 1 ? 'Request' : 'Requests'} ${\n pendCount == 1 ? 'has' : 'have'\n } been processed and ready to access.`;\n setMsg(msg);\n }\n }\n useEffect(() => {\n if (Number(LoginUser?.user?.mrdDrCheck) == 3) {\n setInterval(updateScroll, 120000);\n }\n }, []);\n\n useEffect(() => {\n setInterval(Alert, 120000);\n }, []);\n\n return (\n