in src/component/handlers/drag/DraftEditorDragHandler.js [32:68]
function getSelectionForEvent(
event: Object,
editorState: EditorState,
): ?SelectionState {
let node: ?Node = null;
let offset: ?number = null;
const eventTargetDocument = getCorrectDocumentFromNode(event.currentTarget);
/* $FlowFixMe[prop-missing] (>=0.68.0 site=www,mobile) This comment
* suppresses an error found when Flow v0.68 was deployed. To see the error
* delete this comment and run Flow. */
if (typeof eventTargetDocument.caretRangeFromPoint === 'function') {
/* $FlowFixMe[incompatible-use] (>=0.68.0 site=www,mobile) This comment
* suppresses an error found when Flow v0.68 was deployed. To see the error
* delete this comment and run Flow. */
const dropRange = eventTargetDocument.caretRangeFromPoint(event.x, event.y);
node = dropRange.startContainer;
offset = dropRange.startOffset;
} else if (event.rangeParent) {
node = event.rangeParent;
offset = event.rangeOffset;
} else {
return null;
}
node = nullthrows(node);
offset = nullthrows(offset);
const offsetKey = nullthrows(findAncestorOffsetKey(node));
return getUpdatedSelectionState(
editorState,
offsetKey,
offset,
offsetKey,
offset,
);
}