2017-09-19 15:00:29 +00:00
|
|
|
import detectPassiveEvents from 'detect-passive-events';
|
|
|
|
|
2017-09-23 23:25:07 +00:00
|
|
|
const LAYOUT_BREAKPOINT = 630;
|
2017-01-08 10:04:01 +00:00
|
|
|
|
|
|
|
export function isMobile(width) {
|
|
|
|
return width <= LAYOUT_BREAKPOINT;
|
|
|
|
};
|
2017-03-07 08:54:57 +00:00
|
|
|
|
|
|
|
const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
2017-09-19 15:00:29 +00:00
|
|
|
|
2017-07-27 20:31:59 +00:00
|
|
|
let userTouching = false;
|
2017-09-19 15:00:29 +00:00
|
|
|
let listenerOptions = detectPassiveEvents.hasSupport ? { passive: true } : false;
|
2017-07-27 20:31:59 +00:00
|
|
|
|
2017-09-19 15:00:29 +00:00
|
|
|
function touchListener() {
|
2017-07-27 20:31:59 +00:00
|
|
|
userTouching = true;
|
2017-09-19 15:00:29 +00:00
|
|
|
window.removeEventListener('touchstart', touchListener, listenerOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener('touchstart', touchListener, listenerOptions);
|
2017-07-27 20:31:59 +00:00
|
|
|
|
|
|
|
export function isUserTouching() {
|
|
|
|
return userTouching;
|
|
|
|
}
|
2017-03-07 08:54:57 +00:00
|
|
|
|
|
|
|
export function isIOS() {
|
|
|
|
return iOS;
|
|
|
|
};
|