1
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
export function isInViewPort(element) {
|
||||
const viewWidth = window.innerWidth || document.documentElement.clientWidth;
|
||||
const viewHeight = window.innerHeight || document.documentElement.clientHeight;
|
||||
const {
|
||||
top,
|
||||
right,
|
||||
bottom,
|
||||
left
|
||||
} = element.getBoundingClientRect();
|
||||
return top >= 0 && left >= 0 && right <= viewWidth && bottom <= viewHeight;
|
||||
}
|
||||
export function getPlacement(targetElement, placement, stepPlacement) {
|
||||
return stepPlacement ?? placement ?? (targetElement === null ? 'center' : 'bottom');
|
||||
}
|
||||
Reference in New Issue
Block a user