Coder Social home page Coder Social logo

Signal reaching clickDistance threshold? about d3-drag HOT 4 OPEN

d3 avatar d3 commented on April 28, 2024
Signal reaching clickDistance threshold?

from d3-drag.

Comments (4)

GordonSmith avatar GordonSmith commented on April 28, 2024 1

@Herst - to workaround losing your click event, tweak how "raise" works to not move the "drag" node, but rather move all its siblings:

            //  Safe Raise - does not interfere with current click event  ---
            const dragNode = /* the DOM node being dragged during "dragstart" event */
            let nextSibling = dragNode.nextSibling;
            while (nextSibling) {
                target.parentNode.insertBefore(nextSibling, dragNode);
                nextSibling = dragNode.nextSibling;
            }

from d3-drag.

Herst avatar Herst commented on April 28, 2024

Demo demonstrating my current solution: https://bl.ocks.org/Herst/3d486648556a3eee60442da977022fd1

from d3-drag.

mbostock avatar mbostock commented on April 28, 2024

Would it be cleaner to not call event.preventDefault() on the mousemove event until the click distance threshold is crossed? Then you could check event.isDefaultPrevented to test.

from d3-drag.

Herst avatar Herst commented on April 28, 2024

I guess this could work. I wonder if this would have any (good or bad) side effects concerning #9:

It’s a Chrome bug that calling mousemove.preventDefault prevents text selection, drag-and-drop, and scrolling (see issue 485892). The mousemove event is defined as having no default action.

from d3-drag.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.