Skip to content

Latest commit

 

History

History
110 lines (87 loc) · 4.76 KB

autorun.md

File metadata and controls

110 lines (87 loc) · 4.76 KB
title sidebar_label hide_title
autorun
autorun
true

Autorun

<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CEBD4KQ7&placement=mobxjsorg" id="_carbonads_js"></script>
egghead.io lesson 9: custom reactions
<iframe style="border: none;" width=760 height=427 src="https://egghead.io/lessons/react-write-custom-mobx-reactions-with-when-and-autorun/embed" ></iframe>
Hosted on egghead.io

mobx.autorun can be used in those cases where you want to create a reactive function that will never have observers itself. This is usually the case when you need to bridge from reactive to imperative code, for example for logging, persistence, or UI-updating code. When autorun is used, the provided function will always be triggered once immediately and then again each time one of its dependencies changes. In contrast, computed(function) creates functions that only re-evaluate if it has observers on its own, otherwise its value is considered to be irrelevant. As a rule of thumb: use autorun if you have a function that should run automatically but that doesn't result in a new value. Use computed for everything else. Autoruns are about initiating effects, not about producing new values. If a string is passed as first argument to autorun, it will be used as debug name.

The return value from autorun is a disposer function, which can be used to dispose of the autorun when you no longer need it. The reaction itself will also be passed as the only argument to the function given to autorun, which allows you to manipulate it from within the autorun function. This means there are two ways you can dispose of the reaction when you no longer need it:

const disposer = autorun((reaction) => {
    /* do some stuff */
})
disposer()

// or

autorun((reaction) => {
    /* do some stuff */
    reaction.dispose()
})

Just like the @observer decorator/function, autorun will only observe data that is used during the execution of the provided function.

var numbers = observable([1, 2, 3])
var sum = computed(() => numbers.reduce((a, b) => a + b, 0))

var disposer = autorun(() => console.log(sum.get()))
// prints '6'
numbers.push(4)
// prints '10'

disposer()
numbers.push(5)
// won't print anything, nor is `sum` re-evaluated

Options

Autorun accepts as the second argument an options object with the following optional options:

  • delay: Number in milliseconds that can be used to throttle the effect function. If zero (the default), no throttling will happen.
  • name: String that is used as name for this reaction in for example spy events.
  • onError: function that will handle the errors of this reaction, rather then propagating them.
  • scheduler: Set a custom scheduler to determine how re-running the autorun function should be scheduled. It takes a function that should be invoked at some point in the future, for example: { scheduler: run => { setTimeout(run, 1000) }}

The delay option

autorun(
    () => {
        // Assuming that profile.asJson returns an observable Json representation of profile,
        // send it to the server each time it is changed, but await at least 300 milliseconds before sending it.
        // When sent, the latest value of profile.asJson will be used.
        sendProfileToServer(profile.asJson)
    },
    { delay: 300 }
)

The onError option

Exceptions thrown in autorun and all other types reactions are caught and logged to the console, but not propagated back to the original causing code. This is to make sure that a reaction in one exception does not prevent the scheduled execution of other, possibly unrelated, reactions. This also allows reactions to recover from exceptions; throwing an exception does not break the tracking done by MobX, so as subsequent run of a reaction might complete normally again if the cause for the exception is removed.

It is possible to override the default logging behavior of Reactions by providing the onError option Example:

const age = observable.box(10)

const dispose = autorun(
    () => {
        if (age.get() < 0) throw new Error("Age should not be negative")
        console.log("Age", age.get())
    },
    {
        onError(e) {
            window.alert("Please enter a valid age")
        },
    }
)

A global onError handler can be set as well, use onReactionError(handler). This can be useful in tests or for client side error monitoring.