f51d1590a1
When a pop-up menu was closed by clicking on an empty space outside the fields, the variable controlling the display state was not changed, causing the pop-up menu to flash momentarily the next time a field was focused.
143 lines
4.3 KiB
Svelte
143 lines
4.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 "@tslib/ftl";
|
|
import { altPressed, shiftPressed } from "@tslib/keys";
|
|
import { getPlatformString } from "@tslib/shortcuts";
|
|
import { singleCallback } from "@tslib/typing";
|
|
import { onMount } from "svelte";
|
|
|
|
import CheckBox from "../../components/CheckBox.svelte";
|
|
import DropdownItem from "../../components/DropdownItem.svelte";
|
|
import IconButton from "../../components/IconButton.svelte";
|
|
import Popover from "../../components/Popover.svelte";
|
|
import Shortcut from "../../components/Shortcut.svelte";
|
|
import WithFloating from "../../components/WithFloating.svelte";
|
|
import type { MatchType } from "../../domlib/surround";
|
|
import { chevronDown } from "../icons";
|
|
import { surrounder } from "../rich-text-input";
|
|
import type { RemoveFormat } from "./EditorToolbar.svelte";
|
|
import { context as editorToolbarContext } from "./EditorToolbar.svelte";
|
|
import { eraserIcon } from "./icons";
|
|
|
|
const { removeFormats } = editorToolbarContext.get();
|
|
|
|
function filterForKeys(formats: RemoveFormat[], value: boolean): string[] {
|
|
return formats
|
|
.filter((format) => format.active === value)
|
|
.map((format) => format.key);
|
|
}
|
|
|
|
let activeKeys: string[];
|
|
$: activeKeys = filterForKeys($removeFormats, true);
|
|
|
|
let inactiveKeys: string[];
|
|
$: inactiveKeys = filterForKeys($removeFormats, false);
|
|
|
|
let showFormats: RemoveFormat[];
|
|
$: showFormats = $removeFormats.filter(
|
|
(format: RemoveFormat): boolean => format.show,
|
|
);
|
|
|
|
function remove(): void {
|
|
surrounder.remove(activeKeys, inactiveKeys);
|
|
}
|
|
|
|
function onItemClick(event: MouseEvent, format: RemoveFormat): void {
|
|
if (altPressed(event)) {
|
|
const value = shiftPressed(event);
|
|
|
|
for (const format of showFormats) {
|
|
format.active = value;
|
|
}
|
|
}
|
|
|
|
format.active = !format.active;
|
|
$removeFormats = $removeFormats;
|
|
}
|
|
|
|
const keyCombination = "Control+R";
|
|
|
|
let disabled: boolean;
|
|
let showFloating = false;
|
|
$: if (disabled) {
|
|
showFloating = false;
|
|
}
|
|
|
|
onMount(() => {
|
|
const surroundElement = document.createElement("span");
|
|
|
|
function matcher(
|
|
element: HTMLElement | SVGElement,
|
|
match: MatchType<never>,
|
|
): void {
|
|
if (
|
|
element.tagName === "SPAN" &&
|
|
element.className.length === 0 &&
|
|
element.style.cssText.length === 0
|
|
) {
|
|
match.remove();
|
|
}
|
|
}
|
|
|
|
const simpleSpans = {
|
|
matcher,
|
|
surroundElement,
|
|
};
|
|
|
|
const key = "simple spans";
|
|
|
|
removeFormats.update((formats: RemoveFormat[]): RemoveFormat[] => [
|
|
...formats,
|
|
{
|
|
key,
|
|
name: key,
|
|
show: false,
|
|
active: true,
|
|
},
|
|
]);
|
|
|
|
return singleCallback(
|
|
surrounder.active.subscribe((value) => (disabled = !value)),
|
|
surrounder.registerFormat(key, simpleSpans),
|
|
);
|
|
});
|
|
</script>
|
|
|
|
<IconButton
|
|
tooltip="{tr.editingRemoveFormatting()} ({getPlatformString(keyCombination)})"
|
|
{disabled}
|
|
on:click={remove}
|
|
--border-left-radius="5px"
|
|
>
|
|
{@html eraserIcon}
|
|
</IconButton>
|
|
|
|
<Shortcut {keyCombination} on:action={remove} />
|
|
|
|
<WithFloating show={showFloating} inline on:close={() => (showFloating = false)}>
|
|
<IconButton
|
|
slot="reference"
|
|
class="remove-format-button"
|
|
tooltip={tr.editingSelectRemoveFormatting()}
|
|
{disabled}
|
|
widthMultiplier={0.5}
|
|
iconSize={120}
|
|
--border-right-radius="5px"
|
|
on:click={() => (showFloating = !showFloating)}
|
|
>
|
|
{@html chevronDown}
|
|
</IconButton>
|
|
|
|
<Popover slot="floating" --popover-padding-inline="0">
|
|
{#each showFormats as format (format.name)}
|
|
<DropdownItem on:click={(event) => onItemClick(event, format)}>
|
|
<CheckBox bind:value={format.active} />
|
|
<span class="d-flex-inline ps-3">{format.name}</span>
|
|
</DropdownItem>
|
|
{/each}
|
|
</Popover>
|
|
</WithFloating>
|