Skip to content

Commit d1201ef

Browse files
committed
fix(store): offline list model should contain id
1 parent e915942 commit d1201ef

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

src/store.js

+12-5
Original file line numberDiff line numberDiff line change
@@ -873,12 +873,19 @@ function setupListModel(Model, nested) {
873873
offline: modelConfig.storage.offline && {
874874
threshold: modelConfig.storage.offline.threshold,
875875
get: (id) => {
876-
const result = modelConfig.storage.offline.get(
877-
hashCode(String(stringifyId(id))),
876+
const stringId = stringifyId(id);
877+
let result = modelConfig.storage.offline.get(
878+
hashCode(String(stringId)),
878879
);
879-
return result
880-
? result.map((item) => modelConfig.storage.offline.get(item))
881-
: null;
880+
if (result) {
881+
result = result.map((item) =>
882+
modelConfig.storage.offline.get(item),
883+
);
884+
result.id = stringId;
885+
return result;
886+
}
887+
888+
return null;
882889
},
883890
set: (id, values) => {
884891
modelConfig.storage.offline.set(

test/spec/store.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -2312,13 +2312,13 @@ describe("store:", () => {
23122312
};
23132313

23142314
return store.pending(store.get(Model, "1")).then(() =>
2315-
store.pending(store.get([Model])).then(() => {
2315+
store.pending(store.get([Model], { test: "test" })).then(() => {
23162316
store.clear(Model, false);
23172317
return resolveRaf(() => {
23182318
const cacheModel = store.get(Model, "1");
23192319
expect(cacheModel.value).toBe("test");
23202320

2321-
const cacheList = store.get([Model]);
2321+
const cacheList = store.get([Model], { test: "test" });
23222322
expect(cacheList.length).toBe(2);
23232323

23242324
return resolveRaf(() => {
@@ -2332,7 +2332,8 @@ describe("store:", () => {
23322332
expect(offlineModel.value).toBe("test");
23332333
expect(store.error(offlineModel)).toBeInstanceOf(Error);
23342334

2335-
const offlineList = store.get([Model]);
2335+
const offlineList = store.get([Model], { test: "test" });
2336+
expect(offlineList.id).toBe(JSON.stringify({ test: "test" }));
23362337
expect(offlineList.length).toBe(2);
23372338
expect(store.error(offlineList)).toBeInstanceOf(Error);
23382339
});

0 commit comments

Comments
 (0)