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