2019-03-06 03:53:37 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-23 15:15:17 +00:00
|
|
|
import { PureComponent } from 'react';
|
|
|
|
|
2019-03-06 03:53:37 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
|
2024-02-23 15:32:13 +00:00
|
|
|
import BarChart4BarsIcon from '@/material-icons/400-20px/bar_chart_4_bars.svg?react';
|
2023-10-24 17:45:08 +00:00
|
|
|
|
2023-05-23 15:15:17 +00:00
|
|
|
import { IconButton } from '../../../components/icon_button';
|
|
|
|
|
2019-03-06 03:53:37 +00:00
|
|
|
const messages = defineMessages({
|
|
|
|
add_poll: { id: 'poll_button.add_poll', defaultMessage: 'Add a poll' },
|
|
|
|
remove_poll: { id: 'poll_button.remove_poll', defaultMessage: 'Remove poll' },
|
|
|
|
});
|
|
|
|
|
|
|
|
const iconStyle = {
|
|
|
|
height: null,
|
|
|
|
lineHeight: '27px',
|
|
|
|
};
|
|
|
|
|
2023-05-23 08:52:27 +00:00
|
|
|
class PollButton extends PureComponent {
|
2019-03-06 03:53:37 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
active: PropTypes.bool,
|
|
|
|
onClick: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = () => {
|
|
|
|
this.props.onClick();
|
2023-01-30 00:45:35 +00:00
|
|
|
};
|
2019-03-06 03:53:37 +00:00
|
|
|
|
|
|
|
render () {
|
2024-01-25 15:41:31 +00:00
|
|
|
const { intl, active, disabled } = this.props;
|
2019-03-06 03:53:37 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='compose-form__poll-button'>
|
|
|
|
<IconButton
|
|
|
|
icon='tasks'
|
2024-01-25 15:41:31 +00:00
|
|
|
iconComponent={BarChart4BarsIcon}
|
2019-03-06 03:53:37 +00:00
|
|
|
title={intl.formatMessage(active ? messages.remove_poll : messages.add_poll)}
|
|
|
|
disabled={disabled}
|
|
|
|
onClick={this.handleClick}
|
|
|
|
className={`compose-form__poll-button-icon ${active ? 'active' : ''}`}
|
|
|
|
size={18}
|
|
|
|
inverted
|
|
|
|
style={iconStyle}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 02:17:53 +00:00
|
|
|
|
|
|
|
export default injectIntl(PollButton);
|