mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Last polishes for Surrounder class (#2017)
* Make private properties in Surrounder truly private * Fix remove logic of Surrounder * No reason for toggleTriggerRemove to be async * Allow using alt-shift to set all remove formats but this one * modifyFormat => updateFormat * Fix formatting
This commit is contained in:
parent
4b3332bdb8
commit
c7f3bae738
4 changed files with 207 additions and 142 deletions
|
@ -14,7 +14,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
import WithDropdown from "../../components/WithDropdown.svelte";
|
import WithDropdown from "../../components/WithDropdown.svelte";
|
||||||
import type { MatchType } from "../../domlib/surround";
|
import type { MatchType } from "../../domlib/surround";
|
||||||
import * as tr from "../../lib/ftl";
|
import * as tr from "../../lib/ftl";
|
||||||
import { altPressed } from "../../lib/keys";
|
import { altPressed, shiftPressed } from "../../lib/keys";
|
||||||
import { getPlatformString } from "../../lib/shortcuts";
|
import { getPlatformString } from "../../lib/shortcuts";
|
||||||
import { singleCallback } from "../../lib/typing";
|
import { singleCallback } from "../../lib/typing";
|
||||||
import { surrounder } from "../rich-text-input";
|
import { surrounder } from "../rich-text-input";
|
||||||
|
@ -25,45 +25,22 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
|
|
||||||
const { removeFormats } = editorToolbarContext.get();
|
const { removeFormats } = editorToolbarContext.get();
|
||||||
|
|
||||||
const surroundElement = document.createElement("span");
|
function filterForKeys(formats: RemoveFormat[], value: boolean): string[] {
|
||||||
|
return formats
|
||||||
function matcher(element: HTMLElement | SVGElement, match: MatchType<never>): void {
|
.filter((format) => format.active === value)
|
||||||
if (
|
.map((format) => format.key);
|
||||||
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[];
|
let activeKeys: string[];
|
||||||
$: activeKeys = $removeFormats
|
$: activeKeys = filterForKeys($removeFormats, true);
|
||||||
.filter((format) => format.active)
|
|
||||||
.map((format) => format.key);
|
|
||||||
|
|
||||||
let inactiveKeys: string[];
|
let inactiveKeys: string[];
|
||||||
$: inactiveKeys = $removeFormats
|
$: inactiveKeys = filterForKeys($removeFormats, false);
|
||||||
.filter((format) => !format.active)
|
|
||||||
.map((format) => format.key);
|
|
||||||
|
|
||||||
let showFormats: RemoveFormat[];
|
let showFormats: RemoveFormat[];
|
||||||
$: showFormats = $removeFormats.filter((format) => format.show);
|
$: showFormats = $removeFormats.filter(
|
||||||
|
(format: RemoveFormat): boolean => format.show,
|
||||||
|
);
|
||||||
|
|
||||||
function remove(): void {
|
function remove(): void {
|
||||||
surrounder.remove(activeKeys, inactiveKeys);
|
surrounder.remove(activeKeys, inactiveKeys);
|
||||||
|
@ -71,8 +48,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
|
|
||||||
function onItemClick(event: MouseEvent, format: RemoveFormat): void {
|
function onItemClick(event: MouseEvent, format: RemoveFormat): void {
|
||||||
if (altPressed(event)) {
|
if (altPressed(event)) {
|
||||||
|
const value = shiftPressed(event);
|
||||||
|
|
||||||
for (const format of showFormats) {
|
for (const format of showFormats) {
|
||||||
format.active = false;
|
format.active = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,12 +63,44 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
|
|
||||||
let disabled: boolean;
|
let disabled: boolean;
|
||||||
|
|
||||||
onMount(() =>
|
onMount(() => {
|
||||||
singleCallback(
|
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.active.subscribe((value) => (disabled = !value)),
|
||||||
surrounder.registerFormat(key, format),
|
surrounder.registerFormat(key, simpleSpans),
|
||||||
),
|
|
||||||
);
|
);
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<IconButton
|
<IconButton
|
||||||
|
|
|
@ -3,6 +3,8 @@ Copyright: Ankitects Pty Ltd and contributors
|
||||||
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
-->
|
-->
|
||||||
<script context="module" lang="ts">
|
<script context="module" lang="ts">
|
||||||
|
import { writable } from "svelte/store";
|
||||||
|
|
||||||
import type { ContentEditableAPI } from "../../editable/ContentEditable.svelte";
|
import type { ContentEditableAPI } from "../../editable/ContentEditable.svelte";
|
||||||
import type { InputHandlerAPI } from "../../sveltelib/input-handler";
|
import type { InputHandlerAPI } from "../../sveltelib/input-handler";
|
||||||
import type { EditingInputAPI, FocusableInputAPI } from "../EditingArea.svelte";
|
import type { EditingInputAPI, FocusableInputAPI } from "../EditingArea.svelte";
|
||||||
|
@ -38,7 +40,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
const [globalInputHandler, setupGlobalInputHandler] = useInputHandler();
|
const [globalInputHandler, setupGlobalInputHandler] = useInputHandler();
|
||||||
const [lifecycle, instances, setupLifecycleHooks] =
|
const [lifecycle, instances, setupLifecycleHooks] =
|
||||||
lifecycleHooks<RichTextInputAPI>();
|
lifecycleHooks<RichTextInputAPI>();
|
||||||
const surrounder = Surrounder.make();
|
const apiStore = writable<SurroundedAPI | null>(null);
|
||||||
|
const surrounder = Surrounder.make(apiStore);
|
||||||
|
|
||||||
registerPackage("anki/RichTextInput", {
|
registerPackage("anki/RichTextInput", {
|
||||||
context,
|
context,
|
||||||
|
@ -176,16 +179,16 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
|
|
||||||
function setFocus(): void {
|
function setFocus(): void {
|
||||||
$focusedInput = api;
|
$focusedInput = api;
|
||||||
surrounder.enable(api);
|
$apiStore = api;
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeFocus(): void {
|
||||||
// We do not unset focusedInput here.
|
// We do not unset focusedInput here.
|
||||||
// If we did, UI components for the input would react the store
|
// If we did, UI components for the input would react the store
|
||||||
// being unset, even though most likely it will be set to some other
|
// being unset, even though most likely it will be set to some other
|
||||||
// field right away.
|
// field right away.
|
||||||
}
|
|
||||||
|
|
||||||
function removeFocus(): void {
|
$apiStore = null;
|
||||||
surrounder.disable();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$: pushUpdate(!hidden);
|
$: pushUpdate(!hidden);
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
// Copyright: Ankitects Pty Ltd and contributors
|
// Copyright: Ankitects Pty Ltd and contributors
|
||||||
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
|
|
||||||
import type { Writable } from "svelte/store";
|
import type { Readable } from "svelte/store";
|
||||||
import { get, writable } from "svelte/store";
|
import { derived, get } from "svelte/store";
|
||||||
|
|
||||||
import type { Matcher } from "../domlib/find-above";
|
import type { Matcher } from "../domlib/find-above";
|
||||||
import { findClosest } from "../domlib/find-above";
|
import { findClosest } from "../domlib/find-above";
|
||||||
import type { SurroundFormat } from "../domlib/surround";
|
import type { SurroundFormat } from "../domlib/surround";
|
||||||
import { boolMatcher, reformat, surround, unsurround } from "../domlib/surround";
|
import { boolMatcher, reformat, surround, unsurround } from "../domlib/surround";
|
||||||
import { getRange, getSelection } from "../lib/cross-browser";
|
import { getRange, getSelection } from "../lib/cross-browser";
|
||||||
|
import { asyncNoop } from "../lib/functional";
|
||||||
import { registerPackage } from "../lib/runtime-require";
|
import { registerPackage } from "../lib/runtime-require";
|
||||||
import type { TriggerItem } from "../sveltelib/handler-list";
|
import type { TriggerItem } from "../sveltelib/handler-list";
|
||||||
import type { InputHandlerAPI } from "../sveltelib/input-handler";
|
import type { InputHandlerAPI } from "../sveltelib/input-handler";
|
||||||
|
@ -67,52 +68,55 @@ export interface SurroundedAPI {
|
||||||
inputHandler: InputHandlerAPI;
|
inputHandler: InputHandlerAPI;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Surrounder<T = unknown> {
|
/**
|
||||||
static make<T>(): Surrounder<T> {
|
|
||||||
return new Surrounder();
|
|
||||||
}
|
|
||||||
|
|
||||||
private api: SurroundedAPI | null = null;
|
|
||||||
private triggers: Map<string, TriggerItem<{ event: InputEvent; text: Text }>> =
|
|
||||||
new Map();
|
|
||||||
|
|
||||||
active: Writable<boolean> = writable(false);
|
|
||||||
|
|
||||||
enable(api: SurroundedAPI): void {
|
|
||||||
this.api = api;
|
|
||||||
this.active.set(true);
|
|
||||||
|
|
||||||
for (const key of this.formats.keys()) {
|
|
||||||
this.triggers.set(
|
|
||||||
key,
|
|
||||||
this.api.inputHandler.insertText.trigger({ once: true }),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* After calling disable, using any of the surrounding methods will throw an
|
* After calling disable, using any of the surrounding methods will throw an
|
||||||
* exception. Make sure to set the input before trying to use them again.
|
* exception. Make sure to set the input before trying to use them again.
|
||||||
*/
|
*/
|
||||||
disable(): void {
|
export class Surrounder<T = unknown> {
|
||||||
this.api = null;
|
#api?: SurroundedAPI;
|
||||||
this.active.set(false);
|
|
||||||
|
|
||||||
for (const [key, trigger] of this.triggers) {
|
#triggers: Map<string, TriggerItem<{ event: InputEvent; text: Text }>> = new Map();
|
||||||
|
#formats: Map<string, SurroundFormat<T>> = new Map();
|
||||||
|
|
||||||
|
active: Readable<boolean>;
|
||||||
|
|
||||||
|
private constructor(apiStore: Readable<SurroundedAPI | null>) {
|
||||||
|
this.active = derived(apiStore, (api) => Boolean(api));
|
||||||
|
|
||||||
|
apiStore.subscribe((api: SurroundedAPI | null): void => {
|
||||||
|
if (api) {
|
||||||
|
this.#api = api;
|
||||||
|
|
||||||
|
for (const key of this.#formats.keys()) {
|
||||||
|
this.#triggers.set(
|
||||||
|
key,
|
||||||
|
api.inputHandler.insertText.trigger({ once: true }),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.#api = undefined;
|
||||||
|
|
||||||
|
for (const [key, trigger] of this.#triggers) {
|
||||||
trigger.off();
|
trigger.off();
|
||||||
this.triggers.delete(key);
|
this.#triggers.delete(key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
private async _assert_base(): Promise<HTMLElement> {
|
static make<T>(apiStore: Readable<SurroundedAPI | null>): Surrounder<T> {
|
||||||
if (!this.api) {
|
return new Surrounder(apiStore);
|
||||||
throw new Error("Surrounder: No input set");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.api.element;
|
#getBaseElement(): Promise<HTMLElement> {
|
||||||
|
if (!this.#api) {
|
||||||
|
throw new Error("Surrounder: No api set");
|
||||||
}
|
}
|
||||||
|
|
||||||
private _toggleTrigger<T>(
|
return this.#api.element;
|
||||||
|
}
|
||||||
|
|
||||||
|
#toggleTrigger<T>(
|
||||||
base: HTMLElement,
|
base: HTMLElement,
|
||||||
selection: Selection,
|
selection: Selection,
|
||||||
matcher: Matcher,
|
matcher: Matcher,
|
||||||
|
@ -135,7 +139,7 @@ export class Surrounder<T = unknown> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private _toggleTriggerOverwrite<T>(
|
#toggleTriggerOverwrite<T>(
|
||||||
base: HTMLElement,
|
base: HTMLElement,
|
||||||
selection: Selection,
|
selection: Selection,
|
||||||
format: SurroundFormat<T>,
|
format: SurroundFormat<T>,
|
||||||
|
@ -154,51 +158,84 @@ export class Surrounder<T = unknown> {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private _toggleTriggerRemove<T>(
|
#toggleTriggerRemove<T>(
|
||||||
base: HTMLElement,
|
base: HTMLElement,
|
||||||
selection: Selection,
|
selection: Selection,
|
||||||
remove: SurroundFormat<T>[],
|
formats: {
|
||||||
triggers: TriggerItem<{ event: InputEvent; text: Text }>[],
|
format: SurroundFormat<T>;
|
||||||
|
trigger: TriggerItem<{ event: InputEvent; text: Text }>;
|
||||||
|
}[],
|
||||||
reformat: SurroundFormat<T>[] = [],
|
reformat: SurroundFormat<T>[] = [],
|
||||||
): void {
|
): void {
|
||||||
triggers.map((trigger) =>
|
const remainingFormats = formats
|
||||||
trigger.on(async ({ text }) => {
|
.filter(({ trigger }) => {
|
||||||
|
if (get(trigger.active)) {
|
||||||
|
// Deactivate active triggers for active formats.
|
||||||
|
trigger.off();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Otherwise you are within the format. This is why we activate
|
||||||
|
// the trigger, so that the active button is set to inactive.
|
||||||
|
// We still need to remove the format however.
|
||||||
|
trigger.on(asyncNoop);
|
||||||
|
return true;
|
||||||
|
})
|
||||||
|
.map(({ format }) => format);
|
||||||
|
|
||||||
|
// Use an anonymous insertText handler instead of some trigger associated with a name
|
||||||
|
this.#api!.inputHandler.insertText.on(
|
||||||
|
async ({ text }) => {
|
||||||
const range = new Range();
|
const range = new Range();
|
||||||
range.selectNode(text);
|
range.selectNode(text);
|
||||||
|
|
||||||
const clearedRange = removeFormats(range, base, remove, reformat);
|
const clearedRange = removeFormats(
|
||||||
|
range,
|
||||||
|
base,
|
||||||
|
remainingFormats,
|
||||||
|
reformat,
|
||||||
|
);
|
||||||
selection.removeAllRanges();
|
selection.removeAllRanges();
|
||||||
selection.addRange(clearedRange);
|
selection.addRange(clearedRange);
|
||||||
selection.collapseToEnd();
|
selection.collapseToEnd();
|
||||||
}),
|
},
|
||||||
|
{ once: true },
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private formats: Map<string, SurroundFormat<T>> = new Map();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Register a surround format under a certain name.
|
|
||||||
* This name is then used with the surround functions to actually apply or
|
|
||||||
* remove the given format
|
|
||||||
*/
|
|
||||||
registerFormat(key: string, format: SurroundFormat<T>): () => void {
|
|
||||||
this.formats.set(key, format);
|
|
||||||
|
|
||||||
if (this.api) {
|
|
||||||
this.triggers.set(
|
|
||||||
key,
|
|
||||||
this.api.inputHandler.insertText.trigger({ once: true }),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return () => this.formats.delete(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if a surround format under the given key is registered.
|
* Check if a surround format under the given key is registered.
|
||||||
*/
|
*/
|
||||||
hasFormat(key: string): boolean {
|
hasFormat(key: string): boolean {
|
||||||
return this.formats.has(key);
|
return this.#formats.has(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Register a surround format under a certain key.
|
||||||
|
* This name is then used with the surround functions to actually apply or
|
||||||
|
* remove the given format.
|
||||||
|
*/
|
||||||
|
registerFormat(key: string, format: SurroundFormat<T>): () => void {
|
||||||
|
this.#formats.set(key, format);
|
||||||
|
|
||||||
|
if (this.#api) {
|
||||||
|
this.#triggers.set(
|
||||||
|
key,
|
||||||
|
this.#api.inputHandler.insertText.trigger({ once: true }),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return () => this.#formats.delete(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update a surround format under a specific key.
|
||||||
|
*/
|
||||||
|
updateFormat(
|
||||||
|
key: string,
|
||||||
|
update: (format: SurroundFormat<T>) => SurroundFormat<T>,
|
||||||
|
): void {
|
||||||
|
this.#formats.set(key, update(this.#formats.get(key)!));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -206,11 +243,11 @@ export class Surrounder<T = unknown> {
|
||||||
* If the range is already surrounded, it will unsurround instead.
|
* If the range is already surrounded, it will unsurround instead.
|
||||||
*/
|
*/
|
||||||
async surround(formatName: string, exclusiveNames: string[] = []): Promise<void> {
|
async surround(formatName: string, exclusiveNames: string[] = []): Promise<void> {
|
||||||
const base = await this._assert_base();
|
const base = await this.#getBaseElement();
|
||||||
const selection = getSelection(base)!;
|
const selection = getSelection(base)!;
|
||||||
const range = getRange(selection);
|
const range = getRange(selection);
|
||||||
const format = this.formats.get(formatName);
|
const format = this.#formats.get(formatName);
|
||||||
const trigger = this.triggers.get(formatName);
|
const trigger = this.#triggers.get(formatName);
|
||||||
|
|
||||||
if (!format || !range || !trigger) {
|
if (!format || !range || !trigger) {
|
||||||
return;
|
return;
|
||||||
|
@ -219,11 +256,11 @@ export class Surrounder<T = unknown> {
|
||||||
const matcher = boolMatcher(format);
|
const matcher = boolMatcher(format);
|
||||||
|
|
||||||
const exclusives = exclusiveNames
|
const exclusives = exclusiveNames
|
||||||
.map((name) => this.formats.get(name))
|
.map((name) => this.#formats.get(name))
|
||||||
.filter(isValid);
|
.filter(isValid);
|
||||||
|
|
||||||
if (range.collapsed) {
|
if (range.collapsed) {
|
||||||
return this._toggleTrigger(
|
return this.#toggleTrigger(
|
||||||
base,
|
base,
|
||||||
selection,
|
selection,
|
||||||
matcher,
|
matcher,
|
||||||
|
@ -248,22 +285,22 @@ export class Surrounder<T = unknown> {
|
||||||
formatName: string,
|
formatName: string,
|
||||||
exclusiveNames: string[] = [],
|
exclusiveNames: string[] = [],
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
const base = await this._assert_base();
|
const base = await this.#getBaseElement();
|
||||||
const selection = getSelection(base)!;
|
const selection = getSelection(base)!;
|
||||||
const range = getRange(selection);
|
const range = getRange(selection);
|
||||||
const format = this.formats.get(formatName);
|
const format = this.#formats.get(formatName);
|
||||||
const trigger = this.triggers.get(formatName);
|
const trigger = this.#triggers.get(formatName);
|
||||||
|
|
||||||
if (!format || !range || !trigger) {
|
if (!format || !range || !trigger) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const exclusives = exclusiveNames
|
const exclusives = exclusiveNames
|
||||||
.map((name) => this.formats.get(name))
|
.map((name) => this.#formats.get(name))
|
||||||
.filter(isValid);
|
.filter(isValid);
|
||||||
|
|
||||||
if (range.collapsed) {
|
if (range.collapsed) {
|
||||||
return this._toggleTriggerOverwrite(
|
return this.#toggleTriggerOverwrite(
|
||||||
base,
|
base,
|
||||||
selection,
|
selection,
|
||||||
format,
|
format,
|
||||||
|
@ -285,13 +322,13 @@ export class Surrounder<T = unknown> {
|
||||||
* text insert).
|
* text insert).
|
||||||
*/
|
*/
|
||||||
async isSurrounded(formatName: string): Promise<boolean> {
|
async isSurrounded(formatName: string): Promise<boolean> {
|
||||||
const base = await this._assert_base();
|
const base = await this.#getBaseElement();
|
||||||
const selection = getSelection(base)!;
|
const selection = getSelection(base)!;
|
||||||
const range = getRange(selection);
|
const range = getRange(selection);
|
||||||
const format = this.formats.get(formatName);
|
const format = this.#formats.get(formatName);
|
||||||
const trigger = this.triggers.get(formatName);
|
const trigger = this.#triggers.get(formatName);
|
||||||
|
|
||||||
if (!format || !range || !trigger) {
|
if (!range || !format || !trigger) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -303,7 +340,7 @@ export class Surrounder<T = unknown> {
|
||||||
* Clear/Reformat the provided formats in the current range.
|
* Clear/Reformat the provided formats in the current range.
|
||||||
*/
|
*/
|
||||||
async remove(formatNames: string[], reformatNames: string[] = []): Promise<void> {
|
async remove(formatNames: string[], reformatNames: string[] = []): Promise<void> {
|
||||||
const base = await this._assert_base();
|
const base = await this.#getBaseElement();
|
||||||
const selection = getSelection(base)!;
|
const selection = getSelection(base)!;
|
||||||
const range = getRange(selection);
|
const range = getRange(selection);
|
||||||
|
|
||||||
|
@ -311,29 +348,39 @@ export class Surrounder<T = unknown> {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const formats = formatNames
|
const activeFormats = formatNames
|
||||||
.map((name) => this.formats.get(name))
|
.map((name: string) => ({
|
||||||
.filter(isValid);
|
name,
|
||||||
|
format: this.#formats.get(name)!,
|
||||||
|
trigger: this.#triggers.get(name)!,
|
||||||
|
}))
|
||||||
|
.filter(({ format, trigger }): boolean => {
|
||||||
|
if (!format || !trigger) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
const triggers = formatNames
|
const isSurrounded = isSurroundedInner(
|
||||||
.map((name) => this.triggers.get(name))
|
range,
|
||||||
.filter(isValid);
|
base,
|
||||||
|
boolMatcher(format),
|
||||||
|
);
|
||||||
|
return get(trigger.active) ? !isSurrounded : isSurrounded;
|
||||||
|
});
|
||||||
|
|
||||||
const reformats = reformatNames
|
const reformats = reformatNames
|
||||||
.map((name) => this.formats.get(name))
|
.map((name) => this.#formats.get(name))
|
||||||
.filter(isValid);
|
.filter(isValid);
|
||||||
|
|
||||||
if (range.collapsed) {
|
if (range.collapsed) {
|
||||||
return this._toggleTriggerRemove(
|
return this.#toggleTriggerRemove(base, selection, activeFormats, reformats);
|
||||||
base,
|
|
||||||
selection,
|
|
||||||
formats,
|
|
||||||
triggers,
|
|
||||||
reformats,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const surroundedRange = removeFormats(range, base, formats, reformats);
|
const surroundedRange = removeFormats(
|
||||||
|
range,
|
||||||
|
base,
|
||||||
|
activeFormats.map(({ format }) => format),
|
||||||
|
reformats,
|
||||||
|
);
|
||||||
selection.removeAllRanges();
|
selection.removeAllRanges();
|
||||||
selection.addRange(surroundedRange);
|
selection.addRange(surroundedRange);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,10 @@ export function noop(): void {
|
||||||
/* noop */
|
/* noop */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function asyncNoop(): Promise<void> {
|
||||||
|
/* noop */
|
||||||
|
}
|
||||||
|
|
||||||
export function id<T>(t: T): T {
|
export function id<T>(t: T): T {
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue