2017-03-24 23:01:43 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import TextIconButton from '../components/text_icon_button';
|
|
|
|
import { changeComposeSpoilerness } from '../../../actions/compose';
|
|
|
|
import { injectIntl, defineMessages } from 'react-intl';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 15:31:47 +00:00
|
|
|
title: { id: 'compose_form.spoiler', defaultMessage: 'Hide text behind warning' },
|
2017-03-24 23:01:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = (state, { intl }) => ({
|
|
|
|
label: 'CW',
|
|
|
|
title: intl.formatMessage(messages.title),
|
2017-04-23 18:33:44 +00:00
|
|
|
active: state.getIn(['compose', 'spoiler']),
|
2017-05-20 15:31:47 +00:00
|
|
|
ariaControls: 'cw-spoiler-input',
|
2017-03-24 23:01:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
|
|
|
|
onClick () {
|
|
|
|
dispatch(changeComposeSpoilerness());
|
2017-05-20 15:31:47 +00:00
|
|
|
},
|
2017-03-24 23:01:43 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(TextIconButton));
|