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.

23 lines
932 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. const mapStateToProps = state => ({
  7. needsLockWarning: state.getIn(['compose', 'privacy']) === 'private' && !state.getIn(['accounts', state.getIn(['meta', 'me']), 'locked']),
  8. });
  9. const WarningWrapper = ({ needsLockWarning }) => {
  10. if (needsLockWarning) {
  11. 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> }} />} />;
  12. }
  13. return null;
  14. };
  15. WarningWrapper.propTypes = {
  16. needsLockWarning: PropTypes.bool,
  17. };
  18. export default connect(mapStateToProps)(WarningWrapper);