1d72599a37
import _ from "anki/x"; will become import _ from "lib/x"; to fit the directory name.
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import pb from "lib/backend_proto";
|
|
import { postRequest } from "lib/postrequest";
|
|
import { naturalUnit, unitAmount, unitName } from "lib/time";
|
|
|
|
import * as tr from "lib/i18n";
|
|
|
|
export async function getCongratsInfo(): Promise<pb.BackendProto.CongratsInfoOut> {
|
|
return pb.BackendProto.CongratsInfoOut.decode(
|
|
await postRequest("/_anki/congratsInfo", "")
|
|
);
|
|
}
|
|
|
|
export function buildNextLearnMsg(info: pb.BackendProto.CongratsInfoOut): string {
|
|
const secsUntil = info.secsUntilNextLearn;
|
|
// next learning card not due (/ until tomorrow)?
|
|
if (secsUntil == 0 || secsUntil > 86_400) {
|
|
return "";
|
|
}
|
|
|
|
const unit = naturalUnit(secsUntil);
|
|
const amount = Math.round(unitAmount(unit, secsUntil));
|
|
const unitStr = unitName(unit);
|
|
const nextLearnDue = tr.schedulingNextLearnDue({
|
|
amount,
|
|
unit: unitStr,
|
|
});
|
|
const remaining = tr.schedulingLearnRemaining({
|
|
remaining: info.learnRemaining,
|
|
});
|
|
return `${nextLearnDue} ${remaining}`;
|
|
}
|