67 lines
1.6 KiB
TypeScript
67 lines
1.6 KiB
TypeScript
|
|
import { WritableAtom, atom } from 'jotai';
|
||
|
|
import produce from 'immer';
|
||
|
|
import {
|
||
|
|
atomWithLocalStorage,
|
||
|
|
getLocalStorageItem,
|
||
|
|
setLocalStorageItem,
|
||
|
|
} from './utils/atomWithLocalStorage';
|
||
|
|
|
||
|
|
const OPENED_SIDEBAR_FOLDER = 'openedSidebarFolder';
|
||
|
|
|
||
|
|
type OpenedSidebarFolderAction =
|
||
|
|
| {
|
||
|
|
type: 'PUT';
|
||
|
|
id: string;
|
||
|
|
}
|
||
|
|
| {
|
||
|
|
type: 'DELETE';
|
||
|
|
id: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type OpenedSidebarFolderAtom = WritableAtom<
|
||
|
|
Set<string>,
|
||
|
|
[OpenedSidebarFolderAction],
|
||
|
|
undefined
|
||
|
|
>;
|
||
|
|
|
||
|
|
export const makeOpenedSidebarFolderAtom = (userId: string): OpenedSidebarFolderAtom => {
|
||
|
|
const storeKey = `${OPENED_SIDEBAR_FOLDER}${userId}`;
|
||
|
|
|
||
|
|
const baseOpenedSidebarFolderAtom = atomWithLocalStorage<Set<string>>(
|
||
|
|
storeKey,
|
||
|
|
(key) => {
|
||
|
|
const arrayValue = getLocalStorageItem<string[]>(key, []);
|
||
|
|
return new Set(arrayValue);
|
||
|
|
},
|
||
|
|
(key, value) => {
|
||
|
|
const arrayValue = Array.from(value);
|
||
|
|
setLocalStorageItem(key, arrayValue);
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
const openedSidebarFolderAtom = atom<Set<string>, [OpenedSidebarFolderAction], undefined>(
|
||
|
|
(get) => get(baseOpenedSidebarFolderAtom),
|
||
|
|
(get, set, action) => {
|
||
|
|
if (action.type === 'DELETE') {
|
||
|
|
set(
|
||
|
|
baseOpenedSidebarFolderAtom,
|
||
|
|
produce(get(baseOpenedSidebarFolderAtom), (draft) => {
|
||
|
|
draft.delete(action.id);
|
||
|
|
})
|
||
|
|
);
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
if (action.type === 'PUT') {
|
||
|
|
set(
|
||
|
|
baseOpenedSidebarFolderAtom,
|
||
|
|
produce(get(baseOpenedSidebarFolderAtom), (draft) => {
|
||
|
|
draft.add(action.id);
|
||
|
|
})
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
return openedSidebarFolderAtom;
|
||
|
|
};
|