forked from aitcbootcamp/Lessons-schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
newClasses.js
160 lines (115 loc) · 4.08 KB
/
newClasses.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
class Person {
constructor(name, id, subjects=[]){
this.name = name;
this.id = id;
this.groupIDs = [];
this.subjects = subjects;
}
getDateTimes(groups){
let dateTimes = [];
for (let g of this.groupIDs){
for (let group of groups){
if(g == group.id){
dateTimes.push(group.dateTime);
}
}
}
return dateTimes;
}
getChosenSubjects(groups){
let chosenSubjects = [];
for (let g of this.groupIDs){
for(let group of groups){
if(g == group.id && !chosenSubjects.includes(group.subject)){
chosenSubjects.push(group.subject);
}
}
}
return chosenSubjects;
}
isFree(time, groups){
if(this.getDateTimes(groups).includes(time)){
return false;
} else {
return true;
}
}
}
class Student extends Person{
constructor(name, id, subjects, type) {
super(name, id, subjects);
this.type = type;
}
}
// date და time-ს ცალკე არანაირი აზრი არ აქვს და გავაერთიანე მაინც -_-
class Teacher extends Person{
constructor(name, id, subjects) {
super(name, id, subjects);
}
}
class Group {
constructor(id, teacherID, subject, room, dateTime, memberIDs, type) {
this.id = id;
this.teacherID = teacherID;
this.subject = subject;
this.room = room;
this.dateTime = dateTime;
this.memberIDs = memberIDs;
this.type = type;
}
//დარწმუნებული არ ვარ რო ეს მეთოდი კარგი იდეაა, მარა იყოს ასე
isFull(){
if(this.memberIDs.length>=7){
return true;
} else {
return false;
}
}
}
groups = [];
students = [];
teachers = [];
let nathaniel = new Student('ნათანიელ სქაი', '1', [], [],'აბიტურიენტი');
let annie = new Student('ანი ჩანი', '2', [],[], 'საატესტატო');
let group1 = new Group(1, 'მაია', 'ქართული', '203', 'ორშაბათი, 13:00', [], 'საატესტატო');
groups.push(group1);
let group2 = new Group(2, 'მაგდა', 'მათემატიკა', '204', 'ორშაბათი, 15:00', [], 'საატესტატო');
groups.push(group2);
function addStudentToGroup(student, group){
if(group.memberIDs.includes(student.id)){
console.log('მოსწავლე უკვე დამატებულია');
} else if(!student.isFree(group.dateTime, groups)){
console.log('მოსწავლე დაკავებულია მოცემულ დროს');
} else if(group.isFull()){
console.log('ჯგუფში ადგილები უკვე შევსებულია')
} else {
group.memberIDs.push(student.id);
student.groupIDs.push(group.id);
}
}
function deleteStudentFromGroup(student, group){
let i = group.memberIDs.indexOf(student.id);
group.memberIDs.splice(i,1);
let j = student.groupIDs.indexOf(group.id);
student.groupIDs.splice(j,1);
}
addStudentToGroup(nathaniel, group1);
addStudentToGroup(nathaniel, group2);
addStudentToGroup(annie, group1);
deleteStudentFromGroup(annie, group1);
console.log(annie.groupIDs);
console.log(nathaniel.getDateTimes(groups));
console.log(nathaniel.groupIDs);
// console.log(nathaniel.getDateTimes(groups));
// console.log(nathaniel.getChosenSubjects(groups));
// //მგონია ეს კლასიც გამოგვადგება, თუ არ დაგვჭირდა, წავშლით ^_^
// class Subject {
// constructor(id, name, teachers = [], students = [], dateTimes) {
// this.id = id;
// this.name = name;
// this.teachers = teachers;
// this.students = students;
// this.dateTimes = dateTimes;
// }
// }
// groupIDs = [1 , 2];