import PropTypes from 'prop-types'; import { PureComponent } from 'react'; import { FormattedMessage, injectIntl } from 'react-intl'; import { Link } from 'react-router-dom'; import { connect } from 'react-redux'; import { openModal } from 'mastodon/actions/modal'; import { disabledAccountId, movedToAccountId, domain } from 'mastodon/initial_state'; const mapStateToProps = (state) => ({ disabledAcct: state.getIn(['accounts', disabledAccountId, 'acct']), movedToAcct: movedToAccountId ? state.getIn(['accounts', movedToAccountId, 'acct']) : undefined, }); const mapDispatchToProps = (dispatch) => ({ onLogout () { dispatch(openModal({ modalType: 'CONFIRM_LOG_OUT' })); }, }); class DisabledAccountBanner extends PureComponent { static propTypes = { disabledAcct: PropTypes.string.isRequired, movedToAcct: PropTypes.string, onLogout: PropTypes.func.isRequired, intl: PropTypes.object.isRequired, }; handleLogOutClick = e => { e.preventDefault(); e.stopPropagation(); this.props.onLogout(); return false; }; render () { const { disabledAcct, movedToAcct } = this.props; const disabledAccountLink = ( {disabledAcct}@{domain} ); return (
); } } export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(DisabledAccountBanner));