in packages/hooks/src/useTextSelection/index.ts [32:50]
function getRectFromSelection(selection: Selection | null): Rect {
if (!selection) {
return initRect;
}
if (selection.rangeCount < 1) {
return initRect;
}
const range = selection.getRangeAt(0);
const { height, width, top, left, right, bottom } = range.getBoundingClientRect();
return {
height,
width,
top,
left,
right,
bottom,
};
}