89 lines
2.7 KiB
JavaScript
89 lines
2.7 KiB
JavaScript
import { Fragment } from 'react'
|
|
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 LinkFooter from '../components/link_footer'
|
|
import ProfileStatsPanel from '../components/panel/profile_stats_panel'
|
|
import ProfileInfoPanel from '../components/panel/profile_info_panel'
|
|
import MediaGalleryPanel from '../components/panel/media_gallery_panel'
|
|
import ColumnIndicator from '../components/column_indicator'
|
|
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,
|
|
}
|
|
}
|
|
|
|
export default
|
|
@connect(mapStateToProps)
|
|
class ProfilePage extends ImmutablePureComponent {
|
|
static propTypes = {
|
|
children: PropTypes.node,
|
|
params: PropTypes.object.isRequired,
|
|
account: ImmutablePropTypes.map,
|
|
dispatch: PropTypes.func.isRequired,
|
|
unavailable: PropTypes.bool.isRequired,
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { account, params: { username } } = this.props
|
|
if (!!account) {
|
|
document.title = `${account.get('display_name')} (@${username}) - Gab`
|
|
} else {
|
|
document.title = `@${username} - Gab`
|
|
}
|
|
}
|
|
|
|
componentWillMount() {
|
|
const { dispatch, params: { username } } = this.props
|
|
dispatch(fetchAccountByUsername(username))
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
account,
|
|
children,
|
|
unavailable
|
|
} = this.props
|
|
|
|
return (
|
|
<ProfileLayout
|
|
account={account}
|
|
layout={(
|
|
<Fragment>
|
|
<ProfileStatsPanel account={account} />
|
|
<ProfileInfoPanel account={account} />
|
|
<MediaGalleryPanel account={account} />
|
|
<LinkFooter />
|
|
</Fragment>
|
|
)}
|
|
>
|
|
{
|
|
!account && <ColumnIndicator type='loading' />
|
|
}
|
|
{
|
|
!!account && !unavailable &&
|
|
React.cloneElement(children, {
|
|
account,
|
|
})
|
|
}
|
|
</ProfileLayout>
|
|
)
|
|
}
|
|
} |