2017-07-27 20:31:59 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-28 14:38:10 +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-28 14:38:10 +00:00
|
|
|
|
2023-11-15 12:59:36 +00:00
|
|
|
import { IconButton } from '../../../components/icon_button';
|
|
|
|
|
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,
|
2022-02-09 11:23:57 +00:00
|
|
|
onClick: PropTypes.func,
|
2017-12-30 00:32:13 +00:00
|
|
|
actions: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
active: PropTypes.bool,
|
|
|
|
href: PropTypes.string,
|
|
|
|
icon: PropTypes.string,
|
2022-02-09 13:39:12 +00:00
|
|
|
meta: PropTypes.string,
|
2017-12-30 00:32:13 +00:00
|
|
|
name: PropTypes.string,
|
2022-02-09 13:39:12 +00:00
|
|
|
text: PropTypes.string,
|
2017-12-30 00:32:13 +00:00
|
|
|
})),
|
2022-02-09 13:39:12 +00:00
|
|
|
renderItemContents: PropTypes.func,
|
2017-07-27 20:31:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2022-02-09 13:39:12 +00:00
|
|
|
let contents = this.props.renderItemContents && this.props.renderItemContents(action, i);
|
|
|
|
|
|
|
|
if (!contents) {
|
|
|
|
contents = (
|
2023-05-28 12:56:24 +00:00
|
|
|
<>
|
2023-10-24 17:45:08 +00:00
|
|
|
{icon && <IconButton title={text} icon={icon} iconComponent={iconComponent} role='presentation' tabIndex={-1} inverted />}
|
2022-02-09 13:39:12 +00:00
|
|
|
<div>
|
|
|
|
<div className={classNames({ 'actions-modal__item-label': !!meta })}>{text}</div>
|
|
|
|
<div>{meta}</div>
|
|
|
|
</div>
|
2023-05-28 12:56:24 +00:00
|
|
|
</>
|
2022-02-09 13:39:12 +00:00
|
|
|
);
|
|
|
|
}
|
2017-07-27 20:31:59 +00:00
|
|
|
|
|
|
|
return (
|
2022-02-09 13:39:12 +00:00
|
|
|
<li key={`${text}-${i}`}>
|
|
|
|
<a href={href} target='_blank' rel='noopener noreferrer' onClick={this.props.onClick} data-index={i} className={classNames('link', { active })}>
|
|
|
|
{contents}
|
2022-02-09 11:23:57 +00:00
|
|
|
</a>
|
2017-07-27 20:31:59 +00:00
|
|
|
</li>
|
|
|
|
);
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2017-07-27 20:31:59 +00:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div className='modal-root__modal actions-modal'>
|
2024-02-18 18:10:58 +00:00
|
|
|
<ul>
|
2017-07-27 20:31:59 +00:00
|
|
|
{this.props.actions.map(this.renderAction)}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|