34 lines
1.1 KiB
TypeScript
34 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 { Scheduler } from "../lib/proto";
|
|
import { postRequest } from "../lib/postrequest";
|
|
import { naturalUnit, unitAmount, unitName } from "../lib/time";
|
|
import * as tr from "../lib/ftl";
|
|
|
|
export async function getCongratsInfo(): Promise<Scheduler.CongratsInfoResponse> {
|
|
return Scheduler.CongratsInfoResponse.decode(
|
|
await postRequest("/_anki/congratsInfo", ""),
|
|
);
|
|
}
|
|
|
|
export function buildNextLearnMsg(info: Scheduler.CongratsInfoResponse): string {
|
|
const secsUntil = info.secsUntilNextLearn;
|
|
// next learning card not due today?
|
|
if (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}`;
|
|
}
|