ActionButton is a wrapper around a standard button
tag that provides
a method of broadcasting an action to associated Presenters
(see ./presenter.md
).
import React from 'react'
import DOM from 'react-dom'
import Presenter from 'microcosm/addons/presenter'
import ActionButton from 'microcosm/addons/action-button'
import Microcosm from 'microcosm'
const repo = new Microcosm()
const increaseCount = n => n
repo.addDomain('count', {
getInitialState() {
return 0
},
increase(count, amount) {
return count + amount
},
register() {
return {
[increaseCount]: this.increase
}
}
})
class CountPresenter extends Presenter {
getModel() {
return {
count: state => state.count
}
}
render({ count }) {
return (
<ActionButton action={increaseCount} value={1}>
{count}
</ActionButton>
)
}
}
DOM.render(<CountPresenter repo={repo} />, document.getElementById('container'))
When clicked, the ActionButton will invoke an action, passing in the
provided value
prop.
A string or action to send to Presenters. If a Presenter is registered
to that string via its intercept()
method, it will execute the
associated callback. Otherwise, it gets passed up the tree of
Presenters, eventually dispatching to the associated Microcosm
instance.
Defaults to "button"
. Indicates the HTML element ActionButton
should render with.
The parameters that should be passed when broadcasting the provided action.
Called after the button is clicked but before the action is broadcasted. This provides an opportunity to alter the action payload (e.g. based on the event object) before it gets dispatched.
Called right before an ActionButton will dispatch an action. Return true
or false
from this callback in order to control whether or not the ActionButton dispatches. This is useful for:
- Asking a user if they want to perform an action
- Only applying a behavior for specific keyboard input (like if the control key is pressed)
value
is the result of calling the prepare
property.
function askUser(value, event) {
return confirm('Are you sure you want to do this?')
}
function ConfirmButton(props) {
return (
<ActionButton action={deleteItem} confirm={askUser}>
Delete Item
</ActionButton>
)
}
An event callback executed immediately after the button clicks and the action is broadcasted.
After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute when the action opens.
After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute if the action completes successfully.
After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute if the action is rejected.
After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute when the action is cancelled.
After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute when the action emits a progress update.