Files
@ 1cb6f6105b45
Branch filter:
Location: SlatePermutate/scripts/scheduleInput.js
1cb6f6105b45
15.1 KiB
text/javascript
Use the Affero General Public License, as agreed upon by Ethan Zonca, Nathan Gelderloos, and Nathan Phillip Brink (myself).
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 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | /*
* Copyright 2010 Nathan Gelderloos, Ethan Zonca, Nathan Phillip Brink
*
* This file is part of SlatePermutate.
*
* SlatePermutate is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SlatePermutate is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with SlatePermutate. If not, see <http://www.gnu.org/licenses/>.
*/
//--------------------------------------------------
// General Notes
//--------------------------------------------------
var classNum = 0;
var sectionsOfClass = new Array();
//--------------------------------------------------
// Validation Functions
//--------------------------------------------------
//--------------------------------------------------
// Default Error Message
//--------------------------------------------------
jQuery.each(jQuery.validator.messages, function(i) {
jQuery.validator.messages[i] = "<p class=\"error\">Please fill the field</p>";
});
//--------------------------------------------------
// Time Selection Validation
//--------------------------------------------------
jQuery.validator.addMethod(
"selectNone",
function(value, element) {
if (element.value == "none") {
return false;
}
else return true;
},
"<p class=\"error\">Please select a time</p>"
);
//--------------------------------------------------
// Days of Week validation
//--------------------------------------------------
jQuery.validator.addMethod(
"daysRequired",
function(value, element) {
var checkedCount = 0;
jQuery(element).parent().parent().children().children('.daysRequired:checked').each( function() {
checkedCount++;
});
if (checkedCount == 0) {
return false;
}
else return true;
},
"<p class=\"error\">Select a day!</p>"
);
/**
* Class name validation: only require a class name if it has at least
* one section. Backend throws out empty classes and it's more
* convenient if we can let the user have one extra, empty class. This
* is because we automatically add a new class each time we do an
* autofill to make the life of the user easier and less confusing.
*/
jQuery.validator.addMethod('classRequired',
function(value, element)
{
if (value.length)
return true;
var css_classes = jQuery(element).attr('class');
var cnum_pos = css_classes.indexOf('className');
var cnum = css_classes.substr(cnum_pos + 'className'.length, css_classes.indexOf(' ', cnum_pos) - cnum_pos - 'className'.length) * 1;
if (cnum < 0 || cnum > classNum)
alert('JS error: ' + cnum + ' is an invalid class number.');
/*
* ignore the class with no
* sections. This only works when the
* class was added and the user _never_
* clicked the Add Section button. Once
* the user clicks that button, he has
* to delete the class because of how
* our numbering works.
*/
if (!sectionsOfClass[cnum])
return true;
return false;
},
'<p class="error">Enter Class Name.</p>'
);
//--------------------------------------------------
// Add validation rules
//--------------------------------------------------
jQuery.validator.addClassRules("selectRequired", {
selectNone: true
});
jQuery.validator.addClassRules("daysRequired", {
daysRequired: true
});
jQuery.validator.addClassRules('classRequired', { classRequired: true });
//--------------------------------------------------
// General Input Functions
//--------------------------------------------------
/**
* \brief
* Returns the common inputs for each new section.
*/
function genSectionHtml(cnum)
{
genSectionHtml_n(cnum, '', '', '', '', '', '', '');
}
/* @TODO: This should select & set items based on args, if the args != '' */
function genSectionHtml_n(cnum, name, synonym, stime, etime, days, prof, location)
{
var snum = sectionsOfClass[cnum];
var result = '<tr class="section class' + cnum + '"><td class="none"></td>';
result = result + '<td class="sectionIdentifier center"><input type="hidden" name="postData[' + cnum + '][' + snum + '][synonym]" value="' + synonym + '" /><input type="text" size="1" class="required" name="postData[' + cnum + '][' + snum + '][letter]" value="' + name + '" /></td>';
result = result + '<td class="professor center"><input type="text" size="10" class="" name="postData[' + cnum + ']['+ snum + '][professor]" value="' + prof + '" /></td>';
result = result + '<td><select class="selectRequired" name="postData[' + cnum + '][' + snum + '][start]"><option value="none"></option>'
+ genOptionHtml("0700", "7:00 am", stime) + genOptionHtml("0730", "7:30 am", stime)
+ genOptionHtml("0800", "8:00 am", stime) + genOptionHtml("0830", "8:30 am", stime)
+ genOptionHtml("0900", "9:00 am", stime) + genOptionHtml("0930", "9:30 am", stime)
+ genOptionHtml("1000", "10:00 am", stime) + genOptionHtml("1030", "10:30 am", stime)
+ genOptionHtml("1100", "11:00 am", stime) + genOptionHtml("1130", "11:30 am", stime)
+ genOptionHtml("1200", "12:00 pm", stime) + genOptionHtml("1230", "12:30 pm", stime)
+ genOptionHtml("1300", "1:00 pm", stime) + genOptionHtml("1330", "1:30 pm", stime)
+ genOptionHtml("1400", "2:00 pm", stime) + genOptionHtml("1430", "2:30 pm", stime)
+ genOptionHtml("1500", "3:00 pm", stime) + genOptionHtml("1530", "3:30 pm", stime)
+ genOptionHtml("1600", "4:00 pm", stime) + genOptionHtml("1630", "4:30 pm", stime)
+ genOptionHtml("1700", "5:00 pm", stime) + genOptionHtml("1730", "5:30 pm", stime)
+ genOptionHtml("1800", "6:00 pm", stime) + genOptionHtml("1830", "6:30 pm", stime)
+ genOptionHtml("1900", "7:00 pm", stime) + genOptionHtml("1930", "7:30 pm", stime)
+ genOptionHtml("2000", "8:00 pm", stime) + genOptionHtml("2030", "8:30 pm", stime)
+ genOptionHtml("2100", "9:00 pm", stime);
if (stime.length > 0)
{
var stime_end = stime.substr(2);
if (stime_end != '00' && stime_end != '30')
result = result + genOptionHtml(stime, prettyTime(stime), stime);
}
result = result + '</select></td>\
<td><select class="selectRequired" name="postData[' + cnum + '][' + snum + '][end]"><option value="none"></option>'
+ genOptionHtml("0720", "7:20 am", etime) + genOptionHtml("0750", "7:50 am", etime)
+ genOptionHtml("0820", "8:20 am", etime) + genOptionHtml("0850", "8:50 am", etime)
+ genOptionHtml("0920", "9:20 am", etime) + genOptionHtml("0950", "9:50 am", etime)
+ genOptionHtml("1020", "10:20 am", etime) + genOptionHtml("1050", "10:50 am", etime)
+ genOptionHtml("1120", "11:20 am", etime) + genOptionHtml("1150", "11:50 am", etime)
+ genOptionHtml("1220", "12:20 pm", etime) + genOptionHtml("1250", "12:50 pm", etime)
+ genOptionHtml("1320", "1:20 pm", etime) + genOptionHtml("1350", "1:50 pm", etime)
+ genOptionHtml("1420", "2:20 pm", etime) + genOptionHtml("1450", "2:50 pm", etime)
+ genOptionHtml("1520", "3:20 pm", etime) + genOptionHtml("1550", "3:50 pm", etime)
+ genOptionHtml("1620", "4:20 pm", etime) + genOptionHtml("1650", "4:50 pm", etime)
+ genOptionHtml("1720", "5:20 pm", etime) + genOptionHtml("1750", "5:50 pm", etime)
+ genOptionHtml("1820", "6:20 pm", etime) + genOptionHtml("1850", "6:50 pm", etime)
+ genOptionHtml("1920", "7:20 pm", etime) + genOptionHtml("1950", "7:50 pm", etime)
+ genOptionHtml("2020", "8:20 pm", etime) + genOptionHtml("2050", "8:50 pm", etime)
+ genOptionHtml("2120", "9:20 pm", etime);
if (etime.length > 0)
{
var etime_end = etime.substr(2);
if (etime_end != '50' && etime_end != '20')
result = result + genOptionHtml(etime, prettyTime(etime), etime);
}
result = result + '</select></td>\
<td class="cbrow"><input type="checkbox" class="daysRequired" name="postData[' + cnum + '][' + snum + '][days][0]" value="1" ' + (days.m ? 'checked="checked"' : '') + ' /></td> \
<td class="cbrow"><input type="checkbox" class="daysRequired" name="postData[' + cnum + '][' + snum + '][days][1]" value="1" ' + (days.t ? 'checked="checked"' : '') + ' /></td>\
<td class="cbrow"><input type="checkbox" class="daysRequired" name="postData[' + cnum + '][' + snum + '][days][2]" value="1" ' + (days.w ? 'checked="checked"' : '') + ' /></td>\
<td class="cbrow"><input type="checkbox" class="daysRequired" name="postData[' + cnum + '][' + snum + '][days][3]" value="1" ' + (days.h ? 'checked="checked"' : '') + ' /></td>\
<td class="cbrow"><input type="checkbox" class="daysRequired" name="postData[' + cnum + '][' + snum + '][days][4]" value="1" ' + (days.f ? 'checked="checked"' : '') + ' /></td>';
result = result + '<td><div class="deleteSection"><input type="button" value="x" class="gray" /></div></td><td>'
+ '<input type="hidden" name="postData[' + cnum + '][' + snum + '][location]" value="' + location + '" />'+ '</td></tr>';
return result;
}
/**
* Outputs an <option/> element. It will inlcude selected="selected"
* if the value param equals the test_value param.
*/
function genOptionHtml(value, content, test_value)
{
var selected = ' selected="selected"';
if (value != test_value)
selected = '';
return '<option value="' + value + '"' + selected + '>' + content + "</option>\n";
}
/**
* \brief
* Add a section to a class.
*/
function add_section_n(cnum, name, synonym, stime, etime, days, prof, location)
{
jQuery('.pclass'+cnum).after(genSectionHtml_n(cnum, name, synonym, stime, etime, days, prof, location));
sectionsOfClass[cnum] ++;
}
function add_section(cnum)
{
return add_section_n(cnum, '', '', '', '', {'m':false, 't':false, 'w':false, 'h':false, 'f':false}, '', '');
}
/**
* Add a list of sections gotten via an AJAX call.
*/
function add_sections(cnum, data)
{
var i;
if (!data.sections)
return;
/*
* we get the sections in the correct order. For the user to see
* them in the correct order, we must reverse the add_setion_n()
* calls.
*/
for (i = data.sections.length - 1; i >= 0; i --)
{
section = data.sections[i];
add_section_n(cnum, section.section, section.synonym, section.time_start, section.time_end, section.days, section.prof, section.location);
}
}
//--------------------------------------------------
// Adds a new class to the input.
//--------------------------------------------------
function add_class_n(name)
{
sectionsOfClass[classNum] = 0; // Initialize at 0
jQuery('#jsrows').append('<tr title="' + classNum + '" class="class class' + classNum + ' pclass' + classNum + '"><td><input type="text" class="classRequired defText className'+classNum+' className" title="Class Name" name="postData[' + classNum + '][name]" value="' + name + '" /></td><td colspan="9"></td><td class="tdInput"><div class="addSection"><input type="button" value="Add Section" class="gray" /></div></td><td class="tdInput"><div class="deleteClass"><input type="button" value="Remove" class="gray" /></div></td></tr>');
jQuery('.className' + classNum).autocomplete({ source: "auto.php" });
jQuery('.className' + classNum).bind('autocompleteselect', {'class_num': classNum},
function(event, ui)
{
if (ui.item && ui.item.value.indexOf('-'))
{
jQuery.ajax(
{
url: 'auto.php',
data: {'getsections': 1, 'term': ui.item.value},
context: {'class_num': event.data.class_num},
success: function(data, textStatus, reqobj)
{
if (data.sections)
{
add_sections(this.class_num, data);
add_class();
}
}
}
);
}
});
classNum++;
return (classNum - 1);
};
function add_class()
{
return add_class_n('');
}
/**
* \brief
* Render a slate_permutate-encoded time-of-day.
*
* \param time_str
* A four-character representation of a time of day based on a
* time's 24-hour representation.
* \return
* A string representing the specified time.
*/
function prettyTime(time_str)
{
var i_hour;
var hour_str;
var m;
i_hour = time_str.substr(0, 2) * 1;
if (i_hour <= 12)
{
m = 'a';
}
else
{
m = 'p';
i_hour -= 12;
}
hour_str = new String(i_hour);
/* uncomment to have 08:01 instead of 8:01 */
/*
while (hour_str.length < 2)
hour_str = '0' + hour_str;
*/
return hour_str + ':' + time_str.substr(2) + ' ' + m + 'm';
}
//--------------------------------------------------
// Items bound to pageload/events
//--------------------------------------------------
jQuery(document).ready(function() {
//--------------------------------------------------
// Validates the form (pre-submission check)
//--------------------------------------------------
jQuery('#scheduleForm').validate({ debug: false });
//--------------------------------------------------
// Bind the class-adding method
//--------------------------------------------------
jQuery('#addclass').click(function() {
add_class();
});
//--------------------------------------------------
// Deletes the selected class from input
//--------------------------------------------------
jQuery('.deleteClass').live('click', function() {
if(confirm('Delete class and all sections of this class?')) {
jQuery('.class'+ jQuery(this).parent().parent().attr("title")).remove();
}
});
//--------------------------------------------------
// Deletes the selected section from the input
//--------------------------------------------------
jQuery('.deleteSection').live('click', function() {
sectionsOfClass[jQuery(this).parent().parent().attr("title")]--; // Decreases the number of classes
jQuery(this).parent().parent().remove();
});
//--------------------------------------------------
// Bind the section-adding method
//--------------------------------------------------
jQuery('.addSection').live('click', function() {
add_section(jQuery(this).parent().parent().attr("title"), sectionsOfClass[jQuery(this).parent().parent().attr("title")]);
});
//--------------------------------------------------
// Default text
//--------------------------------------------------
jQuery(".defText").focus(function(srcc)
{
if (jQuery(this).val() == jQuery(this)[0].title)
{
jQuery(this).removeClass("defaultTextActive");
jQuery(this).val("");
}
});
jQuery(".defText").blur(function()
{
if (jQuery(this).val() == "")
{
jQuery(this).addClass("defaultTextActive");
jQuery(this).val($(this)[0].title);
}
});
jQuery(".defText").blur();
//--------------------------------------------------
// Show/Hide advanced items
//--------------------------------------------------
jQuery('.advanced').hide();
jQuery('#showadvanced').click( function() {
jQuery('#showadvanced').hide();
jQuery('.advanced').slideToggle();
});
});
|