Detect Pointer
JavaScript wrapper for pointer
and any-pointer
media queries.
Live detection test
Exports a reference to a singleton object (a micro state machine with an update function) with its state set to the results of the pointer
and any-pointer
media queries, as well as an update()
function which re-runs the tests and updates the object's state.
Note that detect-pointer
is one of the micro state machines used by detect-it
to determine if a device is mouseOnly
, touchOnly
, or hybrid
.
For more information on the pointer
and any-pointer
media queries, please see the W3C Media Queries Level 4 specification. For information on browser compatibility, please see Can I Use matchMedia.
detectPointer
micro state machine
const detectPointer = {
fine: boolean,
coarse: boolean,
none: boolean,
anyFine: boolean,
anyCoarse: boolean,
anyNone: boolean,
update() {...},
}
Installing detect-pointer
$ npm install detect-pointer
Using detect-pointer
import detectPointer from 'detect-pointer';
detectPointer.fine === true;
detectPointer.coarse === true;
detectPointer.none === true;
detectPointer.anyFine === true;
detectPointer.anyCoarse === true;
detectPointer.anyNone === true;
detectPointer.update();
const detectPointer = {
fine: undefined,
coarse: undefined,
none: undefined,
anyFine: undefined,
anyCoarse: undefined,
anyNone: undefined,
}
Note that the update()
function is run once at the time of import to set the object's initial state, and generally doesn't need to be run again. If it doesn't have access to the window
or the browser doesn't support the matchMedia()
function (all modern browser do), then the state will be undefined
(detect-pointer
will not throw an error). If detect-pointer
doesn't have access to the window
at the time of import, you will have to call the update()
function manually at a later time to update its state.
Part of the detect-it
family