You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
952 B

  1. import React from 'react';
  2. import { connect } from 'react-redux';
  3. import Warning from '../components/warning';
  4. import PropTypes from 'prop-types';
  5. import { FormattedMessage } from 'react-intl';
  6. import { me } from '../../../initial_state';
  7. const mapStateToProps = state => ({
  8. needsLockWarning: state.getIn(['compose', 'privacy']) === 'private' && !state.getIn(['accounts', me, 'locked']),
  9. });
  10. const WarningWrapper = ({ needsLockWarning }) => {
  11. if (needsLockWarning) {
  12. return <Warning message={<FormattedMessage id='compose_form.lock_disclaimer' defaultMessage='Your account is not {locked}. Anyone can follow you to view your follower-only posts.' values={{ locked: <a href='/settings/profile'><FormattedMessage id='compose_form.lock_disclaimer.lock' defaultMessage='locked' /></a> }} />} />;
  13. }
  14. return null;
  15. };
  16. WarningWrapper.propTypes = {
  17. needsLockWarning: PropTypes.bool,
  18. };
  19. export default connect(mapStateToProps)(WarningWrapper);