anki/qt/aqt/data/web/js/reviewer.ts

156 lines
3.5 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 */
2020-12-29 13:43:47 +01:00
declare var MathJax: any;
type Callback = () => void | Promise<void>;
var ankiPlatform = "desktop";
var typeans;
var _updatingQueue: Promise<void> = Promise.resolve();
2020-12-22 04:02:07 +01:00
var qFade = 50;
var aFade = 0;
var onUpdateHook: Array<Callback>;
var onShownHook: Array<Callback>;
function _runHook(arr: Array<Callback>): Promise<void[]> {
var promises = [];
2019-12-18 07:12:39 +01:00
for (var i = 0; i < arr.length; i++) {
promises.push(arr[i]());
}
return Promise.all(promises);
}
function _queueAction(action: Callback): void {
_updatingQueue = _updatingQueue.then(action);
}
2020-12-30 15:06:22 +01:00
async function _updateQA(
html: string,
fadeTime: number,
onupdate: Callback,
onshown: Callback
2020-12-30 15:06:22 +01:00
): Promise<void> {
onUpdateHook = [onupdate];
onShownHook = [onshown];
var qa = $("#qa");
// fade out current text
2020-12-29 13:32:04 +01:00
await qa.fadeTo(fadeTime, 0).promise();
// update text
try {
qa.html(html);
} catch (err) {
qa.html(
(
`Invalid HTML on card: ${String(err).substring(0, 2000)}\n` +
String(err.stack).substring(0, 2000)
).replace(/\n/g, "<br />")
);
2020-12-29 14:45:20 +01:00
}
2020-12-29 13:32:04 +01:00
await _runHook(onUpdateHook);
2020-12-29 13:43:47 +01:00
// wait for mathjax to ready
2020-12-29 13:32:04 +01:00
await MathJax.startup.promise.then(() => {
2020-12-29 13:43:47 +01:00
// clear MathJax buffers from previous typesets
2020-12-29 13:32:04 +01:00
MathJax.typesetClear();
return MathJax.typesetPromise(qa.slice(0, 1));
});
// and reveal when processing is done
await qa.fadeTo(fadeTime, 1).promise();
await _runHook(onShownHook);
2017-07-28 08:48:49 +02:00
}
2020-12-30 15:06:22 +01:00
function _showQuestion(q: string, bodyclass: string): void {
_queueAction(() =>
_updateQA(
q,
qFade,
function () {
// return to top of window
window.scrollTo(0, 0);
2019-12-18 07:12:39 +01:00
document.body.className = bodyclass;
2020-12-30 15:06:22 +01:00
},
function () {
// focus typing area if visible
typeans = document.getElementById("typeans");
if (typeans) {
typeans.focus();
}
2019-12-18 07:12:39 +01:00
}
2020-12-30 15:06:22 +01:00
)
);
}
2019-12-18 07:12:39 +01:00
2020-12-30 15:06:22 +01:00
function _showAnswer(a: string, bodyclass: string): void {
_queueAction(() =>
_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",
};
2021-01-01 14:14:50 +01:00
function _drawFlag(flag: 0 | 1 | 2 | 3 | 4): void {
var elem = $("#_flag");
if (flag === 0) {
elem.hide();
return;
}
elem.show();
elem.css("color", _flagColours[flag]);
}
2020-12-30 15:06:22 +01:00
function _drawMark(mark: boolean): void {
var elem = $("#_mark");
if (!mark) {
elem.hide();
} else {
elem.show();
}
}
2020-12-30 15:06:22 +01:00
function _typeAnsPress(): void {
2019-12-18 04:32:32 +01:00
if ((window.event as KeyboardEvent).keyCode === 13) {
pycmd("ans");
}
}
2020-12-30 15:06:22 +01:00
function _emulateMobile(enabled: boolean): void {
const list = document.documentElement.classList;
if (enabled) {
list.add("mobile");
} else {
list.remove("mobile");
}
}