From 708698289ab1a544c2ce066ade7171ff87108f82 Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Tue, 9 Jan 2024 13:14:03 -0400 Subject: client: refactor point-over-element into utility --- src/static/client3.js | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) (limited to 'src/static') diff --git a/src/static/client3.js b/src/static/client3.js index 6174e5c4..35d9ab69 100644 --- a/src/static/client3.js +++ b/src/static/client3.js @@ -102,6 +102,14 @@ function cssProp(el, ...args) { } } +// Curry-style, so multiple points can more conveniently be tested at once. +function pointIsOverAnyOf(elements) { + return (clientX, clientY) => { + const element = document.elementFromPoint(clientX, clientY); + return elements.some(el => el.contains(element)); + }; +} + // TODO: These should pro8a8ly access some shared urlSpec path. We'd need to // separ8te the tooling around that into common-shared code too. const getLinkHref = (type, directory) => rebase(`${type}/${directory}`); @@ -767,10 +775,12 @@ function handleTooltipHoverableTouchEnded(hoverable, domEvent) { // Don't proceed if none of the (just-ended) touches ended over the // hoverable. + + const pointIsOverThisHoverable = pointIsOverAnyOf([hoverable]); + const anyTouchEndedOverHoverable = - touches.some(touch => - hoverable.contains( - document.elementFromPoint(touch.clientX, touch.clientY))); + touches.some(({clientX, clientY}) => + pointIsOverThisHoverable(clientX, clientY)); if (!anyTouchEndedOverHoverable) { return; @@ -990,6 +1000,11 @@ function addHoverableTooltipPageListeners() { }); }); + const getHoverablesAndTooltips = () => [ + ...Array.from(state.registeredHoverables.keys()), + ...Array.from(state.registeredTooltips.keys()), + ]; + document.body.addEventListener('touchend', domEvent => { const hoverables = Array.from(state.registeredHoverables.keys()); const tooltips = Array.from(state.registeredTooltips.keys()); @@ -1006,13 +1021,12 @@ function addHoverableTooltipPageListeners() { if (empty(touches)) return; + const pointIsOverHoverableOrTooltip = + pointIsOverAnyOf(getHoverablesAndTooltips()); + const anyTouchOverAnyHoverableOrTooltip = - touches.some(({clientX, clientY}) => { - const element = document.elementFromPoint(clientX, clientY); - if (hoverables.some(el => el.contains(element))) return true; - if (tooltips.some(el => el.contains(element))) return true; - return false; - }); + touches.some(({clientX, clientY}) => + pointIsOverHoverableOrTooltip(clientX, clientY)); if (!anyTouchOverAnyHoverableOrTooltip) { hideCurrentlyShownTooltip(); -- cgit 1.3.0-6-gf8a5