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