Skip to content

Commit e44770c

Browse files
committed
fix: fix via detection instead
1 parent c41ae45 commit e44770c

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

packages/graph/src/-private/operations/replace-related-records.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,13 @@ function replaceRelatedRecordsLocal(graph: Graph, op: ReplaceRelatedRecordsOpera
7878
const identifiers = op.value;
7979
const relationship = graph.get(op.record, op.field);
8080
assert(`expected hasMany relationship`, isHasMany(relationship));
81+
82+
// relationships for newly created records begin in the dirty state, so if updated
83+
// before flushed we would fail to notify. This check helps us avoid that.
84+
const isMaybeFirstUpdate =
85+
relationship.remoteState.length === 0 &&
86+
relationship.localState === null &&
87+
relationship.state.hasReceivedData === false;
8188
relationship.state.hasReceivedData = true;
8289
const { additions, removals } = relationship;
8390
const { inverseKey, type } = relationship.definition;
@@ -151,7 +158,10 @@ function replaceRelatedRecordsLocal(graph: Graph, op: ReplaceRelatedRecordsOpera
151158
relationship.localState = diff.finalState;
152159
relationship.isDirty = wasDirty;
153160

154-
if (!wasDirty /*&& becameDirty // TODO to guard like this we need to detect reorder when diffing local */) {
161+
if (
162+
isMaybeFirstUpdate ||
163+
!wasDirty /*&& becameDirty // TODO to guard like this we need to detect reorder when diffing local */
164+
) {
155165
notifyChange(graph, op.record, op.field);
156166
}
157167
}

packages/model/src/-private/many-array.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export default class RelatedCollection<T = unknown> extends RecordArray<T> {
300300
const [start, deleteCount, ...adds] = args as [number, number, ...OpaqueRecordInstance[]];
301301

302302
// detect a full replace
303-
if (start === 0 && deleteCount === this[SOURCE].length && this[SOURCE].length > 0) {
303+
if (start === 0 && deleteCount === this[SOURCE].length) {
304304
const newValues = extractIdentifiersFromRecords(adds);
305305

306306
assertNoDuplicates(

0 commit comments

Comments
 (0)