forked from Khan/khan-exercises
-
Notifications
You must be signed in to change notification settings - Fork 1
/
interface.js
926 lines (796 loc) · 30.1 KB
/
interface.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
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
/**
* Interface glue to handle events from 'Exercises' and talk to 'Khan' or some
* Perseus object, whichever is appropriate for the current exercise.
*
* In general, khan-exercises and perseus will want to trigger events on
* Exercises but only listen to their own events.
*/
(function() {
window.Khan = window.Khan || {};
Khan.hintsUsed = null;
var ServerActionQueue = {
LOCAL_STORAGE_KEY: "exercises-server-action-queue",
ACTION_TIMEOUT_MS: 100,
queue: [],
timeoutSet: false,
timeoutMultiplier: 1,
/**
* Reads queued from local storage. If the queue is empty do nothing,
* otherwise call the timeout function to consume the actions.
*
* WARNING: If this function is called twice and we are in the middle
* of a request the second time (i.e. the request has been sent but
* the response has not been received yet) there is the possibility
* that we will have the same request sent twice because the pending
* request is still in the queue.
*/
initialize: function() {
this.queue = LocalStore.get(this.LOCAL_STORAGE_KEY);
if (this.queue === null) {
this.queue = [];
}
if (this.queue.length > 0) {
this.onTimeout();
}
},
/**
* Attempts to send requests, if all the requests are sent then don't
* reset the timeout. Otherwise reset the timeout.
*/
onTimeout: function() {
this.timeoutSet = false;
this.consumeQueue();
},
/**
* Removes the next action in the queue and returns it.
*
* @returns {object} The next action from the queue.
*/
dequeue: function() {
var output = this.queue.shift();
LocalStore.set(this.LOCAL_STORAGE_KEY, this.queue);
return output;
},
/**
* Arm the timeout and increment the timeoutMultiplier
*/
armTimeout: function() {
if (!this.timeoutSet) {
this.timeoutSet = true;
setTimeout(_.bind(this.onTimeout, this),
this.ACTION_TIMEOUT_MS * this.timeoutMultiplier);
}
// Increment timeoutMultiplier but max at 20
this.timeoutMultiplier = Math.min(20, this.timeoutMultiplier + 1);
},
/**
* If we are connected to the server this will recursively consume the queue of
* pending server actions. Otherwise, this will reset the timeout to be called
* again later.
*/
consumeQueue: function() {
if (this.queue.length === 0) {
return;
}
var action = ServerActionEnum[this.peek().action];
var actionArgs = this.peek().actionArgs;
var retriesLeft = this.peek().retriesLeft;
action.apply(null, actionArgs).done(function() {
// We succeeded so remove this from the queue and reset timeoutMultiplier
ServerActionQueue.timeoutMultiplier = 1;
ServerActionQueue.dequeue();
ServerActionQueue.consumeQueue();
}).fail(function(xhr) {
// When we aren't connected to the sesrver we don't get a proper response
// so responseText is undefined
if (xhr.status === 0) {
// We didn't receive a response from the server, reset timeout.
ServerActionQueue.armTimeout();
} else {
// We received an error from the server, retry or remove from the queue
if (retriesLeft > 0) {
ServerActionQueue.peek().retriesLeft -= 1;
LocalStore.set(ServerActionQueue.LOCAL_STORAGE_KEY,
ServerActionQueue.queue);
ServerActionQueue.armTimeout();
} else {
ServerActionQueue.dequeue();
ServerActionQueue.consumeQueue();
}
}
});
},
/**
* Returns next item from queue without removing it.
*/
peek: function() {
return this.queue[0];
},
/**
* Add a new action to the queue of actions to be called.
* @param {string} action - The string mapping to the callback function in
* ServerActionEnum. The callback MUST return a promise
* object so we can know if a request fails or succeeds
* @param {list} actionArgs - The list of arguments to be passed to the
* callback for the action. All of these arguments must be
* JSON serializable.
* @param {int} retries - Number of retries allowed for server errors
*/
enqueue: function(action, actionArgs, retries) {
this.queue.push({
action: action,
actionArgs: actionArgs,
retriesLeft: retries
});
LocalStore.set(this.LOCAL_STORAGE_KEY, this.queue);
this.armTimeout();
},
};
var ServerActionEnum = {
"makeAttempt": Khan.saveAttemptToServer,
"hintRequest": Khan.request,
};
function shouldUseServerActionQueue() {
return !Exercises.localMode &&
typeof LocalStore !== "undefined" &&
typeof KA !== "undefined" &&
KA.GANDALF_EXERCISES_SERVER_QUEUE;
}
// If any of these properties have already been defined, then leave them --
// this happens in local mode
_.defaults(Exercises, {
khanExercisesUrlBase: "../../khan-exercises/",
getCurrentFramework: function(userExerciseOverride) {
return (userExerciseOverride || userExercise).exerciseModel.fileName ?
"khan-exercises" : "perseus";
},
requestTimeoutMillis: 30000
});
_.extend(Exercises, {
guessLog: undefined,
userActivityLog: undefined
});
// The iOS app doesn't use cookies, so we need to send this as an oauth request
// (while letting the webapp send its AJAX request as before).
$.kaOauthAjax = function(options) {
if ($.oauth) {
return $.oauth(options);
} else {
return $.ajax(options);
}
};
var PerseusBridge = Exercises.PerseusBridge,
EMPTY_MESSAGE = $._("There are still more parts of this question to answer."),
// Store these here so that they're hard to change after the fact via
// bookmarklet, etc.
localMode = Exercises.localMode,
previewingItem,
originalCheckAnswerText,
userExercise,
problemNum,
canAttempt,
hintsAreFree,
attempts,
numHints,
// hintsUsed,
lastAttemptOrHint,
lastAttemptContent,
currentExercise;
$(Exercises)
.bind("problemTemplateRendered", problemTemplateRendered)
.bind("newProblem", newProblem)
.bind("hintShown", onHintShown)
.bind("readyForNextProblem", readyForNextProblem)
.bind("warning", warning)
.bind("upcomingExercise", upcomingExercise)
.bind("gotoNextProblem", gotoNextProblem)
.bind("updateUserExercise", updateUserExercise)
.bind("subhintExpand", subhintExpand)
.bind("clearExistingProblem", clearExistingProblem)
.bind("showOptOut", showOptOut);
function problemTemplateRendered() {
previewingItem = Exercises.previewingItem;
// Setup appropriate img URLs
$("#issue-throbber").attr("src",
Exercises.khanExercisesUrlBase + "css/images/throbber.gif");
$("#positive-reinforcement").hide();
if (localMode) {
// The /khan-exercises/images/ folder isn't available in GAE prod so
// don't change the src there, even though it would kind of work.
$("#positive-reinforcement > img").attr("src",
Exercises.khanExercisesUrlBase + "images/face-smiley.png");
}
// 'Check Answer' or 'Submit Answer'
originalCheckAnswerText = $("#check-answer-button").val();
// Solution submission
$("#check-answer-button").click(handleCheckAnswer);
$("#answerform").submit(handleCheckAnswer);
$("#skip-question-button").click(handleSkippedQuestion);
$("#opt-out-button").click(handleOptOut);
// Hint button
$("#hint").click(onHintButtonClicked);
// Worked example button
$("#worked-example-button").click(onShowExampleClicked);
// Next question button
$("#next-question-button").click(function() {
$(Exercises).trigger("gotoNextProblem");
// Disable next question button until next time
// TODO(alpert): Why? Is blurring not enough?
$(this)
.attr("disabled", true)
.addClass("buttonDisabled");
});
// If happy face is clicked, pass click on through.
$("#positive-reinforcement").click(function() {
$("#next-question-button").click();
});
// Let users close the warning bar when appropriate
$("#warning-bar-close a").click(function(e) {
e.preventDefault();
$("#warning-bar").fadeOut("slow");
});
// Scratchpad toggle
$("#scratchpad-show").click(function(e) {
e.preventDefault();
Khan.scratchpad.toggle();
if (!localMode && userExercise.user) {
LocalStore.set("scratchpad:" + userExercise.user,
Khan.scratchpad.isVisible());
}
});
// These shouldn't interfere...
$(PerseusBridge).trigger("problemTemplateRendered", [Khan.mathJaxLoaded]);
$(Khan).trigger("problemTemplateRendered");
}
function newProblem(e, data) {
Exercises.guessLog = [];
Exercises.userActivityLog = [];
canAttempt = true;
hintsAreFree = false;
attempts = data.userExercise ? data.userExercise.lastAttemptNumber : 0;
numHints = data.numHints;
Khan.hintsUsed = data.userExercise ? data.userExercise.lastCountHints : 0;
lastAttemptOrHint = new Date().getTime();
lastAttemptContent = null;
if (shouldUseServerActionQueue()) {
var storedExercise = LocalStore.get("currentExercise");
if (storedExercise != null &&
storedExercise.exercise === data.userExercise.exercise &&
storedExercise.problemNum === problemNum) {
currentExercise = storedExercise;
while (Khan.hintsUsed < storedExercise.hintsUsed) {
var framework = Exercises.getCurrentFramework();
if (framework === "perseus") {
$(PerseusBridge).trigger("showHint");
} else if (framework === "khan-exercises") {
$(Khan).trigger("showHint");
}
}
}
// Store currentExercise w/ hints used in local storage (above we
// should check if the exercise is already stored and update hintsUsed
// as appropriate)
currentExercise = {
exercise: data.userExercise.exercise,
hintsUsed: Khan.hintsUsed,
problemNum: problemNum
};
LocalStore.set("currentExercise", currentExercise);
}
var framework = Exercises.getCurrentFramework();
$("#problem-and-answer")
.removeClass("framework-khan-exercises")
.removeClass("framework-perseus")
.addClass("framework-" + framework);
// Enable/disable the get hint button
$(".hint-box").toggle(numHints !== 0);
updateHintButtonText();
$("#hint").attr("disabled", Khan.hintsUsed >= numHints);
enableCheckAnswer();
if (typeof KA !== "undefined" && KA.language === "en-PT" &&
previewingItem) {
// On translate.ka.org when previewing the exercise, we want to open up
// all the hints to make it easy to translate immediately.
while (Khan.hintsUsed < numHints) {
onHintButtonClicked();
}
}
// Render related videos, unless we're on the final stage of mastery.
if (Exercises.RelatedVideos && data.userExercise) {
var userExercise = data.userExercise;
var nearMastery = userExercise.exerciseProgress.level === "mastery2" ||
userExercise.exerciseProgress.level === "mastery3";
var task = Exercises.learningTask;
var hideRelatedVideos = task && task.isMasteryTask() && nearMastery;
var relatedVideos = data.userExercise.exerciseModel.relatedVideos;
// We have per-problem-type related videos for Perseus
if (framework === "perseus") {
var problemTypeName = PerseusBridge.getSeedInfo().problem_type;
// Filter out related videos that correspond to other problem types
var problemTypes = data.userExercise.exerciseModel.problemTypes;
var otherProblemTypes = _.filter(problemTypes, function(type) {
return type.name !== problemTypeName;
});
relatedVideos = _.filter(relatedVideos, function(video) {
return _.all(otherProblemTypes, function(problemType) {
// Note: we have to cast IDs to strings for backwards
// compatability as older videos have pure integer IDs.
var stringIDs = _.map(problemType.relatedVideos,
function(id) {
return "" + id;
});
return !_.contains(stringIDs, "" + video.id);
});
});
}
if (hideRelatedVideos) {
Exercises.RelatedVideos.render([]);
} else {
Exercises.RelatedVideos.render(relatedVideos);
}
}
}
function handleCheckAnswer() {
return handleAttempt({
skipped: false
});
}
function handleSkippedQuestion() {
return handleAttempt({
skipped: true
});
}
function handleOptOut() {
Exercises.AssessmentQueue.end();
return handleAttempt({
skipped: true,
optOut: true
});
}
function handleAttempt(data) {
var framework = Exercises.getCurrentFramework();
var skipped = data.skipped;
var optOut = data.optOut;
var score;
var itemId;
// Score the attempt
if (framework === "perseus") {
score = PerseusBridge.scoreInput();
itemId = PerseusBridge.getSeedInfo().seed;
} else if (framework === "khan-exercises") {
score = Khan.scoreInput();
itemId = Khan.getSeedInfo().seed;
}
if (!canAttempt) {
// Just don't allow further submissions once a correct answer or skip
// has been called or sometimes the server gets confused.
return false;
}
var isAnswerEmpty = score.empty && !skipped;
var attemptMessage = null;
// When the user answers incorrectly, we might show a message in response.
// It might encourage the user to think about their answer's format (eg.
// simplify the fraction) or it might explain to the user why the answer
// was wrong (these are referred to as clues in code, though in
// conversation we call them rationales). We show nothing at all if that
// content doesn't exist.
if (score.message !== "" && score.message != null) {
attemptMessage = score.message;
} else if (isAnswerEmpty) {
attemptMessage = EMPTY_MESSAGE;
}
// We need to alert the user when the given answer is incorrect
if (!attemptMessage && !(score.correct || skipped)) {
attemptMessage = $._("Incorrect answer, please try again.");
}
var $attemptMessage = $("#check-answer-results > p");
if (attemptMessage) {
// NOTE(jeresig): If the message is identical to the message that
// was there before then the ARIA alert is not triggered. We add in
// an extra space to force the alert to trigger.
var isIdentical = attemptMessage === $attemptMessage.text();
$attemptMessage
.html(attemptMessage + (isIdentical ? " " : "")).show().tex();
$(Exercises).trigger("attemptMessageShown", attemptMessage);
} else {
$attemptMessage.hide();
}
// Stop if the user didn't try to skip the question and also didn't yet
// enter a response
if (isAnswerEmpty) {
return false;
}
if (score.correct || skipped) {
// Once we receive a correct answer or a skip, that's it; further
// attempts are disallowed.
canAttempt = false;
}
var curTime = new Date().getTime();
var millisTaken = curTime - lastAttemptOrHint;
var timeTaken = Math.round(millisTaken / 1000);
var stringifiedGuess = JSON.stringify(score.guess);
lastAttemptOrHint = curTime;
// If user hasn't changed their answer and is resubmitting w/in one second
// of last attempt, don't allow this attempt. They're probably just
// smashing Enter.
if (!skipped &&
stringifiedGuess === lastAttemptContent && millisTaken < 1000) {
return false;
}
lastAttemptContent = stringifiedGuess;
Exercises.guessLog.push(score.guess);
Exercises.userActivityLog.push([
score.correct ? "correct-activity" : "incorrect-activity",
stringifiedGuess, timeTaken
]);
if (score.correct || skipped) {
$(Exercises).trigger("problemDone", {
card: Exercises.currentCard,
attempts: attempts
});
}
$(Exercises).trigger("checkAnswer", {
correct: score.correct,
item: itemId,
card: Exercises.currentCard,
optOut: optOut,
// Determine if this attempt qualifies as fast completion
fast: !localMode && userExercise.secondsPerFastProblem >= timeTaken,
// Used by mobile for skipping problems in a mastery task
skipped: skipped
});
// Update interface corresponding to correctness
if (skipped || Exercises.assessmentMode) {
disableCheckAnswer();
} else if (score.correct) {
// Correct answer, so show the next question button.
$("#check-answer-button").hide();
var nextButtonText;
if (Exercises.learningTask && Exercises.learningTask.isComplete()) {
nextButtonText = $._("Awesome! Show points...");
} else {
nextButtonText = $._("Correct! Next question...");
}
$("#next-question-button")
.prop("disabled", false)
.removeClass("buttonDisabled")
.val(nextButtonText)
.show()
.focus();
$("#positive-reinforcement").show();
$("#skip-question-button").prop("disabled", true);
$("#opt-out-button").prop("disabled", true);
} else {
// Wrong answer. Enable all the input elements
// NOTE(jeresig): The wrong answer wiggling has been disabled as
// it causes a re-focus on the answer button to occur, making it
// impossible to hear what the effect of the press was in a
// screen reader.
//$("#check-answer-button")
//.parent() // .check-answer-wrapper makes shake behave
//.effect("shake", {times: 3, distance: 5}, 480);
if (framework === "perseus") {
// TODO(alpert)?
} else if (framework === "khan-exercises") {
// NOTE(jeresig): Auto-focusing back on to the input when an
// incorrect answer is given has been disabled. It didn't
// happen when using the mouse and if you used the keyboard
// it made the screen reader really confused.
//$(Khan).trigger("refocusSolutionInput");
}
}
if (!hintsAreFree) {
hintsAreFree = true;
$(".hint-box")
.css("position", "relative")
.animate({
top: -10
}, 250)
.find(".info-box-header")
.slideUp(250)
.end()
.find("#hint")
.removeClass("orange")
.addClass("green");
updateHintButtonText();
}
// if (localMode || Exercises.currentCard.get("preview")) {
// // Skip the server; just pretend we have success
// return false;
// }
if (previewingItem) {
$("#next-question-button").prop("disabled", true);
// Skip the server; just pretend we have success
return false;
}
// If we're in a practice task but not at the end of it (so the
// user will be doing another question next), let's make the
// request on the multithreaded module: we don't care that much
// how long the request takes (it happens while the user is trying
// the next question) and it's cheaper.
var useMultithreadedModule = (!score.correct ||
(Exercises.learningTask && !Exercises.learningTask.isComplete()));
var url = Khan.odsaFullUrl();
// This needs to be after all updates to Exercises.currentCard (such as the
// "problemDone" event) or it will send incorrect data to the server
var attemptData = Khan.buildAttemptData(
score.correct, ++attempts, stringifiedGuess, timeTaken, skipped,
optOut);
if (shouldUseServerActionQueue()) {
ServerActionQueue.enqueue("makeAttempt", [url, attemptData], 3);
} else {
Khan.saveAttemptToServer(url, attemptData);
}
if (skipped && !Exercises.assessmentMode) {
// Skipping should pull up the next card immediately - but, if we're in
// assessment mode, we don't know what the next card will be yet, so
// wait for the special assessment mode triggers to fire instead.
$(Exercises).trigger("gotoNextProblem");
}
if (Exercises.assessmentMode) {
// Tell the assessment queue that the current question has been
// answered so that it can serve up the next question when its ready
// Set a small timeout to give the browser a chance to show the
// disabled check-answer button. Otherwise in chrome it doesn't show
// Please wait...
setTimeout(function() {
Exercises.AssessmentQueue.answered(score.correct);
}, 10);
}
return false;
}
/**
* Handle the even when a user wants to see a worked example.
* Currently only works on some Perseus problems.
*/
function onShowExampleClicked() {
$(PerseusBridge).trigger("showWorkedExample");
}
/**
* Handle the event when a user clicks to use a hint.
*
* This deals with the internal work to do things like sending the event up
* to the server, as well as triggering the external event "hintUsed" so that
* other parts of the UI may update first. It's separated into two events so
* that the XHR can be sent after the other items have a chance to respond.
*/
function onHintButtonClicked() {
var curTime = new Date().getTime();
var timeTaken = Math.round((curTime - lastAttemptOrHint) / 1000);
lastAttemptOrHint = curTime;
var logEntry = ["hint-activity", "0", timeTaken];
Exercises.userActivityLog.push(logEntry);
if (!previewingItem && !localMode && !userExercise.readOnly &&
!Exercises.currentCard.get("preview") && canAttempt) {
// buildAttemptData reads the number of hints we have taken
// from hintsUsed. However, we haven't updated that yet since
// we haven't gotten a response back, from, you guessed it,
// this request itself. So we increment hintsUsed while
// forming this request so that it gets the number of hints
// that will have been used when this request returns
// successfully.
Khan.hintsUsed++;
// Always put hints on the (cheaper) multithreaded module,
// since we don't care what the API call returns so we don't
// care how slow it is.
var url = fullUrl("problems/" + problemNum + "/hint", true);
var attemptData = Khan.buildAttemptData(false, attempts, "hint",
timeTaken, false, false);
if (shouldUseServerActionQueue()) {
ServerActionQueue.enqueue("hintRequest", [url, attemptData], 3);
} else {
Khan.request(url, attemptData);
}
Khan.hintsUsed--;
}
var framework = Exercises.getCurrentFramework();
if (framework === "perseus") {
$(PerseusBridge).trigger("showHint");
} else if (framework === "khan-exercises") {
$(Khan).trigger("showHint");
}
if (shouldUseServerActionQueue()) {
// onHintShown updated the hintsUsed so we should save that to
// localStorage.
currentExercise.hintsUsed = Khan.hintsUsed;
LocalStore.set("currentExercise", currentExercise);
}
}
function onHintShown(e, data) {
// Grow the scratchpad to cover the new hint
Khan.scratchpad.resize();
Khan.hintsUsed++;
updateHintButtonText();
$(Exercises).trigger("hintUsed", data);
// If there aren't any more hints, disable the get hint button
if (Khan.hintsUsed === numHints) {
$("#hint").attr("disabled", true);
}
// When a hint is shown, clear the "last attempt content" that is used to
// detect duplicate, repeated attempts. Once the user clicks on a hint, we
// consider their next attempt to be unique and legitimate even if it's the
// same answer they attempted previously.
lastAttemptContent = null;
var curTime = new Date().getTime();
var timeTaken = Math.round((curTime - lastAttemptOrHint) / 1000);
lastAttemptOrHint = curTime;
Exercises.userActivityLog.push(["hint-activity", "0", timeTaken]);
if (!previewingItem && !(userExercise && userExercise.readOnly) &&
!(Exercises.currentCard && Exercises.currentCard.get("preview")) && canAttempt) {
var url = Khan.odsaFullUrl();
Khan.request(url, Khan.buildAttemptData(false, attempts, "hint", timeTaken, false));
}
}
function updateHintButtonText() {
var $hintButton = $("#hint");
var hintsLeft = numHints - Khan.hintsUsed;
if (hintsAreFree) {
$hintButton.val(Khan.hintsUsed ?
$._("Show next hint (%(hintsLeft)s left)", {
hintsLeft: hintsLeft
}) :
$._("Show hints (%(hintsLeft)s available)", {
hintsLeft: hintsLeft
}));
} else {
$hintButton.val(Khan.hintsUsed ?
$.ngettext("I'd like another hint (1 hint left)",
"I'd like another hint (%(num)s hints left)",
hintsLeft) :
$._("I'd like a hint"));
}
}
var inUnload = false;
$(window).on("beforeunload", function() {
inUnload = true;
});
// If there are any requests left in the queue when the window unloads then we
// will have permanently lost their answers and will need to clear the session
// cache, to make sure we don't override what is passed down from the servers
$(window).unload(function() {
if (Khan.attemptOrHintQueue.queue().length) {
$(Exercises).trigger("attemptError");
}
});
function fullUrl(method, useMultithreadedModule) {
// The multithreaded module is slower but cheaper. We use it for
// all hints, and problem-attempts that we know are not the last
// attempt in a task. (This is because it usually takes people at
// least a few seconds to read a hint or attempt the next problem,
// which is plenty of time even when on the slower module.)
var apiBaseUrl;
if (Exercises.assessmentMode && useMultithreadedModule) {
apiBaseUrl = "/api/internal/_mt/user/assessment/exercises";
} else if (Exercises.assessmentMode) {
apiBaseUrl = "/api/internal/user/assessment/exercises";
} else if (useMultithreadedModule) {
apiBaseUrl = "/api/internal/_mt/user/exercises";
} else {
apiBaseUrl = "/api/internal/user/exercises";
}
return apiBaseUrl + "/" + userExercise.exerciseModel.name + "/" + method;
}
Khan.attemptOrHintQueue = jQuery({});
// Used for error reporting: what urls are in the queue when an error happens?
Khan.attemptOrHintQueueUrls = [];
function readyForNextProblem(e, data) {
userExercise = data.userExercise;
problemNum = userExercise.totalDone + 1;
$(Exercises).trigger("updateUserExercise", {
userExercise: userExercise
});
// (framework depends on userExercise set above)
var framework = Exercises.getCurrentFramework();
if (framework === "perseus") {
$(PerseusBridge).trigger("readyForNextProblem", data);
} else if (framework === "khan-exercises") {
$(Khan).trigger("readyForNextProblem", data);
}
}
function warning(e, message, showClose) {
$(function() {
var warningBar = $("#warning-bar");
$("#warning-bar-content").html(message);
if (showClose) {
warningBar.addClass("warning")
.children("#warning-bar-close").show();
} else {
warningBar.addClass("error")
.children("#warning-bar-close").hide();
}
warningBar.fadeIn("fast");
});
}
function upcomingExercise(e, data) {
var framework = Exercises.getCurrentFramework(data.userExercise);
if (framework === "perseus") {
$(PerseusBridge).trigger("upcomingExercise", data);
} else if (framework === "khan-exercises") {
$(Khan).trigger("upcomingExercise", data);
}
}
function gotoNextProblem() {
var framework = Exercises.getCurrentFramework();
if (framework === "perseus") {
// TODO(alpert)
} else if (framework === "khan-exercises") {
$(Khan).trigger("gotoNextProblem");
}
}
function updateUserExercise(e, data) {
var framework = Exercises.getCurrentFramework();
if (framework === "perseus") {
// TODO(alpert)
} else if (framework === "khan-exercises") {
$(Khan).trigger("updateUserExercise", data);
}
}
function showOptOut() {
$("#opt-out-button").show();
}
function enableCheckAnswer() {
$("#check-answer-button")
.prop("disabled", false)
.removeClass("buttonDisabled")
.val(originalCheckAnswerText);
$("#skip-question-button")
.prop("disabled", false)
.removeClass("buttonDisabled");
$("#opt-out-button")
.prop("disabled", false)
.removeClass("buttonDisabled");
}
function disableCheckAnswer() {
$("#check-answer-button")
.prop("disabled", true)
.addClass("buttonDisabled")
.val($._("Please wait..."));
$("#skip-question-button")
.prop("disabled", true)
.addClass("buttonDisabled");
$("#opt-out-button")
.prop("disabled", true)
.addClass("buttonDisabled");
}
function subhintExpand(e, subhintName) {
// write to KALOG capturing the subhint-expand
// click
if (!localMode) {
$.post("/api/internal/misc/subhint_expand", {
subhintName: subhintName
});
}
}
function clearExistingProblem() {
$("#happy").hide();
// Toggle the navigation buttons
$("#check-answer-button").show();
$("#next-question-button").blur().hide();
$("#positive-reinforcement").hide();
// #solutionarea might have been moved by makeProblem(), so put it back
// to the default location (which is also where Perseus expects it to be)
$(".solutionarea-placeholder").after($("#solutionarea"));
// Wipe out any previous problem
PerseusBridge.cleanupProblem() || Khan.cleanupProblem();
$("#workarea, #hintsarea, #solutionarea").empty();
// Take off the event handlers for disabling check answer; we'll rebind
// if we actually want them
$("#solutionarea").off(".emptyAnswer");
// Restore the hint button's original appearance
$("#hint")
.removeClass("green")
.addClass("orange")
.val($._("I'd like a hint"))
.data("buttonText", false)
.appendTo("#get-hint-button-container");
$(".hint-box")
.css("top", 0)
.find(".info-box-header")
.show();
Khan.scratchpad.clear();
}
if (shouldUseServerActionQueue()) {
// When this file is sourced, initialize the queue with what is stoed in localstorage
ServerActionQueue.initialize();
}
})();