perf(frontend): replace blank Suspense fallbacks with Spin, switch to matchMedia hook, add virtual table scrolling (#6187)

- routes.tsx, LazyMount.tsx: replace Suspense fallback={null} with Spin
  loader so page transitions and lazy modals never show blank content
- useMediaQuery.ts: switch from resize event to matchMedia change event,
  eliminating state updates on every pixel drag; export MOBILE_BREAKPOINT_PX
- SubPage.tsx: drop duplicate inline isMobile logic (7 lines), use shared
  useMediaQuery(576) (2 lines)
- ClientsPage, InboundList, HostList, NodeList: add virtual + scroll.y to
  Table for viewport-only DOM rendering of large datasets
This commit is contained in:
PathGao
2026-08-15 22:44:08 +08:00
committed by GitHub
parent 0f14ce7551
commit 8e7fb144ee
8 changed files with 42 additions and 20 deletions
+18 -6
View File
@@ -1,15 +1,27 @@
import { useEffect, useState } from 'react';
const MOBILE_BREAKPOINT_PX = 768;
export const MOBILE_BREAKPOINT_PX = 768;
/**
* Tracks whether the viewport is narrower than `breakpoint`.
*
* Uses the native `matchMedia` change event instead of the `resize` event so
* that state updates fire only when the query actually flips, not on every
* pixel change during a window drag.
*/
export function useMediaQuery(breakpoint: number = MOBILE_BREAKPOINT_PX) {
const [isMobile, setIsMobile] = useState<boolean>(() => window.innerWidth <= breakpoint);
const query = `(max-width: ${breakpoint}px)`;
const [isMobile, setIsMobile] = useState<boolean>(() =>
typeof window !== 'undefined' ? window.matchMedia(query).matches : false,
);
useEffect(() => {
const onResize = () => setIsMobile(window.innerWidth <= breakpoint);
window.addEventListener('resize', onResize);
return () => window.removeEventListener('resize', onResize);
}, [breakpoint]);
const mql = window.matchMedia(query);
const onChange = (e: MediaQueryListEvent) => setIsMobile(e.matches);
mql.addEventListener('change', onChange);
setIsMobile(mql.matches);
return () => mql.removeEventListener('change', onChange);
}, [query]);
return { isMobile };
}