import React, { MouseEvent, useState } from 'react'; import { GroupType, SchedulerEvent } from '../types'; import styled from 'styled-components/macro'; import Popover from '@material-ui/core/Popover'; import Typography from '@material-ui/core/Typography'; import { makeStyles, createStyles, Theme } from '@material-ui/core/styles'; import { MONDAY_TO_FRIDAY } from '../constants'; const useStyles = makeStyles((theme: Theme) => createStyles({ popover: { pointerEvents: 'none', }, paper: { padding: theme.spacing(1), marginLeft: 5, textAlign: 'center', }, }), ); interface SchedulerEventsWrapperProps { eventIndex: number; rowTop: number; cellWidth: number; cellHeight: number; } const SchedulerEventsWrapper = styled.div` position: absolute; display: flex; top: ${({ rowTop }) => rowTop}px; left: ${({ cellWidth, eventIndex }) => (cellWidth * 1) / 5 + 4 + cellWidth * eventIndex}px; width: ${({ cellWidth }) => cellWidth - 10}px; height: ${({ cellHeight }) => cellHeight * 3}px; z-index: 2; padding-left: 10px; `; interface SchedulerEventProps { cellWidth: number; cellHeight: number; groupType: GroupType; } const StyledSchedulerEvent = styled.div` display: flex; justify-content: center; align-items: center; z-index: 2; font-size: 0.65vw; line-height: normal; border-radius: 10px; height: ${({ cellHeight }) => cellHeight * 3}px; width: ${({ cellWidth }) => (cellWidth * 3) / 4}px; margin-right: 5px; padding: 5px 5px 5px 5px; text-align: center; background-color: ${({ groupType }) => (groupType === 'CLASS' ? '#FFDC61' : '#9ed3ff')}; box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.75); `; const StyledTypography = styled(Typography)` background-color: white; `; interface SchedulerRowProps { groups: Array; indexRow: number; rowTop: number; cellWidth: number; cellHeight: number; } export const SchedulerRow = ({ groups, indexRow, rowTop, cellWidth, cellHeight }: SchedulerRowProps) => { const classes = useStyles(); const [anchorEl, setAnchorEl] = React.useState(null); const [popoverId, setPopoverId] = useState(null); //looks weird const handlePopoverOpen = (event: MouseEvent) => { setAnchorEl(event.currentTarget); setPopoverId(event.currentTarget.id); }; const handlePopoverClose = () => { setAnchorEl(null); setPopoverId(null); }; const open = Boolean(anchorEl); return (
{[...Array(MONDAY_TO_FRIDAY)].map((_, eventIndex) => ( {groups.map( (group, index) => group.day === eventIndex && ( <> handlePopoverOpen(e)} onMouseLeave={handlePopoverClose} >

{groups[index].name}

{groups[index].time[0]} - {groups[index].time[1]}

{groups[index].name}

{groups[index].lecturer}

{groups[index].room}

), )}
))}
); };