Update isPointInRange to be more accurate
This commit is contained in:
parent
7bf215617c
commit
ea9c5ad867
@ -17,8 +17,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
const IS_FIREFOX = /Firefox/.test(navigator.userAgent);
|
|
||||||
|
|
||||||
function docOffsetCalc(element) {
|
function docOffsetCalc(element) {
|
||||||
const scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
|
const scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
|
||||||
const scrollLeft = window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft;
|
const scrollLeft = window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft;
|
||||||
@ -162,22 +160,49 @@ function docSentenceExtract(source, extent) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isPointInRange(point, range) {
|
function isPointInRange(point, range) {
|
||||||
if (IS_FIREFOX) {
|
// Scan forward
|
||||||
// Always return true on Firefox due to an issue where range.getClientRects()
|
const nodePre = range.endContainer;
|
||||||
// does not return a correct set of rects for characters at the beginning of a line.
|
const offsetPre = range.endOffset;
|
||||||
|
try {
|
||||||
|
const {node, offset} = TextSourceRange.seekForward(range.endContainer, range.endOffset, 1);
|
||||||
|
range.setEnd(node, offset);
|
||||||
|
|
||||||
|
if (isPointInAnyRect(point, range.getClientRects())) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
range.setEnd(nodePre, offsetPre);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Scan backward
|
||||||
|
const {node, offset} = TextSourceRange.seekBackward(range.startContainer, range.startOffset, 1);
|
||||||
|
range.setStart(node, offset);
|
||||||
|
|
||||||
|
if (isPointInAnyRect(point, range.getClientRects())) {
|
||||||
|
// This purposefully leaves the starting offset as modified and sets teh range length to 0.
|
||||||
|
range.setEnd(node, offset);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const y = point.y - 2;
|
// No match
|
||||||
for (const rect of range.getClientRects()) {
|
return false;
|
||||||
if (y <= rect.bottom) {
|
}
|
||||||
|
|
||||||
|
function isPointInAnyRect(point, rects) {
|
||||||
|
for (const rect of rects) {
|
||||||
|
if (isPointInRect(point, rect)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isPointInRect(point, rect) {
|
||||||
|
return (
|
||||||
|
point.x >= rect.left && point.x < rect.right &&
|
||||||
|
point.y >= rect.top && point.y < rect.bottom);
|
||||||
|
}
|
||||||
|
|
||||||
if (typeof document.caretRangeFromPoint !== 'function') {
|
if (typeof document.caretRangeFromPoint !== 'function') {
|
||||||
document.caretRangeFromPoint = (x, y) => {
|
document.caretRangeFromPoint = (x, y) => {
|
||||||
const position = document.caretPositionFromPoint(x, y);
|
const position = document.caretPositionFromPoint(x, y);
|
||||||
|
Loading…
Reference in New Issue
Block a user