1 // Generated by CoffeeScript 1.3.3
3 var $, Binding, EduModule, Exercise, Luki, PrawdaFalsz, Przyporzadkuj, Uporzadkuj, Wybor, Zastap, exercise,
4 __hasProp = {}.hasOwnProperty,
5 __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
9 Binding = (function() {
11 function Binding(handler, element) {
12 this.handler = handler;
13 this.element = element;
14 $(this.element).data(this.handler, this);
21 EduModule = (function(_super) {
23 __extends(EduModule, _super);
25 function EduModule(element) {
26 EduModule.__super__.constructor.call(this, 'edumodule', element);
33 Exercise = (function(_super) {
35 __extends(Exercise, _super);
37 function Exercise(element) {
39 Exercise.__super__.constructor.call(this, 'exercise', element);
40 $(this.element).data("exercise-html", $(this.element).html());
41 $(".check", this.element).click(function(ev) {
43 $(ev.target).next(".retry").show();
44 return $(ev.target).hide();
46 $(".retry", this.element).click(function(ev) {
49 $('.solutions', this.element).click(function() {
50 _this.show_solutions();
51 return $(".comment", _this.element).show();
53 $('.reset', this.element).click(function() {
58 Exercise.prototype.retry = function() {
59 $(".correct, .incorrect", this.element).removeClass("correct incorrect");
60 $(".check", this.element).show();
61 return $(".retry", this.element).hide();
64 Exercise.prototype.reset = function() {
65 $(this.element).html($(this.element).data('exercise-html'));
66 return exercise(this.element);
69 Exercise.prototype.piece_correct = function(qpiece) {
70 return $(qpiece).removeClass('incorrect').addClass('correct');
73 Exercise.prototype.piece_incorrect = function(qpiece) {
74 return $(qpiece).removeClass('correct').addClass('incorrect');
77 Exercise.prototype.check = function() {
81 $(".question", this.element).each(function(i, question) {
82 return scores.push(_this.check_question(question));
85 $.each(scores, function(i, s) {
87 return score[1] += s[1];
89 return this.show_score(score);
92 Exercise.prototype.show_solutions = function() {
95 return $(".question", this.element).each(function(i, question) {
96 return _this.solve_question(question);
100 Exercise.prototype.get_value_list = function(elem, data_key, numbers) {
102 vl = $(elem).attr("data-" + data_key).split(/[ ,]+/).map($.trim);
104 vl = vl.map(function(x) {
111 Exercise.prototype.get_value_optional_list = function(elem, data_key) {
112 var mandat, opt, v, vals, _i, _len;
113 vals = this.get_value_list(elem, data_key);
116 for (_i = 0, _len = vals.length; _i < _len; _i++) {
118 if (v.slice(-1) === "?") {
119 opt.push(v.slice(0, -1));
124 return [mandat, opt];
127 Exercise.prototype.show_score = function(score) {
128 return $(".message", this.element).text("Wynik: " + score[0] + " / " + score[1]);
131 Exercise.prototype.draggable_equal = function($draggable1, $draggable2) {
135 Exercise.prototype.draggable_accept = function($draggable, $droppable) {
136 var d, dropped, _i, _len;
137 dropped = $droppable.closest("ul, ol").find(".draggable");
138 for (_i = 0, _len = dropped.length; _i < _len; _i++) {
140 if (this.draggable_equal($draggable, $(d))) {
147 Exercise.prototype.draggable_move = function($draggable, $placeholder, ismultiple) {
150 $added = $draggable.clone();
151 $added.data("original", $draggable.get(0));
153 $draggable.addClass('disabled').draggable('disable');
155 $placeholder.after($added);
156 if (!$placeholder.hasClass('multiple')) {
159 if ($added.is(".add-li")) {
160 $added.wrap("<li/>");
162 $added.append('<span class="remove">x</span><div class="clr"></div>');
163 return $('.remove', $added).click(function(ev) {
165 $($added.data('original')).removeClass('disabled').draggable('enable');
167 if ($added.is(".add-li")) {
168 $added = $added.closest('li');
170 $added.prev(".placeholder:not(.multiple)").show();
171 return $added.remove();
175 Exercise.prototype.dragging = function(ismultiple, issortable) {
177 return $(".question", this.element).each(function(i, question) {
178 var draggable_opts, self;
184 $(".draggable", question).draggable(draggable_opts);
186 return $(".placeholder", question).droppable({
187 accept: function(draggable) {
188 var $draggable, is_accepted;
189 $draggable = $(draggable);
191 if (!$draggable.is(".draggable")) {
195 is_accepted = self.draggable_accept($draggable, $(this));
198 $(this).addClass('accepting');
200 $(this).removeClass('accepting');
204 drop: function(ev, ui) {
205 $(ev.target).removeClass('accepting dragover');
206 return _this.draggable_move($(ui.draggable), $(ev.target), ismultiple);
208 over: function(ev, ui) {
209 return $(ev.target).addClass('dragover');
211 out: function(ev, ui) {
212 return $(ev.target).removeClass('dragover');
222 Wybor = (function(_super) {
224 __extends(Wybor, _super);
226 function Wybor(element) {
227 Wybor.__super__.constructor.call(this, element);
228 $(".question-piece input", element).change(this.retry);
231 Wybor.prototype.check_question = function(question) {
232 var all, good, solution,
236 solution = this.get_value_list(question, 'solution');
237 $(".question-piece", question).each(function(i, qpiece) {
238 var is_checked, piece_name, piece_no, should_be_checked;
239 piece_no = $(qpiece).attr('data-no');
240 piece_name = $(qpiece).attr('data-name');
242 should_be_checked = solution.indexOf(piece_name) >= 0;
244 should_be_checked = solution.indexOf(piece_no) >= 0;
246 is_checked = $("input", qpiece).is(":checked");
247 if (should_be_checked) {
251 if (should_be_checked) {
253 return _this.piece_correct(qpiece);
255 return _this.piece_incorrect(qpiece);
258 return $(qpiece).removeClass("correct,incorrect");
264 Wybor.prototype.solve_question = function(question) {
267 solution = this.get_value_list(question, 'solution');
268 return $(".question-piece", question).each(function(i, qpiece) {
269 var piece_name, piece_no, should_be_checked;
270 piece_no = $(qpiece).attr('data-no');
271 piece_name = $(qpiece).attr('data-name');
273 should_be_checked = solution.indexOf(piece_name) >= 0;
275 should_be_checked = solution.indexOf(piece_no) >= 0;
277 console.log("check " + $("input[type=checkbox]", qpiece).attr("id") + " -> " + should_be_checked);
278 return $("input[type=checkbox],input[type=radio]", qpiece).prop('checked', should_be_checked);
286 Uporzadkuj = (function(_super) {
288 __extends(Uporzadkuj, _super);
290 function Uporzadkuj(element) {
291 Uporzadkuj.__super__.constructor.call(this, element);
292 $('ol, ul', this.element).sortable({
298 Uporzadkuj.prototype.check_question = function(question) {
299 var all, correct, pkt, pkts, positions, sorted, _i, _ref;
300 positions = this.get_value_list(question, 'original', true);
301 sorted = positions.sort();
302 pkts = $('.question-piece', question);
305 for (pkt = _i = 0, _ref = pkts.length; 0 <= _ref ? _i < _ref : _i > _ref; pkt = 0 <= _ref ? ++_i : --_i) {
307 if (pkts.eq(pkt).data('pos') === sorted[pkt]) {
309 this.piece_correct(pkts.eq(pkt));
311 this.piece_incorrect(pkts.eq(pkt));
314 return [correct, all];
317 Uporzadkuj.prototype.solve_question = function(question) {
318 var p, parent, pkts, positions, sorted, _i, _len, _results;
319 positions = this.get_value_list(question, 'original', true);
320 sorted = positions.sort();
321 pkts = $('.question-piece', question);
322 pkts.sort(function(a, b) {
324 q = $(a).data('pos');
325 w = $(b).data('pos');
334 parent = pkts.eq(0).parent();
336 for (_i = 0, _len = pkts.length; _i < _len; _i++) {
338 _results.push(parent.prepend(p));
347 Luki = (function(_super) {
349 __extends(Luki, _super);
351 function Luki(element) {
352 Luki.__super__.constructor.call(this, element);
353 this.dragging(false, false);
356 Luki.prototype.check = function() {
361 $(".placeholder + .question-piece", this.element).each(function(i, qpiece) {
363 $placeholder = $(qpiece).prev(".placeholder");
364 if ($placeholder.data('solution') === $(qpiece).data('no')) {
365 _this.piece_correct(qpiece);
368 _this.piece_incorrect(qpiece);
372 return this.show_score([correct, all]);
375 Luki.prototype.solve_question = function(question) {
377 return $(".placeholder", question).each(function(i, placeholder) {
379 $qp = $(".question-piece[data-no=" + $(placeholder).data('solution') + "]", question);
380 return _this.draggable_move($qp, $(placeholder), false);
388 Zastap = (function(_super) {
390 __extends(Zastap, _super);
392 function Zastap(element) {
394 Zastap.__super__.constructor.call(this, element);
395 $(".paragraph", this.element).each(function(i, par) {
396 return _this.wrap_words($(par), $('<span class="placeholder zastap"/>'));
398 this.dragging(false, false);
401 Zastap.prototype.check = function() {
406 $(".paragraph", this.element).each(function(i, par) {
407 return $(".placeholder", par).each(function(j, qpiece) {
410 $dragged = $qp.next(".draggable");
411 if ($qp.data("solution")) {
412 if ($dragged && $qp.data("solution") === $dragged.data("no")) {
413 _this.piece_correct($dragged);
420 return this.show_score([correct, all]);
423 Zastap.prototype.show_solutions = function() {
426 return $(".paragraph", this.element).each(function(i, par) {
427 return $(".placeholder[data-solution]", par).each(function(j, qpiece) {
430 $dr = $(".draggable[data-no=" + $qp.data('solution') + "]", _this.element);
431 return _this.draggable_move($dr, $qp, false);
436 Zastap.prototype.wrap_words = function(element, wrapper) {
437 var chld, i, ignore, insertWrapped, j, len, space, wordb, _i, _ref, _results;
438 ignore = /^[ \t.,:;()]+/;
439 insertWrapped = function(txt, elem) {
441 nw = wrapper.clone();
442 return $(document.createTextNode(txt)).wrap(nw).parent().attr("data-original", txt).insertBefore(elem);
445 for (j = _i = _ref = element.get(0).childNodes.length - 1; _ref <= 0 ? _i <= 0 : _i >= 0; j = _ref <= 0 ? ++_i : --_i) {
446 chld = element.get(0).childNodes[j];
447 if (chld.nodeType === document.TEXT_NODE) {
448 len = chld.textContent.length;
452 space = ignore.exec(chld.textContent.substr(i));
455 insertWrapped(chld.textContent.substr(wordb, i - wordb), chld);
457 $(document.createTextNode(space[0])).insertBefore(chld);
458 i += space[0].length;
464 if (wordb < len - 1) {
465 insertWrapped(chld.textContent.substr(wordb, len - 1 - wordb), chld);
467 _results.push($(chld).remove());
469 _results.push(void 0);
479 Przyporzadkuj = (function(_super) {
481 __extends(Przyporzadkuj, _super);
483 Przyporzadkuj.prototype.is_multiple = function() {
484 var qp, _i, _len, _ref;
485 _ref = $(".question-piece", this.element);
486 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
488 if ($(qp).data('solution').split(/[ ,]+/).length > 1) {
495 function Przyporzadkuj(element) {
496 Przyporzadkuj.__super__.constructor.call(this, element);
497 this.multiple = this.is_multiple();
498 this.dragging(this.multiple, true);
501 Przyporzadkuj.prototype.draggable_equal = function(d1, d2) {
502 return d1.data("no") === d2.data("no");
505 Przyporzadkuj.prototype.check_question = function(question) {
506 var all, count, mandatory, minimum, optional, pn, pred, qp, v, _i, _j, _len, _len1, _ref, _ref1;
507 minimum = $(question).data("minimum");
511 all = $(".subjects .question-piece", question).length;
513 _ref = $(".predicate [data-predicate]", question);
514 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
516 pn = $(pred).attr('data-predicate');
517 if (minimum != null) {
520 _ref1 = $(".question-piece", pred);
521 for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) {
523 v = this.get_value_optional_list(qp, 'solution');
526 if (mandatory.indexOf(pn) >= 0 || (minimum && optional.indexOf(pn) >= 0)) {
528 this.piece_correct(qp);
530 this.piece_incorrect(qp);
537 Przyporzadkuj.prototype.solve_question = function(question) {
538 var $ph, $pr, draggables, m, mandatory, minimum, optional, qp, v, _i, _len, _ref, _results;
539 minimum = $(question).data("min");
540 _ref = $(".subject .question-piece", question);
542 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
544 v = this.get_value_optional_list(qp, 'solution');
548 draggables = mandatory.count(optional).slice(0, minimum);
550 draggables = mandatory;
552 _results.push((function() {
553 var _j, _len1, _results1;
555 for (_j = 0, _len1 = draggables.length; _j < _len1; _j++) {
557 $pr = $(".predicate [data-predicate=" + m + "]", question);
558 $ph = $pr.find(".placeholder:visible");
559 _results1.push(this.draggable_move($(qp), $ph, this.multiple));
567 return Przyporzadkuj;
571 PrawdaFalsz = (function(_super) {
573 __extends(PrawdaFalsz, _super);
575 function PrawdaFalsz(element) {
576 var qp, _i, _len, _ref;
577 PrawdaFalsz.__super__.constructor.call(this, element);
578 _ref = $(".question-piece", this.element);
579 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
581 $(".true", qp).click(function(ev) {
584 $(this).closest(".question-piece").data("value", "true");
585 return $(this).addClass('chosen').siblings('a').removeClass('chosen');
587 $(".false", qp).click(function(ev) {
590 $(this).closest(".question-piece").data("value", "false");
591 return $(this).addClass('chosen').siblings('a').removeClass('chosen');
596 PrawdaFalsz.prototype.check_question = function() {
597 var all, good, qp, _i, _len, _ref;
600 _ref = $(".question-piece", this.element);
601 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
603 if ($(qp).data("solution").toString() === $(qp).data("value")) {
605 this.piece_correct(qp);
607 this.piece_incorrect(qp);
614 PrawdaFalsz.prototype.show_solutions = function() {
615 var qp, _i, _len, _ref, _results;
617 _ref = $(".question-piece", this.element);
619 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
621 if ($(qp).data('solution') === true) {
622 _results.push($(".true", qp).click());
624 _results.push($(".false", qp).click());
634 exercise = function(ele) {
638 uporzadkuj: Uporzadkuj,
641 przyporzadkuj: Przyporzadkuj,
642 prawdafalsz: PrawdaFalsz
644 cls = es[$(ele).attr('data-type')];
649 'EduModule': EduModule
652 $(document).ready(function() {
653 new EduModule($("#book-text"));
654 return $(".exercise").each(function(i, el) {
655 return exercise(this);