phx-react
Version:
PHX REACT
21 lines • 744 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSelectedNode = getSelectedNode;
const selection_1 = require("@lexical/selection");
function getSelectedNode(selection) {
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 (0, selection_1.$isAtNodeEnd)(focus) ? anchorNode : focusNode;
}
else {
return (0, selection_1.$isAtNodeEnd)(anchor) ? anchorNode : focusNode;
}
}
//# sourceMappingURL=getSelectedNode.js.map