我正在使用aurelia-store
状态管理库来管理状态。这个问题不是针对 Aurelia 商店的,而是针对一般的 redux 最佳实践,因为 Aurelia 商店非常相似。
我有一个从 API 获取单元更新的操作,如下所示:
export const fetchNewUnits = async (state: State): Promise<State> => {
const fetchedUnits = await apiClient.getUnitsMarkers();
// no new updates so don't trigger change in units
// IS THIS ACCEPTABLE?
if (fetchedUnits.length === 0) {
return {
...state,
highwaterMark: new Date()
};
}
const units: UnitMarker[] = state.units.slice();
_.forEach(fetchedUnits, (newUnit) => {
// look for matching unit in store
const idx = _.findIndex(units, {
imei: newUnit.imei
});
// unit was found in store, do update
if (idx !== -1) {
// replace the unit in the store
const replacement = new UnitMarker({...newUnit});
units.splice(idx, 1, replacement);
}
});
// OR SHOULD I ALWAYS DEEP COPY THE ARRAY REFERENCE AND IT'S OBJECTS
return {
...state,
highwaterMark: new Date(),
units: [...units]
};
};
如果我没有任何单位更改(即我的商店是最新的),我可以简单地使用扩展运算符返回状态,如第一个返回语句中所示?因为我没有修改对象,这很好吗?
或者我是否总是需要进行深度替换,例如:
return {
...state,
highwaterMark: new Date(),
units: [...state.units]
};
即使数组中的对象没有改变?