2023-07-31 11:24:08 -07:00
|
|
|
/**
|
|
|
|
* This source code is derived from code from Meta Platforms, Inc.
|
|
|
|
* and affiliates, licensed under the MIT license located in the
|
|
|
|
* LICENSE file in the /app/soapbox/features/compose/editor directory.
|
|
|
|
*/
|
2023-01-15 13:49:33 -08:00
|
|
|
|
2022-12-01 12:32:55 -08:00
|
|
|
/* eslint-disable eqeqeq */
|
2023-01-15 13:49:33 -08:00
|
|
|
|
2022-12-01 12:32:55 -08:00
|
|
|
export const getDOMRangeRect = (
|
|
|
|
nativeSelection: Selection,
|
|
|
|
rootElement: HTMLElement,
|
|
|
|
): DOMRect => {
|
|
|
|
const domRange = nativeSelection.getRangeAt(0);
|
|
|
|
|
|
|
|
let rect;
|
|
|
|
|
|
|
|
if (nativeSelection.anchorNode === rootElement) {
|
|
|
|
let inner = rootElement;
|
|
|
|
while (inner.firstElementChild != null) {
|
|
|
|
inner = inner.firstElementChild as HTMLElement;
|
|
|
|
}
|
|
|
|
rect = inner.getBoundingClientRect();
|
|
|
|
} else {
|
|
|
|
rect = domRange.getBoundingClientRect();
|
|
|
|
}
|
|
|
|
|
|
|
|
return rect;
|
|
|
|
};
|