mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 01:25:05 +01:00
31 lines
724 B
TypeScript
31 lines
724 B
TypeScript
import { useEffect, useRef, useState } from "react";
|
|
|
|
export function useIsMobile(horizontal?: boolean) {
|
|
const [isMobile, setIsMobile] = useState(false);
|
|
const isMobileCurrent = useRef<boolean | null>(false);
|
|
|
|
useEffect(() => {
|
|
function onResize() {
|
|
const value = horizontal
|
|
? window.innerHeight < 600
|
|
: window.innerWidth < 1024;
|
|
const isChanged = isMobileCurrent.current !== value;
|
|
if (!isChanged) return;
|
|
|
|
isMobileCurrent.current = value;
|
|
setIsMobile(value);
|
|
}
|
|
|
|
onResize();
|
|
window.addEventListener("resize", onResize);
|
|
|
|
return () => {
|
|
window.removeEventListener("resize", onResize);
|
|
};
|
|
}, [horizontal]);
|
|
|
|
return {
|
|
isMobile,
|
|
};
|
|
}
|