Skip to content

Latest commit

 

History

History
137 lines (99 loc) · 3.36 KB

action-button.md

File metadata and controls

137 lines (99 loc) · 3.36 KB

ActionButton

  1. Overview
  2. Usage
  3. Props

Overview

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.

Props

action

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.

tag

Defaults to "button". Indicates the HTML element ActionButton should render with.

value

The parameters that should be passed when broadcasting the provided action.

prepare(value, event)

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.

confirm(value, event)

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>
  )
}

onClick(event, action)

An event callback executed immediately after the button clicks and the action is broadcasted.

onOpen(payload)

After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute when the action opens.

onDone(payload)

After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute if the action completes successfully.

onError(payload)

After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute if the action is rejected.

onCancel(payload)

After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute when the action is cancelled.

onUpdate(payload)

After broadcasting, if the dispatched action returns a Microcosm action, this callback will execute when the action emits a progress update.