2020-09-18 23:00:11 +02:00
|
|
|
import React, { useState, createContext, useEffect, ReactNode } from 'react';
|
2020-08-23 17:22:50 +02:00
|
|
|
import { Course, Group, Basket, GroupType } from '../types';
|
2020-08-17 23:56:34 +02:00
|
|
|
import axios from 'axios';
|
2020-08-23 16:02:52 +02:00
|
|
|
|
2020-08-17 23:56:34 +02:00
|
|
|
interface CourseContext {
|
2020-08-12 20:52:53 +02:00
|
|
|
courses: Array<Course>;
|
2020-08-23 16:10:10 +02:00
|
|
|
basket: Array<Basket>;
|
|
|
|
addToBasket: (courses: Basket) => void;
|
2020-08-23 17:22:50 +02:00
|
|
|
addGroup: (group: Group, id: number) => void;
|
2020-09-28 18:36:38 +02:00
|
|
|
deleteFromBasket: (id: number) => void;
|
2020-08-12 20:52:53 +02:00
|
|
|
}
|
2020-08-17 23:56:34 +02:00
|
|
|
export const coursesContext = createContext<CourseContext | null>(null);
|
2020-08-12 20:52:53 +02:00
|
|
|
|
|
|
|
interface CoursesProviderProps {
|
2020-09-18 23:00:11 +02:00
|
|
|
children: ReactNode;
|
2020-08-12 20:52:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export const CoursesProvider = ({ children }: CoursesProviderProps) => {
|
2020-08-23 16:02:52 +02:00
|
|
|
//fetch courses with groups
|
2020-08-12 20:52:53 +02:00
|
|
|
const [courses, setCourses] = useState<Array<Course>>([]);
|
2020-08-23 16:10:10 +02:00
|
|
|
const [basket, setBasket] = useState<Array<Basket>>([]);
|
2020-08-12 20:52:53 +02:00
|
|
|
|
2020-08-23 16:10:10 +02:00
|
|
|
const addToBasket = (course: Basket) => setBasket([...basket, course]);
|
|
|
|
|
2020-09-28 18:36:38 +02:00
|
|
|
const deleteFromBasket = (id: number) => setBasket(basket.filter(course => course.id !== id));
|
|
|
|
|
|
|
|
|
2020-08-23 16:10:10 +02:00
|
|
|
useEffect(() => {
|
2020-08-23 17:22:50 +02:00
|
|
|
console.log('BASKET');
|
2020-08-23 16:10:10 +02:00
|
|
|
console.log(basket);
|
|
|
|
}, [basket]);
|
|
|
|
|
2020-08-23 17:22:50 +02:00
|
|
|
//immutability
|
2020-08-23 16:02:52 +02:00
|
|
|
|
2020-08-23 17:22:50 +02:00
|
|
|
const addGroup = (choosenGroup: Group, id: number) => {
|
|
|
|
const basketCourse = basket.filter((course) => course.id === id)[0];
|
2020-08-23 16:02:52 +02:00
|
|
|
const type = choosenGroup.type;
|
2020-08-23 17:22:50 +02:00
|
|
|
if (type === GroupType.CLASS) {
|
|
|
|
setBasket(
|
|
|
|
basket.map((basket) => (basket.id === basketCourse.id ? { ...basket, classes: choosenGroup } : basket)),
|
|
|
|
);
|
|
|
|
} else if (type === GroupType.LECTURE) {
|
|
|
|
setBasket(
|
|
|
|
basket.map((basket) => (basket.id === basketCourse.id ? { ...basket, lecture: choosenGroup } : basket)),
|
|
|
|
);
|
2020-08-23 16:02:52 +02:00
|
|
|
}
|
2020-08-12 20:52:53 +02:00
|
|
|
};
|
|
|
|
|
2020-08-17 23:56:34 +02:00
|
|
|
useEffect(() => {
|
|
|
|
const fetchData = async () => {
|
2020-08-26 18:42:29 +02:00
|
|
|
const { data: courses } = await axios.get(`${process.env.REACT_APP_API_URL}/getCoursesWithGroups`);
|
|
|
|
courses.sort((a: Course, b: Course) => (a.name > b.name ? 1 : -1));
|
2020-08-23 16:02:52 +02:00
|
|
|
setCourses(courses);
|
2020-08-17 23:56:34 +02:00
|
|
|
};
|
|
|
|
fetchData();
|
|
|
|
}, []);
|
|
|
|
|
2020-08-12 20:52:53 +02:00
|
|
|
return (
|
2020-09-28 18:36:38 +02:00
|
|
|
<coursesContext.Provider value={{ courses, basket, addToBasket, addGroup, deleteFromBasket }}>{children}</coursesContext.Provider>
|
2020-08-12 20:52:53 +02:00
|
|
|
);
|
|
|
|
};
|