-
Notifications
You must be signed in to change notification settings - Fork 4
/
main2.js
293 lines (238 loc) · 7.27 KB
/
main2.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
var ruleList_final = [];
var ruleList_raw = [];
var baseurl = 'http://rms.tomtomgroup.com/';
var skiplist = [];
var teacherList=[];
var allClasses = [];
var url = window.location.href;
console.log("test");
var captured = /teacher=([^&]+)/.exec(url)[1]; // Value is in [1] ('384' in our case)
var result = captured ? captured :'my Default Value' ;
var Teachers= ["Poublon", "Bremel", "Vonada", "Smith", "McGovern", "Kent"];
var inList= false ;
for (var i = 0; i < Teachers.length; i++){
// console.log("Teacher: "+captured);
// console.log(Teachers[i]);
if (Teachers[i]==captured){
console.log("Teacher: "+captured);
inList =true;
break;
}
}
if (!inList){
console.log("Teacher is not in List");
}
$.get('Classdata.txt', function(data) {
processData(data);
}, 'text');
function findTeacher(classList,teacherName){
var teacherList=[];
for(var i=0; i<classList.length; i++){
if(classList[i][0]==teacherName){
teacherList[teacherList.length]=classList[i];
}
}
return teacherList;
}
function findBlock(sortedClassList,block){
for(var i=0; i<sortedClassList.length; i++){
if(sortedClassList[i][1]==block){
return sortedClassList[i];
}
}
}
function processData(textFile){
var allTextLines = textFile.split(/\r\n|\n/);
for (var i = 0; i <allTextLines.length-1 ; i++) {
var entries = allTextLines[i].split(', ');
allClasses[allClasses.length]=[entries[0],entries[1],entries.slice(2,entries.length)];
}
teacherList=(findTeacher(allClasses, captured));
}
var theGroupSize = 1;
var workingClass=[];
$(document).ready(function() {
$("#titleText").text(captured+ " Randomizer");
$('#blockSelector').on('change', function() {
// populate textarea with premade student lists
switch (this.value) {
case "a":
var workingClass= findBlock(teacherList,"A");
break;
case "b":
var workingClass= findBlock(teacherList,"B");
break;
case "c":
var workingClass= findBlock(teacherList,"C");
break;
case "d":
var workingClass= findBlock(teacherList,"D");
break;
case "e":
var workingClass= findBlock(teacherList,"E");
break;
case "f":
var workingClass= findBlock(teacherList,"F");
break;
case "g":
var workingClass= findBlock(teacherList,"G");
break;
case "h":
var workingClass= findBlock(teacherList,"H");
break;
}
console.log(workingClass);
var workingClass2= workingClass.slice(2,(workingClass.length));
console.log(workingClass2);
$("#allStudents").text(workingClass2.toString());
})
$('#sizeSelector').on('change', function() {
// grab group size
switch (this.value) {
case "2":
theGroupSize = 2;
break;
case "3":
theGroupSize = 3;
break;
case "4":
theGroupSize = 4;
break;
case "5":
theGroupSize = 5;
break;
}
})
createGroups();
// printRules();
$("#csv_filename").val('degradation_export.csv');
$("search").val('');
$(window).resize(function() {
repositionBody()
});
$(window).load(function() {
repositionBody()
});
}
);
function createGroups() {
// get student list from textarea
var rClass = $('#allStudents').val().split(',');
// create random number array
var rNums = [];
for (var i = 0; i < rClass.length; i++) {
rNums[i] = Math.random();
}
console.log(rNums);
// sort the student list with numbers array
var temp1, temp2;
for (var i = 0; i < rClass.length; i++) {
for (var j = 0; j < rClass.length; j++) {
if (rNums[i] > rNums[j]) {
temp1 = rNums[j];
rNums[j] = rNums[i];
rNums[i] = temp1;
temp2 = rClass[j];
rClass[j] = rClass[i];
rClass[i] = temp2;
}
}
}
// figure out the vital stats
var theStudentCount = rClass.length;
var theGroupCount = Math.floor(theStudentCount / theGroupSize) + 1;
var maxGroupSize = theGroupSize + 1;
console.log("students: " + theStudentCount);
console.log("desired group size: " + theGroupSize);
console.log("max group size: " + maxGroupSize);
console.log("group count: " + theGroupCount);
// create empty groups of max size
var theGroups = new Array(theGroupCount);
for (var i = 0; i < theGroupCount; i++) {
theGroups[i] = new Array(maxGroupSize);
}
console.log(theGroups);
// the students can be distributed evenly
if (theStudentCount % theGroupSize == 0) {
console.log("***easy mode***")
for (var j = 0; j < theGroupCount; j++) {
for (var k = 0; k < theGroupSize; k++) {
theGroups[j][k] = rClass[j * theGroupSize + k];
}
}
}
// not sure what's going on
else if (theStudentCount % theGroupSize > theStudentCount / theGroupSize) {
alert("OH NO - Select a smaller group size - RIP");
}
// uneven distribution
else {
console.log("***spillover mode***")
for (var i = 0; i < theStudentCount; i++) {
theGroups[i % theGroupCount][Math.floor(i / theGroupCount)] = rClass[i];
}
console.log(theGroups);
// for (var k = 0; k < theGroupSize; k++) {
// for (var j = 0; j < theGroupCount; j++) {
// theGroups[j][k] = rClass[j * theGroupSize + k];
// }
//
// }
// console.log("***spillover mode***")
// for (var j = 0; j < (theStudentCount / theGroupSize); j++) {
// for (var k = 0; k < theGroupSize; k++) {
// theGroups[j][k] = rClass[j * theGroupSize + k];
// }
//
// }
}
console.log(theGroups);
var t = $('#ruleTable').DataTable({
paging: false,
ordering: false,
autoWidth: false,
retrieve: true,
language: {
"info": "Showing _TOTAL_ rules",
"infoFiltered": "(filtered from full set of _MAX_ rules)",
"emptyTable": " "
},
order: [
[0, "asc"]
],
dom: 'lrtp'
});
t.clear();
$.each(theGroups, function(index, item) {
console.log('rule:', item);
if (item[0])
{
t.row.add([
index + 1,
stringify(item)
]);
}
})
t.draw();
}
function stringify(lst) {
var cleaned = new Array();
for (var i = 0; i < lst.length; i++) {
if (lst[i]) {
cleaned.push(lst[i]);
}
}
var s = "";
for (var i = 0; i < cleaned.length - 1; i++) {
var name = cleaned[i];
s += cleaned[i].trim() + ", ";
}
s += cleaned[cleaned.length - 1];
return s;
}
function repositionBody() {
$('body').css('padding-top', parseInt($('#main-navbar').css("height")) + 10);
}
function displayFailure() {
alert("There's a problem. Please send an email to [email protected]");
}