forked from shashbh18/resumave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
43 lines (36 loc) · 1.1 KB
/
index.js
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
import { configureStore } from '@reduxjs/toolkit';
import resumeSlice from './slices/resumeSlice';
const loadState = () => {
console.info('Loading State from Local Storage...');
try {
const serializedState = localStorage.getItem('reduxState');
if (serializedState === null) return undefined;
console.info('State Loaded Successfully from Local Storage');
return JSON.parse(serializedState);
} catch (err) {
console.warn('Error Loading State from Local Storage');
return undefined;
}
};
const store = configureStore({
devTools: true,
preloadedState: loadState(),
reducer: {
resume: resumeSlice,
},
});
function debounce(func, timeout = 2500) {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => {
func.apply(this, args);
}, timeout);
};
}
const saveState = debounce(() => {
console.info('Saving State to Local Storage...');
localStorage.setItem('reduxState', JSON.stringify(store.getState()));
});
store.subscribe(saveState);
export default store;