2017-04-22 04:05:35 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-24 01:15:17 +10:00
|
|
|
import { PureComponent } from 'react';
|
|
|
|
|
|
|
|
import { injectIntl, defineMessages, FormattedMessage } from 'react-intl';
|
|
|
|
|
2017-06-21 03:43:09 +10:00
|
|
|
import classNames from 'classnames';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
2019-05-03 12:34:55 +10:00
|
|
|
import { changeComposeSensitivity } from 'mastodon/actions/compose';
|
2017-03-25 10:01:43 +11:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2020-10-27 13:05:50 +11:00
|
|
|
marked: {
|
|
|
|
id: 'compose_form.sensitive.marked',
|
|
|
|
defaultMessage: '{count, plural, one {Media is marked as sensitive} other {Media is marked as sensitive}}',
|
|
|
|
},
|
|
|
|
unmarked: {
|
|
|
|
id: 'compose_form.sensitive.unmarked',
|
|
|
|
defaultMessage: '{count, plural, one {Media is not marked as sensitive} other {Media is not marked as sensitive}}',
|
|
|
|
},
|
2017-03-25 10:01:43 +11:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2017-05-21 01:31:47 +10:00
|
|
|
active: state.getIn(['compose', 'sensitive']),
|
2017-07-31 13:06:56 +10:00
|
|
|
disabled: state.getIn(['compose', 'spoiler']),
|
2020-10-27 13:05:50 +11:00
|
|
|
mediaCount: state.getIn(['compose', 'media_attachments']).size,
|
2017-03-25 10:01:43 +11:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
|
|
|
|
onClick () {
|
|
|
|
dispatch(changeComposeSensitivity());
|
2017-05-21 01:31:47 +10:00
|
|
|
},
|
2017-03-25 10:01:43 +11:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2023-05-23 18:52:27 +10:00
|
|
|
class SensitiveButton extends PureComponent {
|
2017-03-25 10:01:43 +11:00
|
|
|
|
2017-05-12 22:44:10 +10:00
|
|
|
static propTypes = {
|
|
|
|
active: PropTypes.bool,
|
2017-07-31 13:06:56 +10:00
|
|
|
disabled: PropTypes.bool,
|
2020-10-27 13:05:50 +11:00
|
|
|
mediaCount: PropTypes.number,
|
2017-05-12 22:44:10 +10:00
|
|
|
onClick: PropTypes.func.isRequired,
|
2017-05-21 01:31:47 +10:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 22:44:10 +10:00
|
|
|
};
|
|
|
|
|
2017-03-25 10:01:43 +11:00
|
|
|
render () {
|
2020-10-27 13:05:50 +11:00
|
|
|
const { active, disabled, mediaCount, onClick, intl } = this.props;
|
2017-03-25 10:01:43 +11:00
|
|
|
|
|
|
|
return (
|
2019-05-03 12:34:55 +10:00
|
|
|
<div className='compose-form__sensitive-button'>
|
2020-10-27 13:05:50 +11:00
|
|
|
<label className={classNames('icon-button', { active })} title={intl.formatMessage(active ? messages.marked : messages.unmarked, { count: mediaCount })}>
|
2019-05-11 01:59:57 +10:00
|
|
|
<input
|
|
|
|
name='mark-sensitive'
|
|
|
|
type='checkbox'
|
|
|
|
checked={active}
|
|
|
|
onChange={onClick}
|
|
|
|
disabled={disabled}
|
|
|
|
/>
|
|
|
|
|
2020-10-27 13:05:50 +11:00
|
|
|
<FormattedMessage
|
|
|
|
id='compose_form.sensitive.hide'
|
|
|
|
defaultMessage='{count, plural, one {Mark media as sensitive} other {Mark media as sensitive}}'
|
|
|
|
values={{ count: mediaCount }}
|
|
|
|
/>
|
2019-05-11 01:59:57 +10:00
|
|
|
</label>
|
2019-05-03 12:34:55 +10:00
|
|
|
</div>
|
2017-03-25 10:01:43 +11:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 04:05:35 +10:00
|
|
|
}
|
|
|
|
|
2017-03-25 10:01:43 +11:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(injectIntl(SensitiveButton));
|