title | category | layout | updated |
---|---|---|---|
Mobx |
JavaScript libraries |
2017/sheet |
2017-05-14 |
import {observable, computed} from 'mobx'
class Page {
@observable title = ''
@observable published = false
@observable author = null
@computed get authorName () {
return this.author || 'Anonymous'
}
}
class Page {
@action publish () {
this.published = true
// do ajax/async here if you like
}
}
const person = observable({
name: 'Ella Fitzgerald'
})
const temp = observable(23)
temp.get()
temp.set(25)
temp.observe(...)
import {autorun, autorunAsync, when} from 'mobx'
// Runs it, finds out what it accessed, then observe those
autorun(() => {
console.log(page.title)
})
class Foo {
constructor () {
when(
() => !this.isVisible,
() => this.doSomething())
}
}
// A temporary computed value. Its result is cached.
render () {
const isPublished = expr(() => page.published === true)
if (isPublished) { ... }
}
asMap(obj)
- JS map (dynamic keys)asReference(fn)
- don't observe measStructure(obj)
- JS object (observe as deepEqual)asFlat(array)
- JS array (observe its children)
import { observer } from 'mobx-react'
@observer
class PageView extends React.Component {
render () {
return <div>{this.props.page.title}</div>
}
}
<PageView page={page} />
import { observer } from 'mobx-react'
const PageView = observer(({page}) => {
<div>{page.title}</div>
})
<PageView page={page} />