DocSpace-client/packages/shared/utils/device.ts

46 lines
1.0 KiB
TypeScript

export const INFO_PANEL_WIDTH = 400;
export function checkIsSSR() {
return typeof window === "undefined";
}
export const size = {
mobile: 600,
// table: is between
desktop: 1024,
};
export const mobile = `(max-width: ${size.mobile}px)`;
export const mobileMore = `(min-width: ${size.mobile}px)`;
export const tablet = `(max-width: ${size.desktop - 0.1}px)`;
export const desktop = `(min-width: ${size.desktop}px)`;
export const transitionalScreenSize = `(max-width: ${
size.desktop + INFO_PANEL_WIDTH
}px)`;
export const isMobile = () => {
return window.innerWidth <= size.mobile;
};
export const isTablet = (width?: number) => {
const checkWidth = width || window.innerWidth;
return checkWidth > size.mobile && checkWidth < size.desktop;
};
export const isDesktop = () => {
if (!checkIsSSR()) {
return window.innerWidth >= size.desktop;
}
return false;
};
export const isTouchDevice = !!(
typeof window !== "undefined" &&
typeof navigator !== "undefined" &&
("ontouchstart" in window || navigator.maxTouchPoints > 0)
);