mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Factor out common code in bold/italic/underline/sub/sup buttons * Update exclusiveNames' states on click * Update exclusiveNames' states on keyboard shortcut
40 lines
1.2 KiB
Svelte
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 { boldIcon } from "./icons";
|
|
import TextAttributeButton from "./TextAttributeButton.svelte";
|
|
|
|
function matcher(element: HTMLElement | SVGElement, match: MatchType): void {
|
|
if (element.tagName === "B" || element.tagName === "STRONG") {
|
|
return match.remove();
|
|
}
|
|
|
|
const fontWeight = element.style.fontWeight;
|
|
if (fontWeight === "bold" || Number(fontWeight) >= 700) {
|
|
return match.clear((): void => {
|
|
if (
|
|
removeStyleProperties(element, "font-weight") &&
|
|
element.className.length === 0
|
|
) {
|
|
match.remove();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<TextAttributeButton
|
|
tagName="b"
|
|
{matcher}
|
|
key="bold"
|
|
tooltip={tr.editingBoldText()}
|
|
keyCombination="Control+B"
|
|
>
|
|
{@html boldIcon}
|
|
</TextAttributeButton>
|