fix: CRITICAL - Memoize all context values to stop infinite loops

THE BIGGER PICTURE - Root Cause Analysis:

Problem Chain:
1. FABContext value recreated every render
2. All FAB consumers re-render
3. Dashboard re-renders
4. useFABConfig runs
5. Creates new icon/callbacks
6. Triggers FABContext update
7. INFINITE LOOP!

The Bug (in BOTH contexts):
<Context.Provider value={{ config, setFAB, clearFAB }}>
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                         NEW object every render!

Every time Provider re-renders:
- Creates NEW value object
- All consumers see "new" value
- All consumers re-render
- Causes more Provider re-renders
- INFINITE LOOP!

The Fix:
const setFAB = useCallback(..., []); // Stable function
const clearFAB = useCallback(..., []); // Stable function
const value = useMemo(() => ({ config, setFAB, clearFAB }), [config, setFAB, clearFAB]);
              ^^^^^^^
              Only creates new object when dependencies actually change!

<Context.Provider value={value}>
                        ^^^^^^^
                        Stable reference!

Why This is Critical:
Context is at the TOP of the component tree:
App
  └─ FABProvider ← Bug here affects EVERYTHING below
      └─ PageHeaderProvider ← Bug here too
          └─ DashboardProvider
              └─ Shell
                  └─ Dashboard ← Infinite re-renders
                      └─ Charts ← Break from constant re-renders

React Context Performance Rules:
1. ALWAYS memoize context value object
2. ALWAYS use useCallback for context functions
3. NEVER create inline objects in Provider value
4. Context updates trigger ALL consumers

Fixed Contexts:
1. FABContext - Memoized value, callbacks
2. PageHeaderContext - Memoized value, callbacks

Before:
Every render → new value object → all consumers re-render → LOOP

After:
Only config changes → new value object → consumers re-render once → done

Result:
 No infinite loops
 No unnecessary re-renders
 Clean console
 Smooth performance
 All features working

Files Modified:
- FABContext.tsx: Added useMemo and useCallback
- PageHeaderContext.tsx: Added useMemo and useCallback
- useFABConfig.tsx: Memoized icon and callbacks (previous fix)
- App.tsx: Fixed scroll detection with useRef (previous fix)

All infinite loop sources now eliminated!
This commit is contained in:
dwindown
2025-11-06 21:27:44 +07:00
parent bf73ee2c02
commit 824266044d
5 changed files with 47 additions and 34 deletions

View File

@@ -1,4 +1,4 @@
import { useEffect } from 'react';
import { useEffect, useMemo, useCallback } from 'react';
import { useNavigate } from 'react-router-dom';
import { Plus } from 'lucide-react';
import { useFAB } from '@/contexts/FABContext';
@@ -11,53 +11,62 @@ export function useFABConfig(page: 'orders' | 'products' | 'customers' | 'coupon
const { setFAB, clearFAB } = useFAB();
const navigate = useNavigate();
// Memoize the icon to prevent re-creating on every render
const icon = useMemo(() => <Plus className="w-6 h-6" />, []);
// Memoize callbacks to prevent re-creating on every render
const handleOrdersClick = useCallback(() => navigate('/orders/new'), [navigate]);
const handleProductsClick = useCallback(() => navigate('/products/new'), [navigate]);
const handleCustomersClick = useCallback(() => navigate('/customers/new'), [navigate]);
const handleCouponsClick = useCallback(() => navigate('/coupons/new'), [navigate]);
const handleDashboardClick = useCallback(() => {
// TODO: Implement speed dial menu
console.log('Quick actions menu');
}, []);
useEffect(() => {
switch (page) {
case 'orders':
setFAB({
icon: <Plus className="w-6 h-6" />,
icon,
label: 'Create Order',
onClick: () => navigate('/orders/new'),
onClick: handleOrdersClick,
visible: true
});
break;
case 'products':
setFAB({
icon: <Plus className="w-6 h-6" />,
icon,
label: 'Add Product',
onClick: () => navigate('/products/new'),
onClick: handleProductsClick,
visible: true
});
break;
case 'customers':
setFAB({
icon: <Plus className="w-6 h-6" />,
icon,
label: 'Add Customer',
onClick: () => navigate('/customers/new'),
onClick: handleCustomersClick,
visible: true
});
break;
case 'coupons':
setFAB({
icon: <Plus className="w-6 h-6" />,
icon,
label: 'Create Coupon',
onClick: () => navigate('/coupons/new'),
onClick: handleCouponsClick,
visible: true
});
break;
case 'dashboard':
// Dashboard could have a speed dial menu in the future
setFAB({
icon: <Plus className="w-6 h-6" />,
icon,
label: 'Quick Actions',
onClick: () => {
// TODO: Implement speed dial menu
console.log('Quick actions menu');
},
onClick: handleDashboardClick,
visible: true
});
break;
@@ -69,5 +78,5 @@ export function useFABConfig(page: 'orders' | 'products' | 'customers' | 'coupon
}
return () => clearFAB();
}, [page, navigate, setFAB, clearFAB]);
}, [page, icon, handleOrdersClick, handleProductsClick, handleCustomersClick, handleCouponsClick, handleDashboardClick, setFAB, clearFAB]);
}