Anki/ts/editor/editor-toolbar/SubscriptButton.svelte
Lucas Scharenbroch 97dcb776de
Refactor text attribute button components (#3012)
* Factor out common code in bold/italic/underline/sub/sup buttons

* Update exclusiveNames' states on click

* Update exclusiveNames' states on keyboard shortcut
2024-02-18 13:09:05 +07:00

40 lines
1.2 KiB
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import * as tr from "@tslib/ftl";
import { removeStyleProperties } from "@tslib/styling";
import type { MatchType } from "../../domlib/surround";
import { subscriptIcon } from "./icons";
import TextAttributeButton from "./TextAttributeButton.svelte";
export function matcher(element: HTMLElement | SVGElement, match: MatchType): void {
if (element.tagName === "SUB") {
return match.remove();
}
if (element.style.verticalAlign === "sub") {
return match.clear((): void => {
if (
removeStyleProperties(element, "vertical-align") &&
element.className.length === 0
) {
return match.remove();
}
});
}
}
</script>
<TextAttributeButton
tagName="sub"
{matcher}
key="subscript"
tooltip={tr.editingSubscript()}
keyCombination="Control+Shift+="
exclusiveNames={["superscript"]}
>
{@html subscriptIcon}
</TextAttributeButton>