6936e5aa69
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
32 lines
1 KiB
JavaScript
32 lines
1 KiB
JavaScript
import { injectIntl, defineMessages } from 'react-intl';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import WarningIcon from 'mastodon/../material-icons/400-24px/warning.svg?react';
|
|
import { IconButton } from 'mastodon/components/icon_button';
|
|
|
|
import { changeComposeSpoilerness } from '../../../actions/compose';
|
|
|
|
const messages = defineMessages({
|
|
marked: { id: 'compose_form.spoiler.marked', defaultMessage: 'Text is hidden behind warning' },
|
|
unmarked: { id: 'compose_form.spoiler.unmarked', defaultMessage: 'Text is not hidden' },
|
|
});
|
|
|
|
const mapStateToProps = (state, { intl }) => ({
|
|
iconComponent: WarningIcon,
|
|
title: intl.formatMessage(state.getIn(['compose', 'spoiler']) ? messages.marked : messages.unmarked),
|
|
active: state.getIn(['compose', 'spoiler']),
|
|
ariaControls: 'cw-spoiler-input',
|
|
size: 18,
|
|
inverted: true,
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onClick () {
|
|
dispatch(changeComposeSpoilerness());
|
|
},
|
|
|
|
});
|
|
|
|
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(IconButton));
|