2020-11-05 04:21:05 +11:00
|
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
2023-05-10 20:59:29 +10:00
|
|
|
|
2023-05-03 19:43:29 +10:00
|
|
|
import { forceSingleColumn } from './initial_state';
|
2017-09-20 01:00:29 +10:00
|
|
|
|
2017-09-24 09:25:07 +10:00
|
|
|
const LAYOUT_BREAKPOINT = 630;
|
2017-01-08 21:04:01 +11:00
|
|
|
|
2023-05-03 19:43:29 +10:00
|
|
|
export const isMobile = (width: number) => width <= LAYOUT_BREAKPOINT;
|
2020-11-16 15:16:39 +11:00
|
|
|
|
2023-05-03 19:43:29 +10:00
|
|
|
export type LayoutType = 'mobile' | 'single-column' | 'multi-column';
|
|
|
|
export const layoutFromWindow = (): LayoutType => {
|
2020-11-16 15:16:39 +11:00
|
|
|
if (isMobile(window.innerWidth)) {
|
|
|
|
return 'mobile';
|
|
|
|
} else if (forceSingleColumn) {
|
|
|
|
return 'single-column';
|
|
|
|
} else {
|
|
|
|
return 'multi-column';
|
|
|
|
}
|
2017-01-08 21:04:01 +11:00
|
|
|
};
|
2017-03-07 19:54:57 +11:00
|
|
|
|
2022-10-11 06:41:25 +11:00
|
|
|
const listenerOptions = supportsPassiveEvents ? { passive: true } : false;
|
|
|
|
|
2017-07-28 06:31:59 +10:00
|
|
|
let userTouching = false;
|
|
|
|
|
2020-11-16 15:16:39 +11:00
|
|
|
const touchListener = () => {
|
2017-07-28 06:31:59 +10:00
|
|
|
userTouching = true;
|
2022-10-11 06:41:25 +11:00
|
|
|
|
2023-04-03 11:31:39 +10:00
|
|
|
window.removeEventListener('touchstart', touchListener);
|
2020-11-16 15:16:39 +11:00
|
|
|
};
|
2017-09-20 01:00:29 +10:00
|
|
|
|
|
|
|
window.addEventListener('touchstart', touchListener, listenerOptions);
|
2017-07-28 06:31:59 +10:00
|
|
|
|
2020-11-16 15:16:39 +11:00
|
|
|
export const isUserTouching = () => userTouching;
|