2021-04-15 15:59:52 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
2021-04-22 03:25:31 +02:00
|
|
|
import type WithShortcuts from "editor-toolbar/WithShortcuts.svelte";
|
|
|
|
import type { WithShortcutsProps } from "editor-toolbar/WithShortcuts";
|
2021-04-20 14:23:28 +02:00
|
|
|
import type { DynamicSvelteComponent } from "sveltelib/dynamicComponent";
|
2021-04-08 23:08:36 +02:00
|
|
|
|
|
|
|
import * as tr from "anki/i18n";
|
2021-04-22 03:25:31 +02:00
|
|
|
import { iconButton, withShortcuts } from "editor-toolbar/dynamicComponents";
|
2021-04-08 23:08:36 +02:00
|
|
|
|
|
|
|
import bracketsIcon from "./code-brackets.svg";
|
|
|
|
|
2021-04-20 14:23:28 +02:00
|
|
|
import { forEditorField } from ".";
|
2021-04-20 15:41:26 +02:00
|
|
|
import { wrap } from "./wrap";
|
2021-04-20 14:23:28 +02:00
|
|
|
|
2021-04-08 23:08:36 +02:00
|
|
|
const clozePattern = /\{\{c(\d+)::/gu;
|
|
|
|
function getCurrentHighestCloze(increment: boolean): number {
|
|
|
|
let highest = 0;
|
|
|
|
|
|
|
|
forEditorField([], (field) => {
|
2021-04-21 14:18:44 +02:00
|
|
|
const fieldHTML = field.editingArea.editable.fieldHTML;
|
|
|
|
const matches: number[] = [];
|
|
|
|
let match: RegExpMatchArray | null = null;
|
|
|
|
|
|
|
|
while ((match = clozePattern.exec(fieldHTML))) {
|
|
|
|
matches.push(Number(match[1]));
|
|
|
|
}
|
|
|
|
|
|
|
|
highest = Math.max(highest, ...matches);
|
2021-04-08 23:08:36 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (increment) {
|
|
|
|
highest++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Math.max(1, highest);
|
|
|
|
}
|
|
|
|
|
|
|
|
function onCloze(event: MouseEvent): void {
|
|
|
|
const highestCloze = getCurrentHighestCloze(!event.altKey);
|
|
|
|
wrap(`{{c${highestCloze}::`, "}}");
|
|
|
|
}
|
|
|
|
|
2021-04-22 03:25:31 +02:00
|
|
|
export function getClozeButton(): DynamicSvelteComponent<typeof WithShortcuts> &
|
|
|
|
WithShortcutsProps {
|
|
|
|
return withShortcuts({
|
2021-04-22 03:37:01 +02:00
|
|
|
id: "cloze",
|
2021-04-22 03:25:31 +02:00
|
|
|
shortcuts: ["Control+Shift+KeyC", "Control+Alt+Shift+KeyC"],
|
|
|
|
button: iconButton({
|
|
|
|
icon: bracketsIcon,
|
|
|
|
onClick: onCloze,
|
|
|
|
tooltip: tr.editingClozeDeletionCtrlandshiftandc(),
|
|
|
|
}),
|
2021-04-09 18:42:41 +02:00
|
|
|
});
|
|
|
|
}
|