import { FormattedMessage } from 'react-intl' import ImmutablePropTypes from 'react-immutable-proptypes' import ImmutablePureComponent from 'react-immutable-pure-component' import { fetchAccountByUsername } from '../actions/accounts' import { makeGetAccount } from '../selectors' import { me } from '../initial_state' import PageTitle from '../features/ui/util/page_title' import ColumnIndicator from '../components/column_indicator' import Block from '../components/block' import ProfileLayout from '../layouts/profile_layout' const mapStateToProps = (state, { params: { username } }) => { const accounts = state.getIn(['accounts']) const account = accounts.find(acct => username.toLowerCase() === acct.getIn(['acct'], '').toLowerCase()) const accountId = !!account ? account.get('id') : -1 const isBlocked = state.getIn(['relationships', accountId, 'blocked_by'], false) const isLocked = state.getIn(['accounts', accountId, 'locked'], false) const isFollowing = state.getIn(['relationships', accountId, 'following'], false) const unavailable = (me === accountId) ? false : (isBlocked || (isLocked && !isFollowing)) const getAccount = makeGetAccount() return { unavailable, account: accountId !== -1 ? getAccount(state, accountId) : null, } } const mapDispatchToProps = (dispatch) => ({ onFetchAccountByUsername(username) { dispatch(fetchAccountByUsername(username)) }, }) export default @connect(mapStateToProps, mapDispatchToProps) class ProfilePage extends ImmutablePureComponent { static propTypes = { children: PropTypes.node, params: PropTypes.object.isRequired, account: ImmutablePropTypes.map, onFetchAccountByUsername: PropTypes.func.isRequired, unavailable: PropTypes.bool.isRequired, } componentDidMount() { this.props.onFetchAccountByUsername(this.props.params.username) } render() { const { account, children, unavailable, params: { username }, } = this.props const nameHTML = !!account ? account.get('display_name_html') : '' const name = !!account ? account.get('display_name_plain') : '' return ( { !account && } { !!account && !unavailable && React.cloneElement(children, { account, }) } { unavailable && } /> } ) } }