docs/enabling-decorators.md
After years of alterations, ES decorators have finally reached Stage 3 in the TC39 process, meaning that they are quite stable and won't undergo breaking changes again like the previous decorator proposals have. MobX has implemented support for this new "2022.3/Stage 3" decorator syntax.
With modern decorators, it is no longer needed to call makeObservable / makeAutoObservable.
2022.3 Decorators are supported in:
experimentalDecorators flag is NOT enabled). Example commit.proposal-decorators is enabled with the highest version (currently 2023-05). Example commit.// tsconfig.json
{
"compilerOptions": {
"experimentalDecorators": false /* or just remove the flag */
}
}
// babel.config.json (or equivalent)
{
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"version": "2023-05"
}
]
]
}
// vite.config.js
{
plugins: [
react({
babel: {
plugins: [
[
"@babel/plugin-proposal-decorators",
{
version: "2023-05"
}
]
]
}
})
]
}
import { observable, computed, action } from "mobx"
class Todo {
id = Math.random()
@observable accessor title = ""
@observable accessor finished = false
@action
toggle() {
this.finished = !this.finished
}
}
class TodoList {
@observable accessor todos = []
@computed
get unfinishedTodoCount() {
return this.todos.filter(todo => !todo.finished).length
}
}
Notice the usage of the new accessor keyword when using @observable.
It is part of the 2022.3 spec and is required if you want to use modern decorators.
We do not recommend codebases to use TypeScript / Babel legacy decorators since they well never become an official part of the language, but you can still use them. It does require a specific setup for transpilation:
MobX before version 6 encouraged the use of legacy decorators and mark things as observable, computed and action.
While MobX 6 recommends against using these decorators (and instead use either modern decorators or makeObservable / makeAutoObservable), it is in the current major version still possible.
Support for legacy decorators will be removed in MobX 7.
import { makeObservable, observable, computed, action } from "mobx"
class Todo {
id = Math.random()
@observable title = ""
@observable finished = false
constructor() {
makeObservable(this)
}
@action
toggle() {
this.finished = !this.finished
}
}
class TodoList {
@observable todos = []
@computed
get unfinishedTodoCount() {
return this.todos.filter(todo => !todo.finished).length
}
constructor() {
makeObservable(this)
}
}
To migrate from legacy decorators to modern decorators, perform the following steps:
experimentalDecorators flag from your TypeScript configuration (or Babel equivalent)makeObservable(this) calls from class constructors that use decorators.@observable (and variations) with @observable accessorPlease note that adding accessor to a class property will change it into get and set class methods. Unlike class properties, class methods are not enumerable. This may introduce new behavior with some APIs, such as Object.keys, JSON.stringify, etc.
MobX' 2022.3 Decorators are very similar to the MobX 5 decorators, so usage is mostly the same, but there are some gotchas:
@observable accessor decorators are not enumerable. accessors do not have a direct equivalent in the past - they're a new concept in the language. We've chosen to make them non-enumerable, non-own properties in order to better follow the spirit of the ES language and what accessor means.
The main cases for enumerability seem to have been around serialization and rest destructuring.
toJSON or using serializr as possible alternatives)@action some_field = () => {} was and is valid usage. However, inheritance is different between legacy decorators and modern decorators.
@action, and subclass tries to override the same field, it will throw a TypeError: Cannot redefine property.@action, and subclass tries to override the same field, it's allowed to override the field. However, the field on subclass is not an action unless it's also decorated with @action in subclass declaration.observer as a decoratorThe observer function from mobx-react is both a function and a decorator that can be used on class components:
@observer
class Timer extends React.Component {
/* ... */
}