the-listener
v1.1.1
Published
Set listeners for mouse, touch and pointer events without conflicts
Downloads
99
Maintainers
Readme
The Listener
Easily set listeners for mouse, touch and pointer events without conflicts. Pass in an EventTarget
along with the mouse and touch event handler functions, and the-listener
will only set listeners for the events that correspond to the device's capabilities, and will automatically set pointer event listeners if needed (uses detect-it
to determine device capabilities).
- If it's a mouse only device, then only mouse event listeners are set.
- If it's a touch only device, then only touch event listeners are set.
- If it is a hybrid device, then both mouse and touch event listeners are set, but the mouse event handlers are only called when no touch event is fired (touch interactions fire both mouse and touch events, which is one of the problems that
the-listener
solves). - If a device is touch capable but only supports pointer events, then the corresponding pointer event listeners are automatically set instead of mouse and touch event listeners (this behavior can be prevented if desired).
- Note that there are edge cases where the user can change the input type mid-session (e.g. add a mouse to a touch device, or add a touch screen to mouse device), in which case the user would need to reload the page or restart to the browser to update
the-listener
, see this comment for more info.
Installing the-listener
$ npm install the-listener
Using the-listener
import addListener from 'the-listener';
/**
* addListener() sets listeners on the target
* based on the options in eventsAndHandlers
*
* @param {EventTarget} target (required)
* @param {Object} eventsAndHandlers (required)
* @param {Object} pointerOptions (optional)
*/
addListener(target, eventsAndHandlers, pointerOptions);
/*
* object keys are the event types and options, and the values are the handlers,
* if the same function should be called for multiple event types,
* then set the key as a space separated string with the multiple event types
*/
const eventsAndHandlers = {
'one or more events and options as a space separated string': function handler(event) {...},
// handler function will be called for both mousedown and touchstart events,
'mousedown touchstart': function(event) {...},
// the click event handler is called for both mouse and touch 'clicks' without any delay
click: function(event) {...},
// add capture to the key string to have the handler called during
// the capture phase instead of the bubbling phase
'mouseleave capture': function(event) {...},
// add passive to the key string to set a passive event listener
'touchmove passive': function(event) {...},
// can have multiple handlers for the same event (e.g. a touchstart handler was also set above)
// and can set a listener with both capture and passive options
'touchstart capture passive': function(event) {...}
}
// prevent pointermove listener from being set, will still set other pointer listeners
// note that the corresponding mousemove listener won't be set
const pointerOptions = {
pointermove: false,
}
Examples
addListener(target1, { click: (e) => alert(e) });
addListener(target2,
{
'mousedown touchstart': (e) => (...),
'mouseup touchend': (e) => (...),
mouseenter: (e) => (...),
mouseleave: (e) => (...),
// separate handlers for mousemove and touchmove
// both will be called during the capture phase and will be set as passive listeners
'mousemove capture passive': (e) => (...),
'touchmove capture passive': (e) => (...),
},
// never set pointermove listener
{ pointermove: false }
);
Real world example using the-listener
current-input
- detect the current input (mouse or touch) and fix the sticky hover problem on touch devices
Notes
In the case of
click
events from touch interactions, theclick
event handlers will be called ontouchend
and not wait for the delayed click event to be fired (providing thattouchend
occurs within 500ms oftouchstart
, otherwise theclick
event handler won't be called at all - this is how modern mobile browsers work).All mouse and touch event handlers are only called when the event is fired from the respective input. Even though the
mousedown
event is fired after a touch interaction,the-listener
won't call themousedown
handler. For example, if you want a handler to be called on bothmousedown
andtouchstart
then you need to explicitly set both. The only exception is thatclick
event handlers are called for both mouse and touch events.the-listener
never callspreventDefault()
, so it won't effect anything else in your app (you can callpreventDefault()
inside of your handlers if desired).Pointer event listeners are only set when the device is touch capable but doesn't support the touch events api. In this case, pointer event listeners are set instead of mouse and touch event listeners (in all other cases, even if the device supports pointer events, only mouse and touch event listeners are set). Note that if the
pointerType
ispen
ortouch
then the touch event handler will be called, and if thepointerType
ismouse
then the mouse event handler will be called. If you don't want a specific type of pointer event listener to be set, e.g.pointermove
, then add apointerOptions
object (withpointermove: false
) as the third argument to theaddListener()
function. Note that the corresponding mouse event listener will not be set, e.g. themousemove
listener will not be set.Set passive event listeners by adding
passive
to the key string. Not all browsers support passive event listeners andthe-listener
will only set a listener as passive if the browser supports it, otherwise the listener will be set as a normal listener. See the passive event listener explainer for more information.Set capture phase listeners by adding
capture
to the key string.If there are multiple handlers for the same event, i.e. the same event appears in multiple keys of the
eventsAndHandlers
object, thenthe-listener
will add multiple event listeners to the target for that event (and all the handlers will get called when the event fires).
Thank you
The work put into the-listener
was made much easier by the excellent suite of touch/pointer tests and demos put together by Patrick H. Lauke