mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
58 lines
1.7 KiB
TypeScript
58 lines
1.7 KiB
TypeScript
import {
|
|
$createParagraphNode,
|
|
$getSelection,
|
|
$isTextNode,
|
|
BaseSelection,
|
|
ElementFormatType,
|
|
LexicalEditor, TextFormatType
|
|
} from "lexical";
|
|
import {LexicalElementNodeCreator, LexicalNodeMatcher} from "./nodes";
|
|
import {$getNearestBlockElementAncestorOrThrow} from "@lexical/utils";
|
|
import {$setBlocksType} from "@lexical/selection";
|
|
import {TextNodeThemeClasses} from "lexical/LexicalEditor";
|
|
|
|
export function selectionContainsNodeType(selection: BaseSelection|null, matcher: LexicalNodeMatcher): boolean {
|
|
if (!selection) {
|
|
return false;
|
|
}
|
|
|
|
for (const node of selection.getNodes()) {
|
|
if (matcher(node)) {
|
|
return true;
|
|
}
|
|
|
|
for (const parent of node.getParents()) {
|
|
if (matcher(parent)) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
export function selectionContainsTextFormat(selection: BaseSelection|null, format: TextFormatType): boolean {
|
|
if (!selection) {
|
|
return false;
|
|
}
|
|
|
|
for (const node of selection.getNodes()) {
|
|
if ($isTextNode(node) && node.hasFormat(format)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
export function toggleSelectionBlockNodeType(editor: LexicalEditor, matcher: LexicalNodeMatcher, creator: LexicalElementNodeCreator) {
|
|
editor.update(() => {
|
|
const selection = $getSelection();
|
|
const blockElement = selection ? $getNearestBlockElementAncestorOrThrow(selection.getNodes()[0]) : null;
|
|
if (selection && matcher(blockElement)) {
|
|
$setBlocksType(selection, $createParagraphNode);
|
|
} else {
|
|
$setBlocksType(selection, creator);
|
|
}
|
|
});
|
|
} |