2021-06-18 09:04:31 -07:00
|
|
|
import React from 'react';
|
|
|
|
import IconButton from '../../../components/icon_button';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2021-09-22 12:38:48 -07:00
|
|
|
import classNames from 'classnames';
|
2021-06-18 09:04:31 -07:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
add_schedule: { id: 'schedule_button.add_schedule', defaultMessage: 'Schedule post for later' },
|
|
|
|
remove_schedule: { id: 'schedule_button.remove_schedule', defaultMessage: 'Post immediately' },
|
|
|
|
});
|
|
|
|
|
|
|
|
export default
|
|
|
|
@injectIntl
|
|
|
|
class ScheduleButton extends React.PureComponent {
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
active: PropTypes.bool,
|
|
|
|
onClick: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = () => {
|
|
|
|
this.props.onClick();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { intl, active, disabled } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='compose-form__schedule-button'>
|
|
|
|
<IconButton
|
2021-09-22 12:38:48 -07:00
|
|
|
className={classNames('compose-form__schedule-button-icon', { active })}
|
|
|
|
src={require('@tabler/icons/icons/calendar-stats.svg')}
|
2021-06-18 09:04:31 -07:00
|
|
|
title={intl.formatMessage(active ? messages.remove_schedule : messages.add_schedule)}
|
|
|
|
disabled={disabled}
|
|
|
|
onClick={this.handleClick}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|