6d0a242a1b
* Revert "Revert to setFormat() to fix color setting"
This reverts commit 613b5c1034
.
* Fix overwrite-surround
76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import type { Matcher } from "../find-above";
|
|
import { findFarthest } from "../find-above";
|
|
import { apply, ApplyFormat, ReformatApplyFormat, UnsurroundApplyFormat } from "./apply";
|
|
import { build, BuildFormat, ReformatBuildFormat, UnsurroundBuildFormat } from "./build";
|
|
import { boolMatcher } from "./match-type";
|
|
import { splitPartiallySelected } from "./split-text";
|
|
import type { SurroundFormat } from "./surround-format";
|
|
|
|
function buildAndApply<T>(
|
|
node: Node,
|
|
buildFormat: BuildFormat<T>,
|
|
applyFormat: ApplyFormat<T>,
|
|
): Range {
|
|
const forest = build(node, buildFormat);
|
|
apply(forest, applyFormat);
|
|
return buildFormat.recreateRange();
|
|
}
|
|
|
|
function surroundOnCorrectNode<T>(
|
|
range: Range,
|
|
base: Element,
|
|
build: BuildFormat<T>,
|
|
apply: ApplyFormat<T>,
|
|
matcher: Matcher,
|
|
): Range {
|
|
const node = findFarthest(
|
|
range.commonAncestorContainer,
|
|
base,
|
|
matcher,
|
|
) ?? range.commonAncestorContainer;
|
|
|
|
return buildAndApply(node, build, apply);
|
|
}
|
|
|
|
/**
|
|
* Will surround the entire range, removing any contained formatting nodes in the process.
|
|
*/
|
|
export function surround<T>(
|
|
range: Range,
|
|
base: Element,
|
|
format: SurroundFormat<T>,
|
|
): Range {
|
|
const splitRange = splitPartiallySelected(range);
|
|
const build = new BuildFormat(format, base, range, splitRange);
|
|
const apply = new ApplyFormat(format);
|
|
return surroundOnCorrectNode(range, base, build, apply, boolMatcher(format));
|
|
}
|
|
|
|
/**
|
|
* Will not surround any unsurrounded text nodes in the range.
|
|
*/
|
|
export function reformat<T>(
|
|
range: Range,
|
|
base: Element,
|
|
format: SurroundFormat<T>,
|
|
): Range {
|
|
const splitRange = splitPartiallySelected(range);
|
|
const build = new ReformatBuildFormat(format, base, range, splitRange);
|
|
const apply = new ReformatApplyFormat(format);
|
|
return surroundOnCorrectNode(range, base, build, apply, boolMatcher(format));
|
|
}
|
|
|
|
export function unsurround<T>(
|
|
range: Range,
|
|
base: Element,
|
|
format: SurroundFormat<T>,
|
|
): Range {
|
|
const splitRange = splitPartiallySelected(range);
|
|
const build = new UnsurroundBuildFormat(format, base, range, splitRange);
|
|
const apply = new UnsurroundApplyFormat(format);
|
|
return surroundOnCorrectNode(range, base, build, apply, boolMatcher(format));
|
|
}
|