frontend/src/components/Scheduler.tsx

148 lines
4.8 KiB
TypeScript
Raw Normal View History

2020-11-13 23:05:10 +01:00
import React, { useEffect, MouseEvent, useRef, useCallback, useLayoutEffect } from 'react';
2020-08-17 23:56:34 +02:00
import { useState } from 'react';
import { SchedulerEvents } from './SchedulerEvents';
import { days, hours } from '../constants/index';
import styled from 'styled-components/macro';
2020-07-20 17:53:50 +02:00
2020-08-12 04:13:14 +02:00
const SchedulerWrapper = styled.div`
border-collapse: collapse;
2020-11-08 15:49:10 +01:00
flex: 1;
2020-11-08 18:05:21 +01:00
background-color: white;
padding: 5px 15px 5px 5px;
border-radius: 5px;
margin-right: 20px;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 3px 3px 3px -2px rgba(0, 0, 0, 0.59);
2020-08-12 04:13:14 +02:00
`;
2020-07-20 17:53:50 +02:00
2020-08-12 04:13:14 +02:00
const TableBody = styled.div`
width: 100%;
display: flex;
flex-direction: column;
`;
2020-07-20 17:53:50 +02:00
2020-08-12 04:13:14 +02:00
const TableRow = styled.div`
display: flex;
`;
2020-08-05 23:54:30 +02:00
2020-08-12 04:13:14 +02:00
const TableHead = styled.div`
display: flex;
width: 100%;
`;
2020-08-09 19:29:03 +02:00
interface TableCellProps {
height: number;
2020-11-08 15:49:10 +01:00
isHourColumn?: boolean;
}
const TableCell = styled.div<TableCellProps>`
height: ${({ height }) => height}px;
2020-11-08 18:05:21 +01:00
border-width: ${({ isHourColumn }) => !isHourColumn && '2px'};
border-style: ${({ isHourColumn }) => !isHourColumn && 'none solid dotted none'};
border-color: rgb(242, 243, 245);
2020-11-08 15:49:10 +01:00
margin-top: ${({ isHourColumn, height }) => isHourColumn ? -(height / 2) : 0}px;
2020-08-30 10:42:52 +02:00
display: flex;
align-items: center;
2020-11-08 15:49:10 +01:00
justify-content: ${({ isHourColumn }) => isHourColumn ? 'flex-end' : 'center'};
flex: ${({ isHourColumn }) => isHourColumn ? '1' : '5'};
margin-right: ${({ isHourColumn }) => isHourColumn ? '10px' : '0px'};
font-size: 0.75vw;
user-select: none;
2020-11-08 18:05:21 +01:00
border-collapse:collapse;
:nth-child(2) {
border-left: 2px solid rgb(242, 243, 245);
}
font-weight: bold;
`;
2020-07-20 17:53:50 +02:00
2020-07-20 17:53:50 +02:00
export const Scheduler = () => {
2020-08-09 19:29:03 +02:00
const cellRef = useRef<HTMLDivElement>(null);
const [cellWidth, setCellWidth] = useState(0);
const [cellTop, setCellTop] = useState(0);
2020-07-30 18:06:27 +02:00
const wrapperRef = useRef<HTMLDivElement>(null);
const [wrapperHeight, setWrapperHeight] = useState(0);
2020-11-13 23:05:10 +01:00
const [, updateState] = useState<any>();
const forceUpdate = useCallback(() => updateState({}), []);
2020-08-09 19:29:03 +02:00
useEffect(() => {
const handleResize = () => {
2020-11-13 23:05:10 +01:00
if (cellRef.current) {
2020-08-09 19:29:03 +02:00
setCellWidth(cellRef.current.getBoundingClientRect().width);
setCellTop(cellRef.current.getBoundingClientRect().top);
2020-11-13 23:05:10 +01:00
cellRef.current.style.backgroundColor = "blue";
console.log("XDDD")
2020-08-09 19:29:03 +02:00
}
2020-11-13 23:05:10 +01:00
2020-08-09 20:44:35 +02:00
};
2020-08-09 19:29:03 +02:00
handleResize();
}, []);
2020-11-13 23:05:10 +01:00
useEffect(() => {
const handleWrapperResize = () => {
if (wrapperRef.current) {
setWrapperHeight(wrapperRef.current.getBoundingClientRect().height);
}
}
window.addEventListener('resize', handleWrapperResize);
return () => window.removeEventListener('resize', handleWrapperResize);
}, [])
2020-07-20 17:53:50 +02:00
return (
<>
<SchedulerWrapper ref={wrapperRef}>
2020-08-12 04:13:14 +02:00
<TableHead>
2020-10-08 20:21:52 +02:00
{days.map((day, indexCell) =>
indexCell === 0 ? (
2020-11-13 23:05:10 +01:00
<TableCell height={wrapperHeight / 26} isHourColumn={true} key={indexCell} >
2020-10-08 20:21:52 +02:00
{day}
</TableCell>
) : (
2020-11-13 23:05:10 +01:00
<TableCell height={wrapperHeight / 26} style={{ borderStyle: 'none none solid none' }} key={indexCell}>
2020-11-08 15:49:10 +01:00
{day}
</TableCell>
),
2020-10-08 20:21:52 +02:00
)}
2020-08-12 04:13:14 +02:00
</TableHead>
<TableBody>
2020-08-09 19:29:03 +02:00
{hours.map((hour, indexRow) => (
2020-08-12 04:13:14 +02:00
<TableRow key={indexRow}>
2020-08-17 23:56:34 +02:00
{[hour, '', '', '', '', ''].map((value, indexCell) =>
2020-10-08 20:21:52 +02:00
indexCell === 0 ? (
2020-11-08 15:49:10 +01:00
<TableCell height={wrapperHeight / 26} isHourColumn={true} key={`${indexRow}${indexCell}`}>
2020-10-08 20:21:52 +02:00
{value}
2020-11-13 23:05:10 +01:00
</TableCell>)
: (indexRow === 0 && indexCell === 1) ? (<TableCell height={wrapperHeight / 26} ref={cellRef} key={`${indexRow}${indexCell}`}>
2020-11-08 18:05:21 +01:00
{value}
</TableCell>
2020-11-13 23:05:10 +01:00
) : indexRow === 23 ? (
<TableCell height={wrapperHeight / 26} style={{ borderBottom: '2px solid rgb(242, 243, 245)' }} key={`${indexRow}${indexCell}`}>
{value}
</TableCell>
) : indexCell === 5 ? (
<TableCell height={wrapperHeight / 26} key={`${indexRow}${indexCell}`}>
{value}
</TableCell>
) : indexRow % 2 !== 0 ? (
<TableCell height={wrapperHeight / 26} style={{ borderBottom: '2px solid rgb(242, 243, 245)' }} key={`${indexRow}${indexCell}`}>
{value}
</TableCell>
) : <TableCell height={wrapperHeight / 26} key={`${indexRow}${indexCell}`}>
{value}
</TableCell>
2020-08-09 20:44:35 +02:00
)}
2020-08-12 04:13:14 +02:00
</TableRow>
2020-08-05 23:54:30 +02:00
))}
2020-08-12 04:13:14 +02:00
</TableBody>
2020-11-08 15:49:10 +01:00
<SchedulerEvents cellTop={cellTop} cellWidth={cellWidth} cellHeight={wrapperHeight / 26} />
2020-08-12 04:13:14 +02:00
</SchedulerWrapper>
2020-07-20 17:53:50 +02:00
</>
);
};