2021-11-18 10:18:39 +01:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
Move away from Bazel (#2202)
(for upgrading users, please see the notes at the bottom)
Bazel brought a lot of nice things to the table, such as rebuilds based on
content changes instead of modification times, caching of build products,
detection of incorrect build rules via a sandbox, and so on. Rewriting the build
in Bazel was also an opportunity to improve on the Makefile-based build we had
prior, which was pretty poor: most dependencies were external or not pinned, and
the build graph was poorly defined and mostly serialized. It was not uncommon
for fresh checkouts to fail due to floating dependencies, or for things to break
when trying to switch to an older commit.
For day-to-day development, I think Bazel served us reasonably well - we could
generally switch between branches while being confident that builds would be
correct and reasonably fast, and not require full rebuilds (except on Windows,
where the lack of a sandbox and the TS rules would cause build breakages when TS
files were renamed/removed).
Bazel achieves that reliability by defining rules for each programming language
that define how source files should be turned into outputs. For the rules to
work with Bazel's sandboxing approach, they often have to reimplement or
partially bypass the standard tools that each programming language provides. The
Rust rules call Rust's compiler directly for example, instead of using Cargo,
and the Python rules extract each PyPi package into a separate folder that gets
added to sys.path.
These separate language rules allow proper declaration of inputs and outputs,
and offer some advantages such as caching of build products and fine-grained
dependency installation. But they also bring some downsides:
- The rules don't always support use-cases/platforms that the standard language
tools do, meaning they need to be patched to be used. I've had to contribute a
number of patches to the Rust, Python and JS rules to unblock various issues.
- The dependencies we use with each language sometimes make assumptions that do
not hold in Bazel, meaning they either need to be pinned or patched, or the
language rules need to be adjusted to accommodate them.
I was hopeful that after the initial setup work, things would be relatively
smooth-sailing. Unfortunately, that has not proved to be the case. Things
frequently broke when dependencies or the language rules were updated, and I
began to get frustrated at the amount of Anki development time I was instead
spending on build system upkeep. It's now about 2 years since switching to
Bazel, and I think it's time to cut losses, and switch to something else that's
a better fit.
The new build system is based on a small build tool called Ninja, and some
custom Rust code in build/. This means that to build Anki, Bazel is no longer
required, but Ninja and Rust need to be installed on your system. Python and
Node toolchains are automatically downloaded like in Bazel.
This new build system should result in faster builds in some cases:
- Because we're using cargo to build now, Rust builds are able to take advantage
of pipelining and incremental debug builds, which we didn't have with Bazel.
It's also easier to override the default linker on Linux/macOS, which can
further improve speeds.
- External Rust crates are now built with opt=1, which improves performance
of debug builds.
- Esbuild is now used to transpile TypeScript, instead of invoking the TypeScript
compiler. This results in faster builds, by deferring typechecking to test/check
time, and by allowing more work to happen in parallel.
As an example of the differences, when testing with the mold linker on Linux,
adding a new message to tags.proto (which triggers a recompile of the bulk of
the Rust and TypeScript code) results in a compile that goes from about 22s on
Bazel to about 7s in the new system. With the standard linker, it's about 9s.
Some other changes of note:
- Our Rust workspace now uses cargo-hakari to ensure all packages agree on
available features, preventing unnecessary rebuilds.
- pylib/anki is now a PEP420 implicit namespace, avoiding the need to merge
source files and generated files into a single folder for running. By telling
VSCode about the extra search path, code completion now works with generated
files without needing to symlink them into the source folder.
- qt/aqt can't use PEP420 as it's difficult to get rid of aqt/__init__.py.
Instead, the generated files are now placed in a separate _aqt package that's
added to the path.
- ts/lib is now exposed as @tslib, so the source code and generated code can be
provided under the same namespace without a merging step.
- MyPy and PyLint are now invoked once for the entire codebase.
- dprint will be used to format TypeScript/json files in the future instead of
the slower prettier (currently turned off to avoid causing conflicts). It can
automatically defer to prettier when formatting Svelte files.
- svelte-check is now used for typechecking our Svelte code, which revealed a
few typing issues that went undetected with the old system.
- The Jest unit tests now work on Windows as well.
If you're upgrading from Bazel, updated usage instructions are in docs/development.md and docs/build.md. A summary of the changes:
- please remove node_modules and .bazel
- install rustup (https://rustup.rs/)
- install rsync if not already installed (on windows, use pacman - see docs/windows.md)
- install Ninja (unzip from https://github.com/ninja-build/ninja/releases/tag/v1.11.1 and
place on your path, or from your distro/homebrew if it's 1.10+)
- update .vscode/settings.json from .vscode.dist
2022-11-27 06:24:20 +01:00
|
|
|
import { getRange, getSelection } from "@tslib/cross-browser";
|
|
|
|
import { asyncNoop } from "@tslib/functional";
|
|
|
|
import { registerPackage } from "@tslib/runtime-require";
|
2022-08-17 08:00:37 +02:00
|
|
|
import type { Readable } from "svelte/store";
|
|
|
|
import { derived, get } from "svelte/store";
|
2022-02-04 09:36:34 +01:00
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
import type { Matcher } from "../domlib/find-above";
|
|
|
|
import { findClosest } from "../domlib/find-above";
|
|
|
|
import type { SurroundFormat } from "../domlib/surround";
|
|
|
|
import { boolMatcher, reformat, surround, unsurround } from "../domlib/surround";
|
2022-02-25 01:59:06 +01:00
|
|
|
import type { TriggerItem } from "../sveltelib/handler-list";
|
2022-08-15 05:34:16 +02:00
|
|
|
import type { InputHandlerAPI } from "../sveltelib/input-handler";
|
|
|
|
|
|
|
|
function isValid<T>(value: T | undefined): value is T {
|
|
|
|
return Boolean(value);
|
|
|
|
}
|
2021-11-18 10:18:39 +01:00
|
|
|
|
2021-11-24 01:33:14 +01:00
|
|
|
function isSurroundedInner(
|
2021-11-18 10:18:39 +01:00
|
|
|
range: AbstractRange,
|
|
|
|
base: HTMLElement,
|
2022-02-22 13:17:22 +01:00
|
|
|
matcher: Matcher,
|
2021-11-18 10:18:39 +01:00
|
|
|
): boolean {
|
|
|
|
return Boolean(
|
Move away from Bazel (#2202)
(for upgrading users, please see the notes at the bottom)
Bazel brought a lot of nice things to the table, such as rebuilds based on
content changes instead of modification times, caching of build products,
detection of incorrect build rules via a sandbox, and so on. Rewriting the build
in Bazel was also an opportunity to improve on the Makefile-based build we had
prior, which was pretty poor: most dependencies were external or not pinned, and
the build graph was poorly defined and mostly serialized. It was not uncommon
for fresh checkouts to fail due to floating dependencies, or for things to break
when trying to switch to an older commit.
For day-to-day development, I think Bazel served us reasonably well - we could
generally switch between branches while being confident that builds would be
correct and reasonably fast, and not require full rebuilds (except on Windows,
where the lack of a sandbox and the TS rules would cause build breakages when TS
files were renamed/removed).
Bazel achieves that reliability by defining rules for each programming language
that define how source files should be turned into outputs. For the rules to
work with Bazel's sandboxing approach, they often have to reimplement or
partially bypass the standard tools that each programming language provides. The
Rust rules call Rust's compiler directly for example, instead of using Cargo,
and the Python rules extract each PyPi package into a separate folder that gets
added to sys.path.
These separate language rules allow proper declaration of inputs and outputs,
and offer some advantages such as caching of build products and fine-grained
dependency installation. But they also bring some downsides:
- The rules don't always support use-cases/platforms that the standard language
tools do, meaning they need to be patched to be used. I've had to contribute a
number of patches to the Rust, Python and JS rules to unblock various issues.
- The dependencies we use with each language sometimes make assumptions that do
not hold in Bazel, meaning they either need to be pinned or patched, or the
language rules need to be adjusted to accommodate them.
I was hopeful that after the initial setup work, things would be relatively
smooth-sailing. Unfortunately, that has not proved to be the case. Things
frequently broke when dependencies or the language rules were updated, and I
began to get frustrated at the amount of Anki development time I was instead
spending on build system upkeep. It's now about 2 years since switching to
Bazel, and I think it's time to cut losses, and switch to something else that's
a better fit.
The new build system is based on a small build tool called Ninja, and some
custom Rust code in build/. This means that to build Anki, Bazel is no longer
required, but Ninja and Rust need to be installed on your system. Python and
Node toolchains are automatically downloaded like in Bazel.
This new build system should result in faster builds in some cases:
- Because we're using cargo to build now, Rust builds are able to take advantage
of pipelining and incremental debug builds, which we didn't have with Bazel.
It's also easier to override the default linker on Linux/macOS, which can
further improve speeds.
- External Rust crates are now built with opt=1, which improves performance
of debug builds.
- Esbuild is now used to transpile TypeScript, instead of invoking the TypeScript
compiler. This results in faster builds, by deferring typechecking to test/check
time, and by allowing more work to happen in parallel.
As an example of the differences, when testing with the mold linker on Linux,
adding a new message to tags.proto (which triggers a recompile of the bulk of
the Rust and TypeScript code) results in a compile that goes from about 22s on
Bazel to about 7s in the new system. With the standard linker, it's about 9s.
Some other changes of note:
- Our Rust workspace now uses cargo-hakari to ensure all packages agree on
available features, preventing unnecessary rebuilds.
- pylib/anki is now a PEP420 implicit namespace, avoiding the need to merge
source files and generated files into a single folder for running. By telling
VSCode about the extra search path, code completion now works with generated
files without needing to symlink them into the source folder.
- qt/aqt can't use PEP420 as it's difficult to get rid of aqt/__init__.py.
Instead, the generated files are now placed in a separate _aqt package that's
added to the path.
- ts/lib is now exposed as @tslib, so the source code and generated code can be
provided under the same namespace without a merging step.
- MyPy and PyLint are now invoked once for the entire codebase.
- dprint will be used to format TypeScript/json files in the future instead of
the slower prettier (currently turned off to avoid causing conflicts). It can
automatically defer to prettier when formatting Svelte files.
- svelte-check is now used for typechecking our Svelte code, which revealed a
few typing issues that went undetected with the old system.
- The Jest unit tests now work on Windows as well.
If you're upgrading from Bazel, updated usage instructions are in docs/development.md and docs/build.md. A summary of the changes:
- please remove node_modules and .bazel
- install rustup (https://rustup.rs/)
- install rsync if not already installed (on windows, use pacman - see docs/windows.md)
- install Ninja (unzip from https://github.com/ninja-build/ninja/releases/tag/v1.11.1 and
place on your path, or from your distro/homebrew if it's 1.10+)
- update .vscode/settings.json from .vscode.dist
2022-11-27 06:24:20 +01:00
|
|
|
findClosest(range.startContainer, base, matcher)
|
|
|
|
|| findClosest(range.endContainer, base, matcher),
|
2021-11-18 10:18:39 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
function surroundAndSelect<T>(
|
2021-11-18 10:18:39 +01:00
|
|
|
matches: boolean,
|
|
|
|
range: Range,
|
|
|
|
base: HTMLElement,
|
2022-02-22 13:17:22 +01:00
|
|
|
format: SurroundFormat<T>,
|
|
|
|
selection: Selection,
|
2021-11-18 10:18:39 +01:00
|
|
|
): void {
|
2022-02-22 13:17:22 +01:00
|
|
|
const surroundedRange = matches
|
|
|
|
? unsurround(range, base, format)
|
|
|
|
: surround(range, base, format);
|
2021-11-18 10:18:39 +01:00
|
|
|
|
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(surroundedRange);
|
|
|
|
}
|
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
function removeFormats(
|
|
|
|
range: Range,
|
|
|
|
base: Element,
|
|
|
|
formats: SurroundFormat[],
|
|
|
|
reformats: SurroundFormat[] = [],
|
|
|
|
): Range {
|
|
|
|
let surroundRange = range;
|
|
|
|
|
|
|
|
for (const format of formats) {
|
|
|
|
surroundRange = unsurround(surroundRange, base, format);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const format of reformats) {
|
|
|
|
surroundRange = reformat(surroundRange, base, format);
|
|
|
|
}
|
|
|
|
|
|
|
|
return surroundRange;
|
2021-11-24 01:33:14 +01:00
|
|
|
}
|
2021-11-18 10:18:39 +01:00
|
|
|
|
2022-08-15 05:34:16 +02:00
|
|
|
export interface SurroundedAPI {
|
|
|
|
element: Promise<HTMLElement>;
|
|
|
|
inputHandler: InputHandlerAPI;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2022-08-15 05:34:16 +02:00
|
|
|
export class Surrounder<T = unknown> {
|
2022-08-17 08:00:37 +02:00
|
|
|
#api?: SurroundedAPI;
|
|
|
|
|
|
|
|
#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();
|
|
|
|
this.#triggers.delete(key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2022-02-22 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
static make<T>(apiStore: Readable<SurroundedAPI | null>): Surrounder<T> {
|
|
|
|
return new Surrounder(apiStore);
|
2022-02-22 13:17:22 +01:00
|
|
|
}
|
2021-11-18 10:18:39 +01:00
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
#getBaseElement(): Promise<HTMLElement> {
|
|
|
|
if (!this.#api) {
|
|
|
|
throw new Error("Surrounder: No api set");
|
2022-02-22 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
return this.#api.element;
|
2022-02-22 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
#toggleTrigger<T>(
|
2022-02-22 13:17:22 +01:00
|
|
|
base: HTMLElement,
|
|
|
|
selection: Selection,
|
|
|
|
matcher: Matcher,
|
|
|
|
format: SurroundFormat<T>,
|
2022-08-15 05:34:16 +02:00
|
|
|
trigger: TriggerItem<{ event: InputEvent; text: Text }>,
|
2022-02-22 13:17:22 +01:00
|
|
|
exclusive: SurroundFormat<T>[] = [],
|
|
|
|
): void {
|
2022-08-15 05:34:16 +02:00
|
|
|
if (get(trigger.active)) {
|
|
|
|
trigger.off();
|
2022-02-22 13:17:22 +01:00
|
|
|
} else {
|
2022-08-15 05:34:16 +02:00
|
|
|
trigger.on(async ({ text }) => {
|
2022-02-22 13:17:22 +01:00
|
|
|
const range = new Range();
|
2022-02-25 01:59:06 +01:00
|
|
|
range.selectNode(text);
|
2022-02-22 13:17:22 +01:00
|
|
|
|
2022-02-25 01:59:06 +01:00
|
|
|
const matches = Boolean(findClosest(text, base, matcher));
|
2022-02-22 13:17:22 +01:00
|
|
|
const clearedRange = removeFormats(range, base, exclusive);
|
|
|
|
surroundAndSelect(matches, clearedRange, base, format, selection);
|
|
|
|
selection.collapseToEnd();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
#toggleTriggerOverwrite<T>(
|
2022-02-25 01:59:06 +01:00
|
|
|
base: HTMLElement,
|
|
|
|
selection: Selection,
|
|
|
|
format: SurroundFormat<T>,
|
2022-08-15 05:34:16 +02:00
|
|
|
trigger: TriggerItem<{ event: InputEvent; text: Text }>,
|
2022-02-25 01:59:06 +01:00
|
|
|
exclusive: SurroundFormat<T>[] = [],
|
|
|
|
): void {
|
2022-08-15 05:34:16 +02:00
|
|
|
trigger.on(async ({ text }) => {
|
2022-02-25 01:59:06 +01:00
|
|
|
const range = new Range();
|
|
|
|
range.selectNode(text);
|
|
|
|
|
|
|
|
const clearedRange = removeFormats(range, base, exclusive);
|
|
|
|
const surroundedRange = surround(clearedRange, base, format);
|
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(surroundedRange);
|
|
|
|
selection.collapseToEnd();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
#toggleTriggerRemove<T>(
|
2022-02-25 01:59:06 +01:00
|
|
|
base: HTMLElement,
|
|
|
|
selection: Selection,
|
2022-08-17 08:00:37 +02:00
|
|
|
formats: {
|
|
|
|
format: SurroundFormat<T>;
|
|
|
|
trigger: TriggerItem<{ event: InputEvent; text: Text }>;
|
|
|
|
}[],
|
2022-02-25 01:59:06 +01:00
|
|
|
reformat: SurroundFormat<T>[] = [],
|
|
|
|
): void {
|
2022-08-17 08:00:37 +02:00
|
|
|
const remainingFormats = formats
|
|
|
|
.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 }) => {
|
2022-08-15 05:34:16 +02:00
|
|
|
const range = new Range();
|
|
|
|
range.selectNode(text);
|
2022-02-25 01:59:06 +01:00
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
const clearedRange = removeFormats(
|
|
|
|
range,
|
|
|
|
base,
|
|
|
|
remainingFormats,
|
|
|
|
reformat,
|
|
|
|
);
|
2022-08-15 05:34:16 +02:00
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(clearedRange);
|
|
|
|
selection.collapseToEnd();
|
2022-08-17 08:00:37 +02:00
|
|
|
},
|
|
|
|
{ once: true },
|
2022-08-15 05:34:16 +02:00
|
|
|
);
|
2022-02-25 01:59:06 +01:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
/**
|
|
|
|
* Check if a surround format under the given key is registered.
|
|
|
|
*/
|
|
|
|
hasFormat(key: string): boolean {
|
|
|
|
return this.#formats.has(key);
|
|
|
|
}
|
2022-08-15 05:34:16 +02:00
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
/**
|
2022-08-17 08:00:37 +02:00
|
|
|
* Register a surround format under a certain key.
|
2022-08-15 05:34:16 +02:00
|
|
|
* This name is then used with the surround functions to actually apply or
|
2022-08-17 08:00:37 +02:00
|
|
|
* remove the given format.
|
2022-08-15 05:34:16 +02:00
|
|
|
*/
|
|
|
|
registerFormat(key: string, format: SurroundFormat<T>): () => void {
|
2022-08-17 08:00:37 +02:00
|
|
|
this.#formats.set(key, format);
|
2022-08-15 05:34:16 +02:00
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
if (this.#api) {
|
|
|
|
this.#triggers.set(
|
2022-08-15 05:34:16 +02:00
|
|
|
key,
|
2022-08-17 08:00:37 +02:00
|
|
|
this.#api.inputHandler.insertText.trigger({ once: true }),
|
2022-08-15 05:34:16 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
return () => this.#formats.delete(key);
|
2022-08-15 05:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-08-17 08:00:37 +02:00
|
|
|
* Update a surround format under a specific key.
|
2022-08-15 05:34:16 +02:00
|
|
|
*/
|
2022-08-17 08:00:37 +02:00
|
|
|
updateFormat(
|
|
|
|
key: string,
|
|
|
|
update: (format: SurroundFormat<T>) => SurroundFormat<T>,
|
|
|
|
): void {
|
|
|
|
this.#formats.set(key, update(this.#formats.get(key)!));
|
2022-08-15 05:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use the surround command on the current range of the input.
|
2022-02-22 13:17:22 +01:00
|
|
|
* If the range is already surrounded, it will unsurround instead.
|
|
|
|
*/
|
2022-08-15 05:34:16 +02:00
|
|
|
async surround(formatName: string, exclusiveNames: string[] = []): Promise<void> {
|
2022-08-17 08:00:37 +02:00
|
|
|
const base = await this.#getBaseElement();
|
2021-11-24 01:33:14 +01:00
|
|
|
const selection = getSelection(base)!;
|
2022-01-08 02:46:01 +01:00
|
|
|
const range = getRange(selection);
|
2022-08-17 08:00:37 +02:00
|
|
|
const format = this.#formats.get(formatName);
|
|
|
|
const trigger = this.#triggers.get(formatName);
|
2022-01-08 02:46:01 +01:00
|
|
|
|
2022-08-15 05:34:16 +02:00
|
|
|
if (!format || !range || !trigger) {
|
2022-02-22 13:17:22 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-15 05:34:16 +02:00
|
|
|
const matcher = boolMatcher(format);
|
|
|
|
|
|
|
|
const exclusives = exclusiveNames
|
2022-08-17 08:00:37 +02:00
|
|
|
.map((name) => this.#formats.get(name))
|
2022-08-15 05:34:16 +02:00
|
|
|
.filter(isValid);
|
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
if (range.collapsed) {
|
2022-08-17 08:00:37 +02:00
|
|
|
return this.#toggleTrigger(
|
2022-08-15 05:34:16 +02:00
|
|
|
base,
|
|
|
|
selection,
|
|
|
|
matcher,
|
|
|
|
format,
|
|
|
|
trigger,
|
|
|
|
exclusives,
|
|
|
|
);
|
2022-01-08 02:46:01 +01:00
|
|
|
}
|
2021-11-24 01:33:14 +01:00
|
|
|
|
2022-08-15 05:34:16 +02:00
|
|
|
const clearedRange = removeFormats(range, base, exclusives);
|
2022-02-22 13:17:22 +01:00
|
|
|
const matches = isSurroundedInner(clearedRange, base, matcher);
|
|
|
|
surroundAndSelect(matches, clearedRange, base, format, selection);
|
2021-11-24 01:33:14 +01:00
|
|
|
}
|
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
/**
|
2022-08-15 05:34:16 +02:00
|
|
|
* Use the surround command on the current range of the input.
|
2022-02-22 13:17:22 +01:00
|
|
|
* If the range is already surrounded, it will overwrite the format.
|
|
|
|
* This might be better suited if the surrounding is parameterized (like
|
|
|
|
* text color).
|
|
|
|
*/
|
2022-08-15 05:34:16 +02:00
|
|
|
async overwriteSurround(
|
|
|
|
formatName: string,
|
|
|
|
exclusiveNames: string[] = [],
|
2021-11-24 01:33:14 +01:00
|
|
|
): Promise<void> {
|
2022-08-17 08:00:37 +02:00
|
|
|
const base = await this.#getBaseElement();
|
2021-11-24 01:33:14 +01:00
|
|
|
const selection = getSelection(base)!;
|
2022-01-08 02:46:01 +01:00
|
|
|
const range = getRange(selection);
|
2022-08-17 08:00:37 +02:00
|
|
|
const format = this.#formats.get(formatName);
|
|
|
|
const trigger = this.#triggers.get(formatName);
|
2021-11-24 01:33:14 +01:00
|
|
|
|
2022-08-15 05:34:16 +02:00
|
|
|
if (!format || !range || !trigger) {
|
2022-01-08 02:46:01 +01:00
|
|
|
return;
|
2021-11-24 01:33:14 +01:00
|
|
|
}
|
2022-02-22 13:17:22 +01:00
|
|
|
|
2022-08-15 05:34:16 +02:00
|
|
|
const exclusives = exclusiveNames
|
2022-08-17 08:00:37 +02:00
|
|
|
.map((name) => this.#formats.get(name))
|
2022-08-15 05:34:16 +02:00
|
|
|
.filter(isValid);
|
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
if (range.collapsed) {
|
2022-08-17 08:00:37 +02:00
|
|
|
return this.#toggleTriggerOverwrite(
|
2022-08-15 05:34:16 +02:00
|
|
|
base,
|
|
|
|
selection,
|
|
|
|
format,
|
|
|
|
trigger,
|
|
|
|
exclusives,
|
|
|
|
);
|
2022-02-22 13:17:22 +01:00
|
|
|
}
|
|
|
|
|
2022-08-15 05:34:16 +02:00
|
|
|
const clearedRange = removeFormats(range, base, exclusives);
|
2022-02-22 13:17:22 +01:00
|
|
|
const surroundedRange = surround(clearedRange, base, format);
|
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(surroundedRange);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the current selection is surrounded. A selection will count as
|
|
|
|
* provided if either the start or the end boundary point are within the
|
|
|
|
* provided format, OR if a surround trigger is active (surround on next
|
|
|
|
* text insert).
|
|
|
|
*/
|
2022-08-15 05:34:16 +02:00
|
|
|
async isSurrounded(formatName: string): Promise<boolean> {
|
2022-08-17 08:00:37 +02:00
|
|
|
const base = await this.#getBaseElement();
|
2022-02-22 13:17:22 +01:00
|
|
|
const selection = getSelection(base)!;
|
|
|
|
const range = getRange(selection);
|
2022-08-17 08:00:37 +02:00
|
|
|
const format = this.#formats.get(formatName);
|
|
|
|
const trigger = this.#triggers.get(formatName);
|
2022-02-22 13:17:22 +01:00
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
if (!range || !format || !trigger) {
|
2022-02-22 13:17:22 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const isSurrounded = isSurroundedInner(range, base, boolMatcher(format));
|
2022-08-15 05:34:16 +02:00
|
|
|
return get(trigger.active) ? !isSurrounded : isSurrounded;
|
2021-11-18 10:18:39 +01:00
|
|
|
}
|
2021-11-24 01:33:14 +01:00
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
/**
|
|
|
|
* Clear/Reformat the provided formats in the current range.
|
|
|
|
*/
|
2022-08-15 05:34:16 +02:00
|
|
|
async remove(formatNames: string[], reformatNames: string[] = []): Promise<void> {
|
2022-08-17 08:00:37 +02:00
|
|
|
const base = await this.#getBaseElement();
|
2022-02-22 13:17:22 +01:00
|
|
|
const selection = getSelection(base)!;
|
|
|
|
const range = getRange(selection);
|
|
|
|
|
2022-02-25 01:59:06 +01:00
|
|
|
if (!range) {
|
2022-02-22 13:17:22 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
const activeFormats = formatNames
|
|
|
|
.map((name: string) => ({
|
|
|
|
name,
|
|
|
|
format: this.#formats.get(name)!,
|
|
|
|
trigger: this.#triggers.get(name)!,
|
|
|
|
}))
|
|
|
|
.filter(({ format, trigger }): boolean => {
|
|
|
|
if (!format || !trigger) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-12-03 12:41:54 +01:00
|
|
|
// This is confusing: when nothing is selected, we only
|
|
|
|
// include currently-active buttons, as otherwise inactive
|
|
|
|
// buttons get toggled on. But when something is selected,
|
|
|
|
// we include everything, since we want to remove formatting
|
|
|
|
// that may be in part of the selection, but not at the start/end.
|
|
|
|
|
|
|
|
const isSurrounded = !range.collapsed || isSurroundedInner(
|
2022-08-17 08:00:37 +02:00
|
|
|
range,
|
|
|
|
base,
|
|
|
|
boolMatcher(format),
|
|
|
|
);
|
|
|
|
return get(trigger.active) ? !isSurrounded : isSurrounded;
|
|
|
|
});
|
2022-08-15 05:34:16 +02:00
|
|
|
|
|
|
|
const reformats = reformatNames
|
2022-08-17 08:00:37 +02:00
|
|
|
.map((name) => this.#formats.get(name))
|
2022-08-15 05:34:16 +02:00
|
|
|
.filter(isValid);
|
|
|
|
|
2022-02-25 01:59:06 +01:00
|
|
|
if (range.collapsed) {
|
2022-08-17 08:00:37 +02:00
|
|
|
return this.#toggleTriggerRemove(base, selection, activeFormats, reformats);
|
2022-02-25 01:59:06 +01:00
|
|
|
}
|
|
|
|
|
2022-08-17 08:00:37 +02:00
|
|
|
const surroundedRange = removeFormats(
|
|
|
|
range,
|
|
|
|
base,
|
|
|
|
activeFormats.map(({ format }) => format),
|
|
|
|
reformats,
|
|
|
|
);
|
2022-02-22 13:17:22 +01:00
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(surroundedRange);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
registerPackage("anki/surround", {
|
|
|
|
Surrounder,
|
|
|
|
});
|