2020-08-09 19:29:03 +02:00
|
|
|
import React, { useEffect, useContext, useRef } from "react";
|
2020-07-20 17:53:50 +02:00
|
|
|
import { useState } from "react";
|
|
|
|
import "./index.scss";
|
2020-07-30 18:06:27 +02:00
|
|
|
import { LecturesContext } from "../../businesslogic/LecturesProvider";
|
2020-07-20 17:53:50 +02:00
|
|
|
const days = ["", "poniedziałek", "wtorek", "środa", "czwartek", "piątek"];
|
|
|
|
|
|
|
|
const hours = [
|
|
|
|
"8:00",
|
|
|
|
"9:00",
|
|
|
|
"10:00",
|
|
|
|
"11:00",
|
|
|
|
"12:00",
|
|
|
|
"13:00",
|
|
|
|
"14:00",
|
|
|
|
"15:00",
|
|
|
|
"16:00",
|
|
|
|
"17:00",
|
|
|
|
"18:00",
|
|
|
|
"19:00",
|
|
|
|
];
|
|
|
|
|
|
|
|
let events: Array<number> = [];
|
|
|
|
for (let i = 0; i < hours.length / 2; i++) {
|
|
|
|
events.push(i);
|
|
|
|
}
|
|
|
|
|
2020-08-05 23:54:30 +02:00
|
|
|
let center: "center" = "center";
|
|
|
|
let row: "row" = "row";
|
|
|
|
let column: "column" = "column";
|
2020-08-09 19:29:03 +02:00
|
|
|
const collapse: "collapse" = "collapse";
|
2020-08-05 23:54:30 +02:00
|
|
|
const tbodyStyles = {
|
2020-08-09 19:29:03 +02:00
|
|
|
width: "100%",
|
|
|
|
height: "100%",
|
2020-08-05 23:54:30 +02:00
|
|
|
display: "flex",
|
|
|
|
flexDirection: column,
|
|
|
|
}
|
|
|
|
|
|
|
|
const rowStyles = {
|
|
|
|
display: "flex",
|
|
|
|
flexDirection: row,
|
|
|
|
}
|
|
|
|
|
|
|
|
const cellStyles = {
|
|
|
|
border: "1px solid #ddd",
|
|
|
|
padding: "10px",
|
|
|
|
textAlign: center,
|
|
|
|
flex: 1,
|
|
|
|
}
|
|
|
|
|
2020-08-09 19:29:03 +02:00
|
|
|
const theadStyles = {
|
|
|
|
display: "flex",
|
|
|
|
width: "100%"
|
|
|
|
}
|
|
|
|
|
|
|
|
const scheduler = {
|
|
|
|
marginTop: "20px",
|
|
|
|
borderCollapse: collapse
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-07-20 17:53:50 +02:00
|
|
|
|
|
|
|
export const Scheduler = () => {
|
|
|
|
const [currentEventsIds, setCurrentEventsIds] = useState<Array<string>>([]);
|
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 { choosenGroups } = useContext(LecturesContext);
|
|
|
|
|
2020-08-09 19:29:03 +02:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
const handleResize = () => {
|
|
|
|
console.log(`cellref is:`);
|
|
|
|
console.log(cellRef);
|
|
|
|
if (cellRef.current) {
|
|
|
|
setCellWidth(cellRef.current.getBoundingClientRect().width);
|
|
|
|
setCellTop(cellRef.current.getBoundingClientRect().top);
|
|
|
|
console.log(`cellwidth: ${cellWidth}`);
|
|
|
|
console.log("cell ref:");
|
|
|
|
console.log(cellRef.current.getBoundingClientRect());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
handleResize();
|
|
|
|
window.addEventListener('resize', handleResize);
|
|
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
2020-07-20 17:53:50 +02:00
|
|
|
useEffect(() => {
|
|
|
|
const displayEvents = () => {
|
|
|
|
currentEventsIds.map((eventId: string) => {
|
|
|
|
const event = document.getElementById(eventId);
|
2020-07-30 18:06:27 +02:00
|
|
|
if (event) {
|
|
|
|
event.style.display = "block";
|
|
|
|
}
|
2020-07-20 17:53:50 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
displayEvents();
|
|
|
|
}, [currentEventsIds]);
|
|
|
|
|
|
|
|
const handleClick = (e: React.MouseEvent) => {
|
|
|
|
const cellId = e.currentTarget.id;
|
|
|
|
const column = cellId.slice(0, 1);
|
|
|
|
const row = cellId.slice(1);
|
|
|
|
const eventId = `eventCol${column}eventRow${Math.floor(parseInt(row) / 2)}`;
|
|
|
|
|
|
|
|
setCurrentEventsIds((currentEventsIds) => [...currentEventsIds, eventId]);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
2020-07-30 18:06:27 +02:00
|
|
|
<div className="scheduler" >
|
2020-08-09 19:29:03 +02:00
|
|
|
<div style={theadStyles}>
|
2020-07-20 17:53:50 +02:00
|
|
|
{days.map((day, index) => (
|
|
|
|
<div className="th" key={index}>
|
|
|
|
{day}
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
2020-08-05 23:54:30 +02:00
|
|
|
<div style={tbodyStyles}>
|
2020-08-09 19:29:03 +02:00
|
|
|
{hours.map((hour, indexRow) => (
|
2020-08-05 23:54:30 +02:00
|
|
|
<div style={rowStyles}>{
|
2020-08-09 19:29:03 +02:00
|
|
|
[hour, "", "", "", "", ""].map((value, indexCell) =>
|
|
|
|
indexRow === 0 && indexCell === 1 ? (<div ref={cellRef} style={cellStyles}></div>) : (<div style={cellStyles}>{value}</div>)
|
|
|
|
|
|
|
|
)}</div>
|
2020-08-05 23:54:30 +02:00
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
<div>
|
2020-08-09 19:29:03 +02:00
|
|
|
{[...Array(5)].map((value, index) => (
|
|
|
|
<div style={{ position: "absolute", top: cellTop + 10, left: cellWidth + 5 + cellWidth * index, width: cellWidth * 2 / 3, height: 60, backgroundColor: "lightblue", zIndex: 2 }}>
|
2020-08-05 23:54:30 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
<div>
|
2020-08-09 19:29:03 +02:00
|
|
|
{[...Array(5)].map((value, index) => (
|
|
|
|
<div style={{ position: "absolute", top: cellTop + 80, left: cellWidth + 5 + cellWidth * index, width: cellWidth * 2 / 3, height: 60, backgroundColor: "lightblue", zIndex: 2 }}>
|
2020-08-05 23:54:30 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div> <div>
|
2020-08-09 19:29:03 +02:00
|
|
|
{[...Array(5)].map((value, index) => (
|
|
|
|
<div style={{ position: "absolute", top: cellTop + 150, left: cellWidth + 5 + cellWidth * index, width: cellWidth * 2 / 3, height: 60, backgroundColor: "lightblue", zIndex: 2 }}>
|
2020-08-05 23:54:30 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div> <div>
|
2020-08-09 19:29:03 +02:00
|
|
|
{[...Array(5)].map((value, index) => (
|
|
|
|
<div style={{ position: "absolute", top: cellTop + 230, left: cellWidth + 5 + cellWidth * index, width: cellWidth * 2 / 3, height: 60, backgroundColor: "lightblue", zIndex: 2 }}>
|
2020-08-05 23:54:30 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div> <div>
|
2020-08-09 19:29:03 +02:00
|
|
|
{[...Array(5)].map((value, index) => (
|
|
|
|
<div style={{ position: "absolute", top: cellTop + 300, left: cellWidth + 5 + cellWidth * index, width: cellWidth * 2 / 3, height: 60, backgroundColor: "lightblue", zIndex: 2 }}>
|
2020-08-05 23:54:30 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div> <div>
|
2020-08-09 19:29:03 +02:00
|
|
|
{[...Array(5)].map((value, index) => (
|
|
|
|
<div style={{ position: "absolute", top: cellTop + 370, left: cellWidth + 5 + cellWidth * index, width: cellWidth * 2 / 3, height: 60, backgroundColor: "lightblue", zIndex: 2 }}>
|
2020-08-05 23:54:30 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
|
2020-07-20 17:53:50 +02:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|