mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.0 KiB
TypeScript
109 lines
3.0 KiB
TypeScript
import { create } from "zustand";
|
|
import { combine } from "zustand/middleware";
|
|
import { memoServiceClient } from "@/grpcweb";
|
|
import { CreateMemoRequest, ListMemosRequest, Memo } from "@/types/proto/api/v1/memo_service";
|
|
|
|
interface State {
|
|
memoMapByName: Record<string, Memo>;
|
|
}
|
|
|
|
const getDefaultState = (): State => ({
|
|
memoMapByName: {},
|
|
});
|
|
|
|
export const useMemoStore = create(
|
|
combine(getDefaultState(), (set, get) => ({
|
|
setState: (state: State) => set(state),
|
|
getState: () => get(),
|
|
fetchMemos: async (request: Partial<ListMemosRequest>) => {
|
|
const { memos, nextPageToken } = await memoServiceClient.listMemos(request);
|
|
const memoMap = { ...get().memoMapByName };
|
|
for (const memo of memos) {
|
|
memoMap[memo.name] = memo;
|
|
}
|
|
set({ memoMapByName: memoMap });
|
|
return { memos, nextPageToken };
|
|
},
|
|
getOrFetchMemoByName: async (name: string, options?: { skipCache?: boolean; skipStore?: boolean }) => {
|
|
const memoMap = get().memoMapByName;
|
|
const memoCache = memoMap[name];
|
|
if (memoCache && !options?.skipCache) {
|
|
return memoCache;
|
|
}
|
|
|
|
const memo = await memoServiceClient.getMemo({
|
|
name,
|
|
});
|
|
if (!options?.skipStore) {
|
|
memoMap[name] = memo;
|
|
set({ memoMapByName: memoMap });
|
|
}
|
|
return memo;
|
|
},
|
|
getMemoByName: (name: string) => {
|
|
return get().memoMapByName[name];
|
|
},
|
|
searchMemos: async (filter: string) => {
|
|
const { memos } = await memoServiceClient.searchMemos({
|
|
filter,
|
|
});
|
|
const memoMap = get().memoMapByName;
|
|
for (const memo of memos) {
|
|
memoMap[memo.name] = memo;
|
|
}
|
|
set({ memoMapByName: memoMap });
|
|
return memos;
|
|
},
|
|
getMemoByUid: (uid: string) => {
|
|
const memoMap = get().memoMapByName;
|
|
return Object.values(memoMap).find((memo) => memo.uid === uid);
|
|
},
|
|
createMemo: async (request: CreateMemoRequest) => {
|
|
const memo = await memoServiceClient.createMemo(request);
|
|
const memoMap = get().memoMapByName;
|
|
memoMap[memo.name] = memo;
|
|
set({ memoMapByName: memoMap });
|
|
return memo;
|
|
},
|
|
updateMemo: async (update: Partial<Memo>, updateMask: string[]) => {
|
|
const memo = await memoServiceClient.updateMemo({
|
|
memo: update,
|
|
updateMask,
|
|
});
|
|
|
|
const memoMap = get().memoMapByName;
|
|
memoMap[memo.name] = memo;
|
|
set({ memoMapByName: memoMap });
|
|
return memo;
|
|
},
|
|
deleteMemo: async (name: string) => {
|
|
await memoServiceClient.deleteMemo({
|
|
name,
|
|
});
|
|
|
|
const memoMap = get().memoMapByName;
|
|
delete memoMap[name];
|
|
set({ memoMapByName: memoMap });
|
|
},
|
|
})),
|
|
);
|
|
|
|
export const useMemoList = () => {
|
|
const memoStore = useMemoStore();
|
|
const memos = Object.values(memoStore.getState().memoMapByName);
|
|
|
|
const reset = () => {
|
|
memoStore.setState({ memoMapByName: {} });
|
|
};
|
|
|
|
const size = () => {
|
|
return Object.keys(memoStore.getState().memoMapByName).length;
|
|
};
|
|
|
|
return {
|
|
value: memos,
|
|
reset,
|
|
size,
|
|
};
|
|
};
|