Skip to content

Commit

Permalink
fix #3747
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed Aug 31, 2023
1 parent 4ffc001 commit 8d6f260
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
10 changes: 10 additions & 0 deletions packages/mobx/__tests__/v5/base/observables.js
Original file line number Diff line number Diff line change
Expand Up @@ -2505,3 +2505,13 @@ test("state version does not update on observable creation", () => {
check(() => mobx.observable([0], { proxy: true }))
check(() => mobx.computed(() => 0))
})

test("#3747", () => {
mobx.runInAction(() => {
const o = observable.box(0)
const c = computed(() => o.get())
expect(c.get()).toBe(0)
o.set(1)
expect(c.get()).toBe(1) // would fail
})
})
20 changes: 9 additions & 11 deletions packages/mobx/src/core/atom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,21 +68,19 @@ export class Atom implements IAtom {
* Invoke this method _after_ this method has changed to signal mobx that all its observers should invalidate.
*/
public reportChanged() {
if (globalState.inBatch && this.batchId_ === globalState.batchId) {
// Called from the same batch this atom was created in.
return
if (globalState.inBatch && this.batchId_ !== globalState.batchId) {
// We could update state version only at the end of batch,
// but we would still have to switch some global flag here to signal a change.
globalState.stateVersion =
globalState.stateVersion < Number.MAX_SAFE_INTEGER
? globalState.stateVersion + 1
: Number.MIN_SAFE_INTEGER
// Avoids the possibility of hitting the same globalState.batchId when it cycled through all integers (necessary?)
this.batchId_ = NaN
}
// Avoids the possibility of hitting the same globalState.batchId when it cycled through all integers (necessary?)
this.batchId_ = NaN

startBatch()
propagateChanged(this)
// We could update state version only at the end of batch,
// but we would still have to switch some global flag here to signal a change.
globalState.stateVersion =
globalState.stateVersion < Number.MAX_SAFE_INTEGER
? globalState.stateVersion + 1
: Number.MIN_SAFE_INTEGER
endBatch()
}

Expand Down

0 comments on commit 8d6f260

Please # to comment.