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