Anki/ts/editor/editor-toolbar/BoldButton.svelte
mmjang 9ced6be03e
Decide if element is bold by getComputedStyle (#2453) (#2579)
* Decide if element is bold by getComputedStyle (#2453)

* Use getComputedStyle() for italics too (dae)
2024-10-02 19:37:40 +10:00

43 lines
1.3 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 "@generated/ftl";
import { removeStyleProperties } from "@tslib/styling";
import Icon from "$lib/components/Icon.svelte";
import { boldIcon } from "$lib/components/icons";
import type { MatchType } from "$lib/domlib/surround";
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 = getComputedStyle(element).fontWeight;
const threshold = 700;
if (fontWeight && Number(fontWeight) >= threshold) {
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"
>
<Icon icon={boldIcon} />
</TextAttributeButton>