197
Expose more native interaction events
Log In
J
Janis Seitz
Still no way?
V
Vincii Devs
I don't know how one can make an app in 2022 without detecting left/right swipe events.
N
Nicholas Seal
Any updates on this feature?
D
Duber Campos
We are waiting!!!
A
Abderrahim BENMOUSSA
Definitely waiting for this one !
P
Peter Likins
could we please have a dropdown list of all javascript DOM events? i figured out a work-around to add event listeners and trigger logic... i went to the page logic canvas and wired a JS node off the 'Page mounted' node, and placed this code inside it. but it isn't working right.
JS SNIPPET:
self.addEventListener("keyup", function(event) {
if (event.keyCode === 13) { //13 is the "Enter" key
console.log('how about dat'); //test message
return 1; } }); //this SHOULD trigger next node in flow
E
Ethan Rodriguez-Torrent
Also really helpful would be a web app event for Page Close / navigate away from app, or some proxy thereof. Needed for databases that are meant to reflect user engagement in real time (e.g. a multiplayer game should know when one player quits/leaves). This is maybe better solved through Websockets API support but I suspect that may be a ways off.