1 // Generated by CoffeeScript 1.4.0
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) {
166 $($added.data('original')).removeClass('disabled').draggable('enable');
168 if ($added.is(".add-li")) {
169 $added = $added.closest('li');
171 $added.prev(".placeholder:not(.multiple)").show();
172 return $added.remove();
176 Exercise.prototype.dragging = function(ismultiple, issortable) {
178 return $(".question", this.element).each(function(i, question) {
179 var draggable_opts, self;
185 $(".draggable", question).draggable(draggable_opts);
187 return $(".placeholder", question).droppable({
188 accept: function(draggable) {
189 var $draggable, is_accepted;
190 $draggable = $(draggable);
192 if (!$draggable.is(".draggable")) {
196 is_accepted = self.draggable_accept($draggable, $(this));
199 $(this).addClass('accepting');
201 $(this).removeClass('accepting');
205 drop: function(ev, ui) {
206 $(ev.target).removeClass('accepting dragover');
207 return _this.draggable_move($(ui.draggable), $(ev.target), ismultiple);
209 over: function(ev, ui) {
210 return $(ev.target).addClass('dragover');
212 out: function(ev, ui) {
213 return $(ev.target).removeClass('dragover');
223 Wybor = (function(_super) {
225 __extends(Wybor, _super);
227 function Wybor(element) {
228 Wybor.__super__.constructor.call(this, element);
229 $(".question-piece input", element).change(this.retry);
232 Wybor.prototype.check_question = function(question) {
233 var all, good, solution,
237 solution = this.get_value_list(question, 'solution');
238 $(".question-piece", question).each(function(i, qpiece) {
239 var is_checked, piece_name, piece_no, should_be_checked;
240 piece_no = $(qpiece).attr('data-no');
241 piece_name = $(qpiece).attr('data-name');
243 should_be_checked = solution.indexOf(piece_name) >= 0;
245 should_be_checked = solution.indexOf(piece_no) >= 0;
247 is_checked = $("input", qpiece).is(":checked");
248 if (should_be_checked) {
252 if (should_be_checked) {
254 return _this.piece_correct(qpiece);
256 return _this.piece_incorrect(qpiece);
259 return $(qpiece).removeClass("correct,incorrect");
265 Wybor.prototype.solve_question = function(question) {
268 solution = this.get_value_list(question, 'solution');
269 return $(".question-piece", question).each(function(i, qpiece) {
270 var piece_name, piece_no, should_be_checked;
271 piece_no = $(qpiece).attr('data-no');
272 piece_name = $(qpiece).attr('data-name');
274 should_be_checked = solution.indexOf(piece_name) >= 0;
276 should_be_checked = solution.indexOf(piece_no) >= 0;
278 console.log("check " + $("input[type=checkbox]", qpiece).attr("id") + " -> " + should_be_checked);
279 return $("input[type=checkbox],input[type=radio]", qpiece).prop('checked', should_be_checked);
287 Uporzadkuj = (function(_super) {
289 __extends(Uporzadkuj, _super);
291 function Uporzadkuj(element) {
292 Uporzadkuj.__super__.constructor.call(this, element);
293 $('ol, ul', this.element).sortable({
299 Uporzadkuj.prototype.check_question = function(question) {
300 var all, correct, pkt, pkts, positions, sorted, _i, _ref;
301 positions = this.get_value_list(question, 'original', true);
302 sorted = positions.sort();
303 pkts = $('.question-piece', question);
306 for (pkt = _i = 0, _ref = pkts.length; 0 <= _ref ? _i < _ref : _i > _ref; pkt = 0 <= _ref ? ++_i : --_i) {
308 if (pkts.eq(pkt).data('pos') === sorted[pkt]) {
310 this.piece_correct(pkts.eq(pkt));
312 this.piece_incorrect(pkts.eq(pkt));
315 return [correct, all];
318 Uporzadkuj.prototype.solve_question = function(question) {
319 var p, parent, pkts, positions, sorted, _i, _len, _results;
320 positions = this.get_value_list(question, 'original', true);
321 sorted = positions.sort();
322 pkts = $('.question-piece', question);
323 pkts.sort(function(a, b) {
325 q = $(a).data('pos');
326 w = $(b).data('pos');
335 parent = pkts.eq(0).parent();
337 for (_i = 0, _len = pkts.length; _i < _len; _i++) {
339 _results.push(parent.prepend(p));
348 Luki = (function(_super) {
350 __extends(Luki, _super);
352 function Luki(element) {
353 Luki.__super__.constructor.call(this, element);
354 this.dragging(false, false);
357 Luki.prototype.check = function() {
362 $(".placeholder + .question-piece", this.element).each(function(i, qpiece) {
364 $placeholder = $(qpiece).prev(".placeholder");
365 if ($placeholder.data('solution') === $(qpiece).data('no')) {
366 _this.piece_correct(qpiece);
369 _this.piece_incorrect(qpiece);
373 return this.show_score([correct, all]);
376 Luki.prototype.solve_question = function(question) {
378 return $(".placeholder", question).each(function(i, placeholder) {
380 $qp = $(".question-piece[data-no=" + $(placeholder).data('solution') + "]", question);
381 return _this.draggable_move($qp, $(placeholder), false);
389 Zastap = (function(_super) {
391 __extends(Zastap, _super);
393 function Zastap(element) {
395 Zastap.__super__.constructor.call(this, element);
396 $(".paragraph", this.element).each(function(i, par) {
397 return _this.wrap_words($(par), $('<span class="placeholder zastap"/>'));
399 this.dragging(false, false);
402 Zastap.prototype.check = function() {
407 $(".paragraph", this.element).each(function(i, par) {
408 return $(".placeholder", par).each(function(j, qpiece) {
411 $dragged = $qp.next(".draggable");
412 if ($qp.data("solution")) {
413 if ($dragged && $qp.data("solution") === $dragged.data("no")) {
414 _this.piece_correct($dragged);
421 return this.show_score([correct, all]);
424 Zastap.prototype.show_solutions = function() {
427 return $(".paragraph", this.element).each(function(i, par) {
428 return $(".placeholder[data-solution]", par).each(function(j, qpiece) {
431 $dr = $(".draggable[data-no=" + $qp.data('solution') + "]", _this.element);
432 return _this.draggable_move($dr, $qp, false);
437 Zastap.prototype.wrap_words = function(element, wrapper) {
438 var chld, i, ignore, insertWrapped, j, len, space, wordb, _i, _ref, _results;
439 ignore = /^[ \t.,:;()]+/;
440 insertWrapped = function(txt, elem) {
442 nw = wrapper.clone();
443 return $(document.createTextNode(txt)).wrap(nw).parent().attr("data-original", txt).insertBefore(elem);
446 for (j = _i = _ref = element.get(0).childNodes.length - 1; _ref <= 0 ? _i <= 0 : _i >= 0; j = _ref <= 0 ? ++_i : --_i) {
447 chld = element.get(0).childNodes[j];
448 if (chld.nodeType === document.TEXT_NODE) {
449 len = chld.textContent.length;
453 space = ignore.exec(chld.textContent.substr(i));
456 insertWrapped(chld.textContent.substr(wordb, i - wordb), chld);
458 $(document.createTextNode(space[0])).insertBefore(chld);
459 i += space[0].length;
465 if (wordb < len - 1) {
466 insertWrapped(chld.textContent.substr(wordb, len - 1 - wordb), chld);
468 _results.push($(chld).remove());
470 _results.push(void 0);
480 Przyporzadkuj = (function(_super) {
482 __extends(Przyporzadkuj, _super);
484 Przyporzadkuj.prototype.is_multiple = function() {
485 var qp, _i, _len, _ref;
486 _ref = $(".question-piece", this.element);
487 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
489 if ($(qp).data('solution').split(/[ ,]+/).length > 1) {
496 function Przyporzadkuj(element) {
497 Przyporzadkuj.__super__.constructor.call(this, element);
498 this.multiple = this.is_multiple();
499 this.dragging(this.multiple, true);
502 Przyporzadkuj.prototype.draggable_equal = function(d1, d2) {
503 return d1.data("no") === d2.data("no");
506 Przyporzadkuj.prototype.check_question = function(question) {
507 var all, count, mandatory, minimum, optional, pn, pred, qp, v, _i, _j, _len, _len1, _ref, _ref1;
508 minimum = $(question).data("minimum");
512 all = $(".subjects .question-piece", question).length;
514 _ref = $(".predicate [data-predicate]", question);
515 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
517 pn = $(pred).attr('data-predicate');
518 if (minimum != null) {
521 _ref1 = $(".question-piece", pred);
522 for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) {
524 v = this.get_value_optional_list(qp, 'solution');
527 if (mandatory.indexOf(pn) >= 0 || (minimum && optional.indexOf(pn) >= 0)) {
529 this.piece_correct(qp);
531 this.piece_incorrect(qp);
538 Przyporzadkuj.prototype.solve_question = function(question) {
539 var $ph, $pr, draggables, m, mandatory, minimum, optional, qp, v, _i, _len, _ref, _results;
540 minimum = $(question).data("min");
541 _ref = $(".subject .question-piece", question);
543 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
545 v = this.get_value_optional_list(qp, 'solution');
549 draggables = mandatory.count(optional).slice(0, minimum);
551 draggables = mandatory;
553 _results.push((function() {
554 var _j, _len1, _results1;
556 for (_j = 0, _len1 = draggables.length; _j < _len1; _j++) {
558 $pr = $(".predicate [data-predicate=" + m + "]", question);
559 $ph = $pr.find(".placeholder:visible");
560 _results1.push(this.draggable_move($(qp), $ph.eq(0), this.multiple));
568 return Przyporzadkuj;
572 PrawdaFalsz = (function(_super) {
574 __extends(PrawdaFalsz, _super);
576 function PrawdaFalsz(element) {
577 var qp, _i, _len, _ref,
579 PrawdaFalsz.__super__.constructor.call(this, element);
580 _ref = $(".question-piece", this.element);
581 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
583 $(".true", qp).click(function(ev) {
586 $(ev.target).closest(".question-piece").data("value", "true");
587 return $(ev.target).addClass('chosen').siblings('a').removeClass('chosen');
589 $(".false", qp).click(function(ev) {
592 $(ev.target).closest(".question-piece").data("value", "false");
593 return $(ev.target).addClass('chosen').siblings('a').removeClass('chosen');
598 PrawdaFalsz.prototype.check_question = function() {
599 var all, good, qp, _i, _len, _ref;
602 _ref = $(".question-piece", this.element);
603 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
605 if ($(qp).data("solution").toString() === $(qp).data("value")) {
607 this.piece_correct(qp);
609 this.piece_incorrect(qp);
616 PrawdaFalsz.prototype.show_solutions = function() {
617 var qp, _i, _len, _ref, _results;
619 _ref = $(".question-piece", this.element);
621 for (_i = 0, _len = _ref.length; _i < _len; _i++) {
623 if ($(qp).data('solution') === true) {
624 _results.push($(".true", qp).click());
626 _results.push($(".false", qp).click());
636 exercise = function(ele) {
640 uporzadkuj: Uporzadkuj,
643 przyporzadkuj: Przyporzadkuj,
644 prawdafalsz: PrawdaFalsz
646 cls = es[$(ele).attr('data-type')];
651 'EduModule': EduModule
654 $(document).ready(function() {
655 new EduModule($("#book-text"));
656 return $(".exercise").each(function(i, el) {
657 return exercise(this);