File size: 859 Bytes
95b5a04 | 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 | import useSWR, { mutate } from 'swr';
import { useMemo } from 'react';
const initialState = {
isDashboardDrawerOpened: false
};
const endpoints = {
key: 'api/menu',
master: 'master'
};
export function useGetMenuMaster() {
const { data, isLoading } = useSWR(endpoints.key + endpoints.master, () => initialState, {
revalidateIfStale: false,
revalidateOnFocus: false,
revalidateOnReconnect: false
});
const memoizedValue = useMemo(
() => ({
menuMaster: data,
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
);
}
|