2020-09-18 23:00:11 +02:00
|
|
|
import React, { useContext, useEffect, useState, MouseEvent } from 'react';
|
2020-08-17 22:05:13 +02:00
|
|
|
import { SchedulerRow } from './SchedulerRow';
|
|
|
|
import { coursesContext } from '../contexts/CoursesProvider';
|
2020-08-23 17:22:50 +02:00
|
|
|
import { Group, Basket } from '../types';
|
2020-08-09 20:44:35 +02:00
|
|
|
|
|
|
|
interface SchedulerEventsProps {
|
|
|
|
cellTop: number;
|
|
|
|
cellWidth: number;
|
2020-08-29 18:52:03 +02:00
|
|
|
cellHeight: number;
|
2020-08-09 20:44:35 +02:00
|
|
|
}
|
|
|
|
|
2020-09-19 00:17:23 +02:00
|
|
|
export const SchedulerEvents = ({ cellTop, cellWidth, cellHeight }: SchedulerEventsProps) => {
|
2020-08-23 17:22:50 +02:00
|
|
|
const { basket } = useContext(coursesContext)!;
|
2020-11-13 23:05:10 +01:00
|
|
|
console.log(`values: cellTop: ${cellTop}, cellWidth: ${cellWidth}, cellHeight: ${cellHeight}`);
|
2020-08-18 00:21:21 +02:00
|
|
|
const [choosenGroupsMappedToEvents, setChoosenGroupsMappedToEvents] = useState<any>([]);
|
2020-08-09 21:41:52 +02:00
|
|
|
|
2020-11-19 21:57:34 +01:00
|
|
|
const groupTimeToEventRowMapping: { [time: string]: number } = {
|
2020-08-20 18:14:28 +02:00
|
|
|
'8.15': 0,
|
2020-08-12 04:13:14 +02:00
|
|
|
'10.00': 1,
|
|
|
|
'11.45': 2,
|
|
|
|
'13.45': 3,
|
|
|
|
'15.30': 4,
|
|
|
|
'17.15': 5,
|
2020-11-20 20:39:36 +01:00
|
|
|
'18.45': 6,
|
2020-08-12 04:13:14 +02:00
|
|
|
};
|
2020-08-09 21:41:52 +02:00
|
|
|
|
2020-11-20 20:39:36 +01:00
|
|
|
|
|
|
|
const createClassTime = (startTime:string) => {
|
|
|
|
const startTimeMapped = groupTimeToEventRowMapping[startTime];
|
|
|
|
const endTime = Object.keys(groupTimeToEventRowMapping).find(key => groupTimeToEventRowMapping[key] === startTimeMapped + 1);
|
|
|
|
|
|
|
|
return [startTime, endTime]
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-08-09 21:41:52 +02:00
|
|
|
useEffect(() => {
|
2020-08-23 17:22:50 +02:00
|
|
|
function mapGroupTimeToEventRow(basket: Array<Basket>) {
|
2020-09-19 00:17:23 +02:00
|
|
|
const classes = basket.map(({ classes, name }) => ({ ...classes, name })) as Array<Group & { name: string }>;
|
|
|
|
const lectures = basket.map(({ lecture, name }) => ({ ...lecture, name })) as Array<Group & { name: string }>;
|
2020-08-26 18:42:29 +02:00
|
|
|
const merged = [...classes, ...lectures];
|
2020-08-23 17:22:50 +02:00
|
|
|
|
2020-09-19 00:17:23 +02:00
|
|
|
//deleted if statement, maybe it is needed
|
2020-11-13 23:05:10 +01:00
|
|
|
const groupsMapped = merged.map(({ id, day, lecturer, room, time, name, type }) => ({
|
2020-09-19 00:17:23 +02:00
|
|
|
id,
|
2020-10-08 20:21:52 +02:00
|
|
|
day,
|
2020-09-19 00:17:23 +02:00
|
|
|
lecturer,
|
|
|
|
room,
|
|
|
|
eventRow: groupTimeToEventRowMapping[time],
|
2020-11-20 20:39:36 +01:00
|
|
|
time: createClassTime(time),
|
2020-09-19 00:17:23 +02:00
|
|
|
name,
|
2020-09-28 20:16:54 +02:00
|
|
|
type,
|
2020-09-19 00:17:23 +02:00
|
|
|
}));
|
|
|
|
setChoosenGroupsMappedToEvents(groupsMapped);
|
2020-08-17 23:56:34 +02:00
|
|
|
}
|
2020-08-23 17:22:50 +02:00
|
|
|
mapGroupTimeToEventRow(basket);
|
|
|
|
}, [basket]);
|
2020-08-09 21:41:52 +02:00
|
|
|
|
2020-08-09 20:44:35 +02:00
|
|
|
return (
|
|
|
|
<div>
|
2020-08-12 04:13:14 +02:00
|
|
|
{[...Array(6)].map((_, index) => (
|
|
|
|
<SchedulerRow
|
|
|
|
key={index}
|
2020-09-19 00:17:23 +02:00
|
|
|
groups={choosenGroupsMappedToEvents.filter((group: any) => group.eventRow === index)}
|
2020-08-12 04:13:14 +02:00
|
|
|
indexRow={index}
|
2020-08-18 18:32:26 +02:00
|
|
|
cellTop={
|
2020-08-29 18:52:03 +02:00
|
|
|
index === 0
|
2020-11-19 21:57:34 +01:00
|
|
|
? cellHeight / 2
|
2020-08-29 18:52:03 +02:00
|
|
|
: index === 1
|
2020-11-19 21:57:34 +01:00
|
|
|
? cellHeight * 4
|
|
|
|
: index === 2
|
|
|
|
? cellHeight * 7.5
|
|
|
|
: index === 3
|
|
|
|
? cellHeight * 11.5
|
|
|
|
: index === 4
|
|
|
|
? cellHeight * 15
|
|
|
|
: index === 5
|
|
|
|
? cellHeight * 18.5
|
|
|
|
: 0
|
2020-08-18 18:32:26 +02:00
|
|
|
}
|
2020-08-12 04:13:14 +02:00
|
|
|
cellWidth={cellWidth}
|
2020-08-29 18:52:03 +02:00
|
|
|
cellHeight={cellHeight}
|
2020-08-12 04:13:14 +02:00
|
|
|
/>
|
|
|
|
))}
|
2020-08-09 20:44:35 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|