-
Notifications
You must be signed in to change notification settings - Fork 643
Expand file tree
/
Copy pathmenu.js
More file actions
45 lines (37 loc) · 963 Bytes
/
Copy pathmenu.js
File metadata and controls
45 lines (37 loc) · 963 Bytes
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
'use client';
import useSWR, { mutate } from 'swr';
import { useMemo } from 'react';
const initialState = {
isDashboardDrawerOpened: false
};
const endpoints = {
key: 'api/menu',
master: 'master',
dashboard: '/dashboard' // server URL
};
export function useGetMenuMaster() {
const { data, isLoading } = useSWR(endpoints.key + endpoints.master, () => initialState, {
fallbackData: initialState,
revalidateIfStale: false,
revalidateOnFocus: false,
revalidateOnReconnect: false
});
const memoizedValue = useMemo(
() => ({
menuMaster: data || initialState,
menuMasterLoading: isLoading
}),
[data, isLoading]
);
return memoizedValue;
}
export function handlerDrawerOpen(isDashboardDrawerOpened) {
// to update local state based on key
mutate(
endpoints.key + endpoints.master,
(currentMenuMaster) => {
return { ...currentMenuMaster, isDashboardDrawerOpened };
},
false
);
}