2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-03-24 23:01:43 +00:00
|
|
|
import { connect } from 'react-redux';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-03-24 23:01:43 +00:00
|
|
|
import TextIconButton from '../components/text_icon_button';
|
|
|
|
import { changeComposeSensitivity } from '../../../actions/compose';
|
|
|
|
import { Motion, spring } from 'react-motion';
|
|
|
|
import { injectIntl, defineMessages } from 'react-intl';
|
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
title: { id: 'compose_form.sensitive', defaultMessage: 'Mark media as sensitive' }
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
visible: state.getIn(['compose', 'media_attachments']).size > 0,
|
|
|
|
active: state.getIn(['compose', 'sensitive'])
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
|
|
|
|
onClick () {
|
|
|
|
dispatch(changeComposeSensitivity());
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class SensitiveButton extends React.PureComponent {
|
2017-03-24 23:01:43 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
visible: PropTypes.bool,
|
|
|
|
active: PropTypes.bool,
|
|
|
|
onClick: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
2017-03-24 23:01:43 +00:00
|
|
|
render () {
|
|
|
|
const { visible, active, onClick, intl } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Motion defaultStyle={{ scale: 0.87 }} style={{ scale: spring(visible ? 1 : 0.87, { stiffness: 200, damping: 3 }) }}>
|
|
|
|
{({ scale }) =>
|
|
|
|
<div style={{ display: visible ? 'block' : 'none', transform: `translateZ(0) scale(${scale})` }}>
|
|
|
|
<TextIconButton onClick={onClick} label='NSFW' title={intl.formatMessage(messages.title)} active={active} />
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</Motion>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 23:01:43 +00:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(injectIntl(SensitiveButton));
|