e16b0fb15a
* Bump detect-passive-events from 1.0.5 to 2.0.1 Bumps [detect-passive-events](https://github.com/rafgraph/detect-passive-events) from 1.0.5 to 2.0.1. - [Release notes](https://github.com/rafgraph/detect-passive-events/releases) - [Commits](https://github.com/rafgraph/detect-passive-events/compare/v1.0.5...v2.0.1) Signed-off-by: dependabot[bot] <support@github.com> * Migrate to detect-passive-events v2 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
27 lines
655 B
JavaScript
27 lines
655 B
JavaScript
import { supportsPassiveEvents } from 'detect-passive-events';
|
|
|
|
const LAYOUT_BREAKPOINT = 630;
|
|
|
|
export function isMobile(width) {
|
|
return width <= LAYOUT_BREAKPOINT;
|
|
};
|
|
|
|
const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
|
|
|
let userTouching = false;
|
|
let listenerOptions = supportsPassiveEvents ? { passive: true } : false;
|
|
|
|
function touchListener() {
|
|
userTouching = true;
|
|
window.removeEventListener('touchstart', touchListener, listenerOptions);
|
|
}
|
|
|
|
window.addEventListener('touchstart', touchListener, listenerOptions);
|
|
|
|
export function isUserTouching() {
|
|
return userTouching;
|
|
}
|
|
|
|
export function isIOS() {
|
|
return iOS;
|
|
};
|