2021-06-18 09:04:31 -07:00
|
|
|
import PropTypes from 'prop-types';
|
2022-01-10 14:17:52 -08:00
|
|
|
import React from 'react';
|
2021-06-18 09:04:31 -07:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
2022-03-21 15:04:44 -07:00
|
|
|
import ComposeFormButton from './compose_form_button';
|
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,
|
2022-05-03 14:00:07 -07:00
|
|
|
unavailable: PropTypes.bool,
|
2021-06-18 09:04:31 -07:00
|
|
|
onClick: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = () => {
|
|
|
|
this.props.onClick();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2022-05-03 14:00:07 -07:00
|
|
|
const { intl, active, unavailable, disabled } = this.props;
|
|
|
|
|
|
|
|
if (unavailable) {
|
|
|
|
return null;
|
|
|
|
}
|
2021-06-18 09:04:31 -07:00
|
|
|
|
|
|
|
return (
|
2022-03-21 15:04:44 -07:00
|
|
|
<ComposeFormButton
|
|
|
|
icon={require('@tabler/icons/icons/calendar-stats.svg')}
|
|
|
|
title={intl.formatMessage(active ? messages.remove_schedule : messages.add_schedule)}
|
|
|
|
active={active}
|
|
|
|
disabled={disabled}
|
|
|
|
onClick={this.handleClick}
|
|
|
|
/>
|
2021-06-18 09:04:31 -07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|