anki/qt/ts/src/reviewer.ts

140 lines
3.1 KiB
TypeScript
Raw Normal View History

2019-02-05 04:59:03 +01:00
/* Copyright: Ankitects Pty Ltd and contributors
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
var ankiPlatform = "desktop";
var typeans;
var _updatingQA = false;
var qFade = 100;
var aFade = 0;
var onUpdateHook;
var onShownHook;
function _runHook(arr) {
2019-12-18 07:12:39 +01:00
for (var i = 0; i < arr.length; i++) {
arr[i]();
}
}
function _updateQA(html, fadeTime, onupdate, onshown) {
// if a request to update q/a comes in before the previous content
// has been loaded, wait a while and try again
if (_updatingQA) {
2019-12-18 07:12:39 +01:00
setTimeout(function() {
_updateQA(html, fadeTime, onupdate, onshown);
}, 50);
return;
}
_updatingQA = true;
onUpdateHook = [onupdate];
onShownHook = [onshown];
// fade out current text
var qa = $("#qa");
qa.fadeTo(fadeTime, 0, function() {
// update text
try {
qa.html(html);
2019-12-18 07:12:39 +01:00
} catch (err) {
qa.html(
(
`Invalid HTML on card: ${String(err).substring(
0,
2000
)}\n` + String(err.stack).substring(0, 2000)
).replace(/\n/g, "<br />")
);
}
_runHook(onUpdateHook);
// don't allow drags of images, which cause them to be deleted
2019-12-18 04:32:32 +01:00
$("img").attr("draggable", "false");
// render mathjax
MathJax.Hub.Queue(["Typeset", MathJax.Hub]);
// and reveal when processing is done
2019-12-18 07:12:39 +01:00
MathJax.Hub.Queue(function() {
qa.fadeTo(fadeTime, 1, function() {
_runHook(onShownHook);
_updatingQA = false;
});
});
});
2017-07-28 08:48:49 +02:00
}
function _showQuestion(q, bodyclass) {
2019-12-18 07:12:39 +01:00
_updateQA(
q,
qFade,
function() {
// return to top of window
window.scrollTo(0, 0);
document.body.className = bodyclass;
2019-12-18 07:12:39 +01:00
},
function() {
// focus typing area if visible
typeans = document.getElementById("typeans");
if (typeans) {
typeans.focus();
}
}
2019-12-18 07:12:39 +01:00
);
}
2019-12-18 07:12:39 +01:00
function _showAnswer(a, bodyclass) {
_updateQA(
a,
aFade,
function() {
if (bodyclass) {
// when previewing
document.body.className = bodyclass;
}
// scroll to answer?
var e = $("#answer");
if (e[0]) {
e[0].scrollIntoView();
}
},
function() {}
);
}
2019-12-18 04:32:32 +01:00
const _flagColours = {
2018-11-01 05:58:41 +01:00
1: "#ff6666",
2: "#ff9900",
3: "#77ff77",
2019-12-18 07:12:39 +01:00
4: "#77aaff",
};
function _drawFlag(flag) {
var elem = $("#_flag");
if (flag === 0) {
elem.hide();
return;
}
elem.show();
elem.css("color", _flagColours[flag]);
}
function _drawMark(mark) {
var elem = $("#_mark");
if (!mark) {
elem.hide();
} else {
elem.show();
}
}
function _typeAnsPress() {
2019-12-18 04:32:32 +01:00
if ((window.event as KeyboardEvent).keyCode === 13) {
pycmd("ans");
}
}