Pinafore-Web-Client-Frontend/routes/_utils/getRectFromEntry.js

23 lines
776 B
JavaScript
Raw Normal View History

// Get the bounding client rect from an IntersectionObserver entry.
// This is to work around a bug in Chrome: https://crbug.com/737228
2018-02-09 07:29:29 +01:00
let hasBoundingRectBug
function rectsAreEqual (rectA, rectB) {
return rectA.height === rectB.height &&
rectA.top === rectB.top &&
rectA.width === rectB.width &&
rectA.bottom === rectB.bottom &&
rectA.left === rectB.left &&
rectA.right === rectB.right
}
2018-02-09 07:29:29 +01:00
export function getRectFromEntry (entry) {
if (typeof hasBoundingRectBug !== 'boolean') {
2018-02-09 07:29:29 +01:00
const boundingRect = entry.target.getBoundingClientRect()
const observerRect = entry.boundingClientRect
hasBoundingRectBug = !rectsAreEqual(boundingRect, observerRect)
}
2018-02-09 07:29:29 +01:00
return hasBoundingRectBug ? entry.target.getBoundingClientRect() : entry.boundingClientRect
}