* fix: correct link for Roadmap navigation item * feat: add feature request and projects voting components * fix: correct spelling of 'Certificate' in ProjectsVote component * feat: add Request Feature popup with responsive dialog and drawer components * feat: enhance Header component with mobile menu animations and improved navigation styling * refactor: simplify Header component by removing unused scroll handling and improving mobile menu structure * fix: replace motion span with static span for header underline * fix: update FeatureRequestCTA text for clarity and adjust page layout margins * fix: remove DialogDescription from RequestFeaturePopup and update textarea placeholder for clarity * fix: remove DrawerDescription from RequestFeaturePopup for cleaner UI * fix: remove unused icon exports from icons * fix: replace XIcon with LuX in DialogClose for consistency * fix: remove unused icon export from index for cleaner module structure
34 lines
857 B
TypeScript
34 lines
857 B
TypeScript
'use client';
|
|
|
|
import { useEffect, useState } from 'react';
|
|
|
|
export function useMediaQuery(query: string): boolean {
|
|
// 1) Always default to `false`—this guarantees SSR and the very first client render match.
|
|
const [matches, setMatches] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if (typeof window === 'undefined') {
|
|
return;
|
|
}
|
|
|
|
const mediaQueryList = window.matchMedia(query);
|
|
|
|
// 2) On mount, immediately set to the real match value (true or false).
|
|
setMatches(mediaQueryList.matches);
|
|
|
|
// 3) Subscribe to changes.
|
|
const listener = (event: MediaQueryListEvent) => {
|
|
setMatches(event.matches);
|
|
};
|
|
mediaQueryList.addEventListener('change', listener);
|
|
|
|
return () => {
|
|
mediaQueryList.removeEventListener('change', listener);
|
|
};
|
|
}, [query]);
|
|
|
|
return matches;
|
|
}
|
|
|
|
export default useMediaQuery;
|