- Install redux-persist package - Configure persistReducer with whitelist (offline, activities, children) - Exclude network slice from persistence (should be fresh on reload) - Add PersistGate to ReduxProvider with loading indicator - Configure serializableCheck to ignore persist actions - Store state now persists to localStorage automatically This fixes the issue where app state was lost on page reload, improving UX. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
'use client';
|
|
|
|
import { useEffect, useRef } from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import { PersistGate } from 'redux-persist/integration/react';
|
|
import { store, persistor } from '@/store/store';
|
|
import { setupNetworkDetection } from '@/store/middleware/offlineMiddleware';
|
|
import { CircularProgress, Box } from '@mui/material';
|
|
|
|
export function ReduxProvider({ children }: { children: React.ReactNode }) {
|
|
const cleanupRef = useRef<(() => void) | null>(null);
|
|
|
|
useEffect(() => {
|
|
// Setup network detection
|
|
cleanupRef.current = setupNetworkDetection(store.dispatch);
|
|
|
|
// Cleanup on unmount
|
|
return () => {
|
|
if (cleanupRef.current) {
|
|
cleanupRef.current();
|
|
}
|
|
};
|
|
}, []);
|
|
|
|
return (
|
|
<Provider store={store}>
|
|
<PersistGate
|
|
loading={
|
|
<Box
|
|
sx={{
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
minHeight: '100vh'
|
|
}}
|
|
>
|
|
<CircularProgress />
|
|
</Box>
|
|
}
|
|
persistor={persistor}
|
|
>
|
|
{children}
|
|
</PersistGate>
|
|
</Provider>
|
|
);
|
|
}
|