Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | 69923x 62144x 69910x 62144x 69910x 62144x 69910x 62144x 69910x 62144x 69910x 62144x 69910x 62144x 69910x 62144x 69910x 62144x 69910x 62144x 69910x | import { Theme, useMediaQuery } from "@mui/material";
import { isMobile } from "@utils/index";
export function useCustomThemeV2() {
// added { noSsr: true } to prevent hydration mismatches and ensure media queries are evaluated correctly
const isMobileView = useMediaQuery(
(theme: Theme) => theme.breakpoints.down("v2_sm"),
{ noSsr: true },
);
const isTabletView = useMediaQuery(
(theme: Theme) => theme.breakpoints.between("v2_sm", "v2_md"),
{ noSsr: true },
);
const isMediumView = useMediaQuery((theme: Theme) =>
theme.breakpoints.down("lg"),
);
const isDesktopView = useMediaQuery((theme: Theme) =>
theme.breakpoints.up("v2_md"),
);
const isSmallDesktop = useMediaQuery((theme: Theme) =>
theme.breakpoints.between("v2_md", "v2_lg"),
);
const isMediumDesktop = useMediaQuery((theme: Theme) =>
theme.breakpoints.between("lg", "v2_md"),
);
const isNarrowView = useMediaQuery(
(theme: Theme) => theme.breakpoints.down("new_lg"),
{ noSsr: true },
);
const isLargeTabletView = useMediaQuery((theme: Theme) =>
theme.breakpoints.between("v2_sm_md", "new_lg"),
);
const isWideView = useMediaQuery((theme: Theme) =>
theme.breakpoints.up("new_lg"),
);
const isLargeView = useMediaQuery(
(theme: Theme) => theme.breakpoints.up("v2_lg"),
{ noSsr: true },
);
return {
isMobileView,
isTabletView,
isDesktopView,
isMobileDevice: isMobile,
isSmallDesktop,
isNarrowView,
isWideView,
isMediumView,
isLargeTabletView,
isLargeView,
isMediumDesktop,
};
}
|