feat: Bank pages layout breaking

This commit is contained in:
Ahmed Bouhuolia
2024-09-04 09:51:35 +02:00
parent 3dd827417a
commit 4ef00ab122
3 changed files with 142 additions and 28 deletions

View File

@@ -0,0 +1,63 @@
import { useEffect, useRef, useState } from 'react';
export interface UseMediaQueryOptions {
getInitialValueInEffect: boolean;
}
type MediaQueryCallback = (event: { matches: boolean; media: string }) => void;
/**
* Older versions of Safari (shipped withCatalina and before) do not support addEventListener on matchMedia
* https://stackoverflow.com/questions/56466261/matchmedia-addlistener-marked-as-deprecated-addeventlistener-equivalent
* */
function attachMediaListener(
query: MediaQueryList,
callback: MediaQueryCallback,
) {
try {
query.addEventListener('change', callback);
return () => query.removeEventListener('change', callback);
} catch (e) {
query.addListener(callback);
return () => query.removeListener(callback);
}
}
function getInitialValue(query: string, initialValue?: boolean) {
if (typeof initialValue === 'boolean') {
return initialValue;
}
if (typeof window !== 'undefined' && 'matchMedia' in window) {
return window.matchMedia(query).matches;
}
return false;
}
export function useMediaQuery(
query: string,
initialValue?: boolean,
{ getInitialValueInEffect }: UseMediaQueryOptions = {
getInitialValueInEffect: true,
},
) {
const [matches, setMatches] = useState(
getInitialValueInEffect ? initialValue : getInitialValue(query),
);
const queryRef = useRef<MediaQueryList>();
useEffect(() => {
if ('matchMedia' in window) {
queryRef.current = window.matchMedia(query);
setMatches(queryRef.current.matches);
return attachMediaListener(queryRef.current, (event) =>
setMatches(event.matches),
);
}
return undefined;
}, [query]);
return matches;
}