Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drag node on touch does not work (example mouse-manipulations) #1292

Open
Yomguithereal opened this issue Oct 19, 2022 · 10 comments
Open

Drag node on touch does not work (example mouse-manipulations) #1292

Yomguithereal opened this issue Oct 19, 2022 · 10 comments

Comments

@Yomguithereal
Copy link
Collaborator

No description provided.

@Yomguithereal Yomguithereal changed the title Drag node on touch does not work (example mouse-manipulations Drag node on touch does not work (example mouse-manipulations) Oct 20, 2022
@Yomguithereal
Copy link
Collaborator Author

This is not surprising since the drag example relies on events emitted by the mouse captor only. Should those events be replicated by the touch captor also?

@boogheta
Copy link
Contributor

That would sound coherent :)

@sim51
Copy link
Collaborator

sim51 commented Oct 21, 2022

FYI, I made an example on the react lib for the drag'n'drop, and thanks to you I added the event for the touch : https://sim51.github.io/react-sigma/docs/example/drag_n_drop

@boogheta
Copy link
Contributor

@sim51 I can't get touchdrag to work on your example page on my browser when switching in developer mode to fake phone mode, any idea why?

@stale
Copy link

stale bot commented Dec 1, 2022

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the wontfix label Dec 1, 2022
@Yomguithereal
Copy link
Collaborator Author

Oh stop it you stalebot

@sim51 sim51 added pinned and removed wontfix labels Dec 1, 2022
@sim51
Copy link
Collaborator

sim51 commented Dec 1, 2022

@Yomguithereal Tips Of the Day : when you want to stop the stalebot, just add the label 'pinned'. The bot will ignore them

@sim51
Copy link
Collaborator

sim51 commented Dec 1, 2022

@boogheta sorry I missed your comment, I will check it.
With the touch screen on my laptop it works, but i have some issues on mobile.

@jacomyal
Copy link
Owner

jacomyal commented Feb 4, 2024

@Yomguithereal OK, so right now, here is how it works in JavaScript, for classic DOM events:

  • If I "touch click" my screen, the dispatched events are touchstart, touchend, mousedown and mouseup
  • If I touch something, move my mouse, and then release my finger, the events are touchstart and touchend (I don't count the touchmove events)

My question is: Should the downNode and upNode events keep being "bound" to the mousedown and mouseup events, or should they be triggered when touchstart and touchend as well (with the deduplication of the events in my first case)? Any take on that?

@jacomyal
Copy link
Owner

jacomyal commented Feb 4, 2024

So, after investigations, here's what's happening:

  1. The handle we try to reduce the codebase size while handling both mouse and touch device, is by causing the DOM target to emit "fake" mouse events, from the touch captor. So, for instance, when the touch captor handles a touchstart event, it makes the DOM target layer to emit a mousedown event, that the mouse captor then handles
  2. These events carry a "fake event" mark, so that when a user touches a node, we read what node is at that point rather than using this.hoveredNode. Note that this is no more relevant and we should always read what node is under the mouse, since we can easily now, with the picking.
  3. The drag-and-drop example events are actually caught when using a touch device, but when moving a node, multiple things happen:
    1. The touchmove fakes a mousemove from the DOM target layer, but also itself handles some things. That explains why the camera moves when it shouldn't.
    2. The example actually listens to mousemovebody, which is not faked by the touch captor. So the code that updates the node position in the example is not called. That explains why the node does not move.

I don't know yet how to clean that issue. I'll have to come at it later.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants