forked from github/plane
18 lines
528 B
TypeScript
18 lines
528 B
TypeScript
import { $isAtNodeEnd } from "@lexical/selection";
|
|
|
|
export const getSelectedNode = (selection: any) => {
|
|
const anchor = selection.anchor;
|
|
const focus = selection.focus;
|
|
const anchorNode = selection.anchor.getNode();
|
|
const focusNode = selection.focus.getNode();
|
|
if (anchorNode === focusNode) {
|
|
return anchorNode;
|
|
}
|
|
const isBackward = selection.isBackward();
|
|
if (isBackward) {
|
|
return $isAtNodeEnd(focus) ? anchorNode : focusNode;
|
|
} else {
|
|
return $isAtNodeEnd(anchor) ? focusNode : anchorNode;
|
|
}
|
|
};
|