frontend/src/components/RightBar/index.tsx

46 lines
1.3 KiB
TypeScript
Raw Normal View History

2020-06-30 22:09:13 +02:00
import React, { useState, useContext } from "react";
2020-06-07 15:57:51 +02:00
import "./index.scss";
2020-07-24 18:59:45 +02:00
import { Lecture } from "../../businesslogic/types/lecture";
2020-06-17 19:53:30 +02:00
import LectureCard from "./LectureCard";
2020-06-30 22:09:13 +02:00
import { LecturesContext } from "../../businesslogic/LecturesProvider";
2020-06-09 20:07:54 +02:00
2020-06-14 14:24:49 +02:00
interface RightBarProps {
2020-07-24 18:59:45 +02:00
onGroupMouseOver: (id: string, name: string) => void;
lectures: Array<Lecture>;
2020-06-14 14:24:49 +02:00
}
2020-06-07 15:57:51 +02:00
2020-07-24 18:59:45 +02:00
export default function RightBar({
lectures,
onGroupMouseOver,
}: RightBarProps) {
const [selectedCardId, setSelectedCardId] = useState<string | null>(null);
2020-06-07 15:57:51 +02:00
2020-07-24 18:59:45 +02:00
const lecturesContext = useContext(LecturesContext);
2020-06-30 22:09:13 +02:00
2020-07-24 18:59:45 +02:00
const onCardClick = (e: React.MouseEvent) => {
const target = e.currentTarget as HTMLElement;
selectedCardId === target.id
? setSelectedCardId(null)
: setSelectedCardId(target.id);
};
2020-06-30 22:09:13 +02:00
2020-07-24 18:59:45 +02:00
return (
<div className="right-bar">
<div className="right-bar__text">
Hubert Wrzesiński<br></br>
Semestr zimowy 2020/2021
</div>
{lecturesContext.lectures.map((lecture, index) => (
<LectureCard
lecture={lecture}
key={index}
id={index.toString()}
onGroupMouseOver={onGroupMouseOver}
onCardClick={onCardClick}
isSelected={selectedCardId === index.toString()}
/>
))}
</div>
);
2020-06-07 15:57:51 +02:00
}