2017-07-28 06:31:59 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import classNames from 'classnames';
|
|
|
|
|
2017-09-22 12:59:17 +10:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-07-28 06:31:59 +10:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2023-05-09 11:11:56 +10:00
|
|
|
import { IconButton } from '../../../components/icon_button';
|
2017-07-28 06:31:59 +10:00
|
|
|
|
2017-07-28 07:01:50 +10:00
|
|
|
export default class ActionsModal extends ImmutablePureComponent {
|
2017-07-28 06:31:59 +10:00
|
|
|
|
|
|
|
static propTypes = {
|
2017-09-22 12:59:17 +10:00
|
|
|
status: ImmutablePropTypes.map,
|
2017-07-28 06:31:59 +10:00
|
|
|
actions: PropTypes.array,
|
|
|
|
onClick: PropTypes.func,
|
|
|
|
};
|
|
|
|
|
|
|
|
renderAction = (action, i) => {
|
|
|
|
if (action === null) {
|
2017-09-22 12:59:17 +10:00
|
|
|
return <li key={`sep-${i}`} className='dropdown-menu__separator' />;
|
2017-07-28 06:31:59 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
const { icon = null, text, meta = null, active = false, href = '#' } = action;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<li key={`${text}-${i}`}>
|
2019-10-25 07:44:42 +11:00
|
|
|
<a href={href} target='_blank' rel='noopener noreferrer' onClick={this.props.onClick} data-index={i} className={classNames({ active })}>
|
2023-04-05 00:33:44 +10:00
|
|
|
{icon && <IconButton title={text} icon={icon} role='presentation' tabIndex={-1} inverted />}
|
2017-07-28 06:31:59 +10:00
|
|
|
<div>
|
2017-09-22 12:59:17 +10:00
|
|
|
<div className={classNames({ 'actions-modal__item-label': !!meta })}>{text}</div>
|
2017-07-28 06:31:59 +10:00
|
|
|
<div>{meta}</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
);
|
2023-01-30 11:45:35 +11:00
|
|
|
};
|
2017-07-28 06:31:59 +10:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal actions-modal'>
|
2019-04-22 22:55:50 +10:00
|
|
|
<ul className={classNames({ 'with-status': !!status })}>
|
2017-07-28 06:31:59 +10:00
|
|
|
{this.props.actions.map(this.renderAction)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|