File size: 902 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
/* eslint-disable no-unused-vars */
import * as React from "react";
import PropTypes from "prop-types";
/* eslint-enable no-unused-vars */
class MTableActions extends React.Component {
render() {
if (this.props.actions) {
return this.props.actions.map((action, index) => (
<this.props.components.Action
action={action}
key={"action-" + index}
data={this.props.data}
size={this.props.size}
disabled={this.props.disabled}
/>
));
}
return null;
}
}
MTableActions.defaultProps = {
actions: [],
data: {},
};
MTableActions.propTypes = {
components: PropTypes.object.isRequired,
actions: PropTypes.array.isRequired,
data: PropTypes.oneOfType([
PropTypes.object,
PropTypes.arrayOf(PropTypes.object),
]),
disabled: PropTypes.bool,
size: PropTypes.string,
};
export default MTableActions;
|