import { useQuery, gql } from '@apollo/client' import ClickAwayListener from '@mui/material/ClickAwayListener' import Popper from '@mui/material/Popper' import classnames from 'classnames' import * as R from 'ramda' import React, { memo, useState, useEffect, useRef } from 'react' import { NavLink, useHistory } from 'react-router-dom' import ActionButton from '../buttons/ActionButton' import { H4 } from '../typography' import AddIconReverse from '../../styling/icons/button/add/white.svg?react' import AddIcon from '../../styling/icons/button/add/zodiac.svg?react' import Logo from '../../styling/icons/menu/logo.svg?react' import NotificationIcon from '../../styling/icons/menu/notification.svg?react' import NotificationCenter from '../NotificationCenter' import AddMachine from '../../pages/AddMachine' import styles from './Header.module.css' const HAS_UNREAD = gql` query getUnread { hasUnreadNotifications } ` const Subheader = ({ item, user }) => { const [prev, setPrev] = useState(null) return (
) } const notNil = R.compose(R.not, R.isNil) const Header = memo(({ tree, user }) => { const [open, setOpen] = useState(false) const [anchorEl, setAnchorEl] = useState(null) const [notifButtonCoords, setNotifButtonCoords] = useState({ x: 0, y: 0 }) const [active, setActive] = useState() const [hasUnread, setHasUnread] = useState(false) const { data, refetch, startPolling, stopPolling } = useQuery(HAS_UNREAD) const notifCenterButtonRef = useRef() const popperRef = useRef() const history = useHistory() useEffect(() => { if (data?.hasUnreadNotifications) return setHasUnread(true) // if not true, make sure it's false and not undefined if (notNil(data?.hasUnreadNotifications)) return setHasUnread(false) }, [data]) useEffect(() => { startPolling(60000) return stopPolling }) const onPaired = machine => { setOpen(false) history.push('/maintenance/machine-status', { id: machine.deviceId }) } // these inline styles prevent scroll bubbling: when the user reaches the bottom of the notifications list and keeps scrolling, // the body scrolls, stealing the focus from the notification center, preventing the admin from scrolling the notifications back up // on the first scroll, needing to move the mouse to recapture the focus on the notification center // it also disables the scrollbars caused by the notification center's background to the right of the page, but keeps the scrolling on the body enabled const onClickAway = () => { setAnchorEl(null) document.querySelector('#root').classList.remove('root-notifcenter-open') document.querySelector('body').classList.remove('body-notifcenter-open') } const handleClick = event => { const coords = notifCenterButtonRef.current.getBoundingClientRect() setNotifButtonCoords({ x: coords.x, y: coords.y + 5 }) setAnchorEl(anchorEl ? null : event.currentTarget) document.querySelector('#root').classList.add('root-notifcenter-open') document.querySelector('body').classList.add('body-notifcenter-open') } const popperOpen = Boolean(anchorEl) const id = popperOpen ? 'notifications-popper' : undefined return (
{ setActive(false) history.push('/dashboard') }} className={classnames(styles.logo, styles.logoLink)}>

Lamassu Admin

setOpen(true)}> Add machine
{active && active.children && } {open && setOpen(false)} onPaired={onPaired} />}
) }) export default Header