mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
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;
|
|
}
|