mirror of
https://github.com/usememos/memos.git
synced 2025-04-03 20:31:10 +02:00
fix: optimize memoMap generation logic to ensure memoMap count matche… (#4214)
fix: optimize memoMap generation logic to ensure memoMap count matches memos
This commit is contained in:
parent
7a77b4ba38
commit
f15346e615
@ -41,10 +41,13 @@ export const useMemoMetadataStore = create(
|
|||||||
view: MemoView.MEMO_VIEW_METADATA_ONLY,
|
view: MemoView.MEMO_VIEW_METADATA_ONLY,
|
||||||
pageSize: DEFAULT_MEMO_PAGE_SIZE,
|
pageSize: DEFAULT_MEMO_PAGE_SIZE,
|
||||||
});
|
});
|
||||||
const memoMap = { ...get().dataMapByName };
|
const memoMap = memos.reduce<Record<string, Memo>>(
|
||||||
for (const memo of memos) {
|
(acc, memo) => ({
|
||||||
memoMap[memo.name] = memo;
|
...acc,
|
||||||
}
|
[memo.name]: memo,
|
||||||
|
}),
|
||||||
|
{},
|
||||||
|
);
|
||||||
set({ stateId: uniqueId(), dataMapByName: memoMap });
|
set({ stateId: uniqueId(), dataMapByName: memoMap });
|
||||||
return { memos, nextPageToken };
|
return { memos, nextPageToken };
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user