9ca13ca3bc
* Export surrounder directly from RichTextInput * Change wording in editor/surround * Remove empty line * Change wording * Fix interfaces * Add field description directly in NoteEditor * Strip description logic from ContentEditable * Make RichTextInput position: relative * Make attachToShadow an async function * Apply field styling to field description * Show FieldDescription only if content empty * Remove descriptionStore and descriptionKey * Revert "Make attachToShadow an async function" This reverts commit b62705eadf7335c7ee0c6c8797047e1f1ccdbf44. SvelteActionReturnType does not accept Promise<void> * Fix mess after merge commit * Require registering surround formats
137 lines
4.1 KiB
Svelte
137 lines
4.1 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 { onMount } from "svelte";
|
|
|
|
import Checkbox from "../../components/CheckBox.svelte";
|
|
import DropdownItem from "../../components/DropdownItem.svelte";
|
|
import DropdownMenu from "../../components/DropdownMenu.svelte";
|
|
import { withButton } from "../../components/helpers";
|
|
import IconButton from "../../components/IconButton.svelte";
|
|
import Shortcut from "../../components/Shortcut.svelte";
|
|
import WithDropdown from "../../components/WithDropdown.svelte";
|
|
import type { MatchType } from "../../domlib/surround";
|
|
import * as tr from "../../lib/ftl";
|
|
import { altPressed } from "../../lib/keys";
|
|
import { getPlatformString } from "../../lib/shortcuts";
|
|
import { singleCallback } from "../../lib/typing";
|
|
import { surrounder } from "../rich-text-input";
|
|
import type { RemoveFormat } from "./EditorToolbar.svelte";
|
|
import { context as editorToolbarContext } from "./EditorToolbar.svelte";
|
|
import { eraserIcon } from "./icons";
|
|
import { arrowIcon } from "./icons";
|
|
|
|
const { removeFormats } = editorToolbarContext.get();
|
|
|
|
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 key = "simple spans";
|
|
const format = {
|
|
matcher,
|
|
surroundElement,
|
|
};
|
|
|
|
removeFormats.update((formats) =>
|
|
formats.concat({
|
|
key,
|
|
name: key,
|
|
show: false,
|
|
active: true,
|
|
}),
|
|
);
|
|
|
|
let activeKeys: string[];
|
|
$: activeKeys = $removeFormats
|
|
.filter((format) => format.active)
|
|
.map((format) => format.key);
|
|
|
|
let inactiveKeys: string[];
|
|
$: inactiveKeys = $removeFormats
|
|
.filter((format) => !format.active)
|
|
.map((format) => format.key);
|
|
|
|
let showFormats: RemoveFormat[];
|
|
$: showFormats = $removeFormats.filter((format) => format.show);
|
|
|
|
function remove(): void {
|
|
surrounder.remove(activeKeys, inactiveKeys);
|
|
}
|
|
|
|
function onItemClick(event: MouseEvent, format: RemoveFormat): void {
|
|
if (altPressed(event)) {
|
|
for (const format of showFormats) {
|
|
format.active = false;
|
|
}
|
|
}
|
|
|
|
format.active = !format.active;
|
|
$removeFormats = $removeFormats;
|
|
}
|
|
|
|
const keyCombination = "Control+R";
|
|
|
|
let disabled: boolean;
|
|
|
|
onMount(() =>
|
|
singleCallback(
|
|
surrounder.active.subscribe((value) => (disabled = !value)),
|
|
surrounder.registerFormat(key, format),
|
|
),
|
|
);
|
|
</script>
|
|
|
|
<IconButton
|
|
tooltip="{tr.editingRemoveFormatting()} ({getPlatformString(keyCombination)})"
|
|
{disabled}
|
|
on:click={remove}
|
|
--border-left-radius="5px"
|
|
>
|
|
{@html eraserIcon}
|
|
</IconButton>
|
|
|
|
<Shortcut {keyCombination} on:action={remove} />
|
|
|
|
<div class="hide-after">
|
|
<WithDropdown autoClose="outside" let:createDropdown --border-right-radius="5px">
|
|
<IconButton
|
|
tooltip={tr.editingSelectRemoveFormatting()}
|
|
{disabled}
|
|
widthMultiplier={0.5}
|
|
on:mount={withButton(createDropdown)}
|
|
>
|
|
{@html arrowIcon}
|
|
</IconButton>
|
|
|
|
<DropdownMenu on:mousedown={(event) => event.preventDefault()}>
|
|
{#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}
|
|
</DropdownMenu>
|
|
</WithDropdown>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.hide-after {
|
|
display: contents;
|
|
|
|
:global(.dropdown-toggle::after) {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|