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