frontend/src/components/CourseCard.tsx

110 lines
2.9 KiB
TypeScript
Raw Normal View History

2020-08-17 23:56:34 +02:00
import React, { useContext, MouseEvent } from 'react';
2020-08-12 20:52:53 +02:00
import Collapse from '@material-ui/core/Collapse';
import ExpandIcon from '../assets/expand.png';
import { Course, Group } from '../types/index';
import { coursesContext } from '../contexts/CoursesProvider';
2020-08-17 21:15:26 +02:00
import styled from 'styled-components';
import { makeStyles } from '@material-ui/core/styles';
2020-08-12 20:52:53 +02:00
2020-08-17 21:15:26 +02:00
interface ClassExandIconProps {
isSelected: boolean;
}
2020-08-17 23:56:34 +02:00
const CourseStyled = styled.div`
2020-08-17 21:15:26 +02:00
display: flex;
min-height: 50px;
background-color: rgb(100, 181, 246) !important;
align-items: center;
justify-content: center;
flex-direction: column;
margin-top: 10px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 10px;
cursor: pointer;
align-items: stretch;
`;
2020-08-17 23:56:34 +02:00
const CourseNameStyled = styled.div`
2020-08-17 21:15:26 +02:00
padding-top: 10px;
padding-bottom: 10px;
`;
const ClassGroupStyled = styled.div`
padding-top: 1px;
padding-bottom: 1px;
:hover {
cursor: pointer;
transition: 1s;
background-color: #8bc8fb;
}
`;
const ClassExandIconStyled = styled.img<ClassExandIconProps>`
margin-top: 5px;
width: 20px;
transition: 0.2s;
transform: ${(props) => (props.isSelected ? 'scaleY(-1);' : 'scaleY(1);')};
`;
2020-08-17 21:15:26 +02:00
const useStyles = makeStyles({
expanded: {
maxHeight: '244px',
overflowY: 'auto',
2020-08-17 21:15:26 +02:00
},
'@global': {
'*::-webkit-scrollbar': {
width: '0.4em',
2020-08-17 21:15:26 +02:00
},
'*::-webkit-scrollbar-track': {
'-webkit-box-shadow': 'inset 0 0 6px rgba(1,0,0,0.1)',
2020-08-17 21:15:26 +02:00
},
'*::-webkit-scrollbar-thumb': {
borderRadius: '10px',
2020-08-17 21:15:26 +02:00
backgroundColor: '#d4b851',
outline: '1px solid slategrey',
},
},
2020-08-17 21:15:26 +02:00
});
interface CourseCardProps {
2020-08-17 23:56:34 +02:00
onCardClick: (event: MouseEvent) => void;
course: Course;
id: string;
isSelected: boolean;
}
2020-08-17 23:56:34 +02:00
export const CourseCard = ({ onCardClick, course, id, isSelected }: CourseCardProps) => {
2020-08-17 21:15:26 +02:00
const classes = useStyles();
2020-08-12 20:52:53 +02:00
2020-08-23 16:02:52 +02:00
const { addChoosenGroup, courses, choosenCourses } = useContext(coursesContext)!;
2020-08-17 23:56:34 +02:00
2020-08-23 16:02:52 +02:00
const choosenCoursesIds = choosenCourses.map(({ id }) => id);
const choosenCoursesWithGroups = courses.filter(({ id }) => choosenCoursesIds.includes(id));
const onGroupClick = (group: Group, id: number) => addChoosenGroup(group, id);
2020-08-12 20:52:53 +02:00
return (
2020-08-17 23:56:34 +02:00
<CourseStyled onClick={onCardClick} id={id}>
<CourseNameStyled>{course.name}</CourseNameStyled>
2020-08-17 21:15:26 +02:00
<Collapse className={classes.expanded} in={isSelected} timeout="auto" unmountOnExit>
2020-08-23 16:02:52 +02:00
{choosenCoursesWithGroups.map((course) => (
2020-08-17 23:56:34 +02:00
<div key={id}>
2020-08-23 16:02:52 +02:00
{course.groups!.map((group, index) => (
<ClassGroupStyled key={index} onClick={() => onGroupClick(group, course.id)}>
2020-08-12 20:52:53 +02:00
<p>
{group.time} {group.room} <br></br> {group.lecturer}
2020-08-17 23:56:34 +02:00
</p>
2020-08-17 21:15:26 +02:00
</ClassGroupStyled>
2020-08-12 20:52:53 +02:00
))}
2020-08-17 23:56:34 +02:00
</div>
2020-08-12 20:52:53 +02:00
))}
</Collapse>
<div onClick={onCardClick} id={id}>
2020-08-17 21:15:26 +02:00
<ClassExandIconStyled isSelected={isSelected} alt="expand" src={ExpandIcon} />
2020-08-12 20:52:53 +02:00
</div>
2020-08-17 23:56:34 +02:00
</CourseStyled>
2020-08-12 20:52:53 +02:00
);
2020-08-17 23:56:34 +02:00
};