date time place
This commit is contained in:
89
content.js
89
content.js
@@ -8,6 +8,10 @@ var profurl;
|
|||||||
var department;
|
var department;
|
||||||
var course_nbr;
|
var course_nbr;
|
||||||
var description;
|
var description;
|
||||||
|
const days = new Map([["M" ,"Monday"],
|
||||||
|
["T", "Tuesday"], ["W", "Wednesday"],["TH" ,"Thursday"],
|
||||||
|
["F", "Friday"]]);
|
||||||
|
|
||||||
$(document).ready( function() {
|
$(document).ready( function() {
|
||||||
loadDataBase();
|
loadDataBase();
|
||||||
//make heading
|
//make heading
|
||||||
@@ -22,7 +26,7 @@ $(document).ready( function() {
|
|||||||
} else if($(this).has('th').length == 0){
|
} else if($(this).has('th').length == 0){
|
||||||
var rating;
|
var rating;
|
||||||
var profname = $(this).find('td[data-th="Instructor"]').text() + "";
|
var profname = $(this).find('td[data-th="Instructor"]').text() + "";
|
||||||
console.log(profname);
|
//console.log(profname);
|
||||||
if(profname == ""){
|
if(profname == ""){
|
||||||
//console.log("No Professor");
|
//console.log("No Professor");
|
||||||
rating = "No Prof :(";
|
rating = "No Prof :(";
|
||||||
@@ -51,6 +55,7 @@ $(document).ready( function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function getCourseInfo(row){
|
function getCourseInfo(row){
|
||||||
|
$(".dateTimePlace").remove();
|
||||||
$('table').find('tr').each(function(){
|
$('table').find('tr').each(function(){
|
||||||
if($(this).find('td').hasClass("course_header")){
|
if($(this).find('td').hasClass("course_header")){
|
||||||
coursename = $(this).find('td').text() + "";
|
coursename = $(this).find('td').text() + "";
|
||||||
@@ -62,10 +67,14 @@ function getCourseInfo(row){
|
|||||||
if(profname.indexOf(" ") == 0){
|
if(profname.indexOf(" ") == 0){
|
||||||
profname = profname.substring(1);
|
profname = profname.substring(1);
|
||||||
}
|
}
|
||||||
//COME BACK AND FINISH
|
var numlines = $(this).find('td[data-th="Days"]>span').length;
|
||||||
$(this).find('td[data-th="Days"] >span').each(function(){
|
for(var i=0; i<numlines;i++){
|
||||||
console.log($(this).text());
|
var date = $(this).find('td[data-th="Days"]>span:eq('+i+')').text();
|
||||||
});
|
var time = $(this).find('td[data-th="Hour"]>span:eq('+i+')').text();
|
||||||
|
var place = $(this).find('td[data-th="Room"]>span:eq('+i+')').text();
|
||||||
|
$(".topbuttons").before('<h2 class="dateTimePlace">'+makeLine(date,time,place)+'</th>');
|
||||||
|
// makeLine(date,time,place);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -75,21 +84,65 @@ function getCourseInfo(row){
|
|||||||
profinit = profinit.substring(0,1);
|
profinit = profinit.substring(0,1);
|
||||||
profurl = document.URL;
|
profurl = document.URL;
|
||||||
}
|
}
|
||||||
console.log(coursename);
|
//console.log(coursename);
|
||||||
getDescription();
|
getDescription();
|
||||||
department = coursename.substring(0,coursename.search(/\d/)-2);
|
department = coursename.substring(0,coursename.search(/\d/)-2);
|
||||||
//console.log(department);
|
//console.log(department);
|
||||||
course_nbr = coursename.substring(coursename.search(/\d/),coursename.indexOf(" ",coursename.search(/\d/)));
|
course_nbr = coursename.substring(coursename.search(/\d/),coursename.indexOf(" ",coursename.search(/\d/)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//MWF
|
||||||
|
//TTH
|
||||||
|
//MTHF
|
||||||
|
function makeLine(date, time, place){
|
||||||
|
var arr = new Array();
|
||||||
|
var output = "";
|
||||||
|
for(var i = 0; i<date.length;i++){
|
||||||
|
var letter = date.charAt(i);
|
||||||
|
var day = "";
|
||||||
|
if(letter == "T" && i <date.length-1 && date.charAt(i+1) == "H"){
|
||||||
|
arr.push(days.get("TH"));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if(letter != "H"){
|
||||||
|
arr.push(days.get(letter));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(arr.length > 2){
|
||||||
|
for(var i = 0; i<arr.length;i++){
|
||||||
|
if(i < arr.length-1){
|
||||||
|
output+=arr[i]+", "
|
||||||
|
}
|
||||||
|
if(i == arr.length-2){
|
||||||
|
output+= "and ";
|
||||||
|
}
|
||||||
|
if(i == arr.length-1){
|
||||||
|
output+=arr[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(arr.length == 2){
|
||||||
|
output = arr[0]+" and "+arr[1];
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
output+=arr[0];
|
||||||
|
}
|
||||||
|
var building = place.substring(0,place.search(/\d/)-1);
|
||||||
|
return output + " at "+time.replace(/\./g,'').replace(/\-/g,' to ')+" in "+"<a style='font-size:medium' href='"+"https://maps.utexas.edu/buildings/UTM/"+building+"''>"+place.substring(0,place.search(/\d/)-1)+"</>";
|
||||||
|
}
|
||||||
|
|
||||||
|
function order(){
|
||||||
|
|
||||||
|
}
|
||||||
function getDistribution(){
|
function getDistribution(){
|
||||||
var query = "select * from agg";
|
var query = "select * from agg";
|
||||||
query += " where dept like '%"+department+"%'";
|
query += " where dept like '%"+department+"%'";
|
||||||
query += " and prof like '%"+profname+"%'";
|
query += " and prof like '%"+profname+"%'";
|
||||||
query += " and course_nbr like '%"+course_nbr+"%'";
|
query += " and course_nbr like '%"+course_nbr+"%'";
|
||||||
console.log(query);
|
// console.log(query);
|
||||||
var res = grades.exec(query)[0];
|
var res = grades.exec(query)[0];
|
||||||
console.log(res);
|
// console.log(res);
|
||||||
var output = "";
|
var output = "";
|
||||||
openDialog(department,coursename,"aggregate",profname,res);
|
openDialog(department,coursename,"aggregate",profname,res);
|
||||||
}
|
}
|
||||||
@@ -118,7 +171,7 @@ function openDialog(dep,cls,sem,professor,res){
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(".profname").text("with "+ name);
|
$(".profname").text("with "+ name);
|
||||||
console.log(coursename);
|
//console.log(coursename);
|
||||||
span.onclick = function() {
|
span.onclick = function() {
|
||||||
modal.style.display = "none";
|
modal.style.display = "none";
|
||||||
}
|
}
|
||||||
@@ -192,8 +245,22 @@ function openDialog(dep,cls,sem,professor,res){
|
|||||||
data: [{y: data[6], color: '#4CAF50'}, {y: data[7], color: '#8BC34A'}, {y: data[8], color: '#CDDC39'}, {y: data[9], color: '#FFEB3B'}, {y: data[10], color: '#FFC107'}, {y: data[11], color: '#FFA000'}, {y: data[12], color: '#F57C00'}, {y: data[13], color: '#FF5722'}, {y: data[14], color: '#FF5252'}, {y: data[15], color: '#E64A19'}, {y: data[16], color: '#F44336'}, {y: data[17], color: '#D32F2F'}]
|
data: [{y: data[6], color: '#4CAF50'}, {y: data[7], color: '#8BC34A'}, {y: data[8], color: '#CDDC39'}, {y: data[9], color: '#FFEB3B'}, {y: data[10], color: '#FFC107'}, {y: data[11], color: '#FFA000'}, {y: data[12], color: '#F57C00'}, {y: data[13], color: '#FF5722'}, {y: data[14], color: '#FF5252'}, {y: data[15], color: '#E64A19'}, {y: data[16], color: '#F44336'}, {y: data[17], color: '#D32F2F'}]
|
||||||
|
|
||||||
}]
|
}]
|
||||||
|
}, function(chart) { // on complete
|
||||||
|
if(data.length == 0){
|
||||||
|
chart.renderer.text('Could not find data for this Professor teaching this Course', 100, 120)
|
||||||
|
.css({
|
||||||
|
fontSize: '20px',
|
||||||
|
align:'center',
|
||||||
|
width: '300px',
|
||||||
|
left:'160px'
|
||||||
|
})
|
||||||
|
.add();
|
||||||
|
$.each(chart.series, function(i, ser) {
|
||||||
|
ser.hide();
|
||||||
});
|
});
|
||||||
// When the user clicks anywhere outside of the modal, close it
|
}
|
||||||
|
|
||||||
|
}); // When the user clicks anywhere outside of the modal, close it
|
||||||
window.onclick = function(event) {
|
window.onclick = function(event) {
|
||||||
if (event.target == modal) {
|
if (event.target == modal) {
|
||||||
modal.style.display = "none";
|
modal.style.display = "none";
|
||||||
@@ -230,7 +297,7 @@ function getDescription(){
|
|||||||
sentence = "<span style='font-style: italic;'>"+sentence+"</span>";
|
sentence = "<span style='font-style: italic;'>"+sentence+"</span>";
|
||||||
}
|
}
|
||||||
else if(sentence.indexOf("Restricted to") == 0){
|
else if(sentence.indexOf("Restricted to") == 0){
|
||||||
console.log(sentence);
|
//console.log(sentence);
|
||||||
sentence = "<span style='color:red;'>"+sentence+"</span>";
|
sentence = "<span style='color:red;'>"+sentence+"</span>";
|
||||||
}
|
}
|
||||||
output+=sentence+"<br></>";
|
output+=sentence+"<br></>";
|
||||||
|
|||||||
@@ -54,6 +54,12 @@
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dateTimePlace {
|
||||||
|
margin-left: 5px;
|
||||||
|
font-size: smaller;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
#chart {
|
#chart {
|
||||||
min-width: auto;
|
min-width: auto;
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
|
|||||||
11
todo
11
todo
@@ -1,7 +1,4 @@
|
|||||||
TODO:
|
TODO:
|
||||||
- show time's
|
|
||||||
- location w/ map
|
|
||||||
- no Data (prof hasn't taught that class before)
|
|
||||||
- undefined prof, show all possible profs from past?
|
- undefined prof, show all possible profs from past?
|
||||||
DIFFERENT IF NO PROF
|
DIFFERENT IF NO PROF
|
||||||
- Saving courses
|
- Saving courses
|
||||||
@@ -11,7 +8,6 @@ TODO:
|
|||||||
- waitlist/closed/open colors
|
- waitlist/closed/open colors
|
||||||
- underline Courses maybe? click to go to using the planner link thing
|
- underline Courses maybe? click to go to using the planner link thing
|
||||||
- Rate my prof link scraping?
|
- Rate my prof link scraping?
|
||||||
|
|
||||||
CLEAN UP:
|
CLEAN UP:
|
||||||
Everything lmao
|
Everything lmao
|
||||||
|
|
||||||
@@ -26,9 +22,14 @@ IN-PROGRESS:
|
|||||||
FIXED/DONE since 7/7/18:
|
FIXED/DONE since 7/7/18:
|
||||||
- Scrolling Modal :|
|
- Scrolling Modal :|
|
||||||
- Description
|
- Description
|
||||||
|
- no Data (prof hasn't taught that class before)
|
||||||
- past syllabi
|
- past syllabi
|
||||||
- Bolding description (ie Prerequisite, etc)
|
- Bolding description (ie Prerequisite, etc)
|
||||||
- RATE MY PROFESSOR LINK LOL
|
- RATE MY PROFESSOR LINK LOL
|
||||||
- Works on both pages, and is more resilient if the layout changes
|
- Works on both pages, and is more resilient if the layout changes
|
||||||
|
- show time's
|
||||||
|
- MANAYATHU SASI BROKEN BECAUSE OF REMOVING SPACES
|
||||||
|
- location w/ map
|
||||||
|
|
||||||
https://maps.utexas.edu/buildings/UTM/WAG/
|
|
||||||
|
<h2 class="profname" style="font-size: smaller;padding-left: 5px;margin: 0px 0px;">Monday and Wednesday, 3:00 PM - 4:00 PM, at GDC</h2>
|
||||||
Reference in New Issue
Block a user