Port e16b0fb15a7ef2607f080e8c0b884c1cf37e5ebb to glitch-soc Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh> Signed-off-by: Thibaut Girka <thib@sitedethib.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			866 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			866 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { supportsPassiveEvents } from 'detect-passive-events';
 | 
						|
import { forceSingleColumn } from 'flavours/glitch/util/initial_state';
 | 
						|
 | 
						|
const LAYOUT_BREAKPOINT = 630;
 | 
						|
 | 
						|
export function isMobile(width, columns) {
 | 
						|
  switch (columns) {
 | 
						|
  case 'multiple':
 | 
						|
    return false;
 | 
						|
  case 'single':
 | 
						|
    return true;
 | 
						|
  default:
 | 
						|
    return forceSingleColumn || 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;
 | 
						|
};
 |