Component for displaying an action as a button.
Used primarily in ActionBar.
const deleteItems = (items) => deleteItemsFromAPI({ items });
<ActionButton
danger
icon='delete',
label='Delete All Items',
onClick={deleteItems}
/>
danger: Boolean
- Changes the styling to be red and scaryicon: String OR Element
- Renders an MUI Icon or provided componentlabel: String
- The label for a text-based button or tooltip for an icon buttononClick: Function
- Function called when clicked - BaseTable hijacks this to passitems
link: String OR Object
- Passed to ReactRouter's Link component asto
BaseTable overwrites the onClick event to pass in the selected items in the table. You can do this anywhere by simply overwriting the prop, or, in ActionBar-style usage, accept an action
as an object and wrapping the onClick event and spreading the action to the ActionButton component.
const { action, items } = this.props;
/* action = {
danger: true,
icon: 'delete',
label: 'Delete All Items',
onClick: deleteItemsFromAPI
};
items = [ 1, 2, 3 ]; */
action.onClick = () => action.onClick(items);
<ActionButton {...action} />