gab-social/app/javascript/gabsocial/pages/profile_page.js

87 lines
2.6 KiB
JavaScript
Raw Normal View History

import React from 'react'
2020-05-10 04:26:58 +01:00
import { FormattedMessage } from 'react-intl'
2020-02-24 21:56:07 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes'
import ImmutablePureComponent from 'react-immutable-pure-component'
2020-02-28 15:20:47 +00:00
import { fetchAccountByUsername } from '../actions/accounts'
import { makeGetAccount } from '../selectors'
2020-03-04 22:26:01 +00:00
import { me } from '../initial_state'
2020-04-11 23:29:19 +01:00
import PageTitle from '../features/ui/util/page_title'
2020-03-04 22:26:01 +00:00
import ColumnIndicator from '../components/column_indicator'
2020-05-10 04:26:58 +01:00
import Block from '../components/block'
2020-02-24 21:56:07 +00:00
import ProfileLayout from '../layouts/profile_layout'
2019-07-02 08:10:25 +01:00
class ProfilePage extends ImmutablePureComponent {
2020-04-08 02:06:59 +01:00
2020-03-12 16:09:15 +00:00
componentDidMount() {
this.props.dispatch(fetchAccountByUsername(this.props.params.username))
2020-02-28 15:20:47 +00:00
}
2020-01-27 19:46:42 +00:00
render() {
2020-03-04 22:26:01 +00:00
const {
account,
children,
2020-04-08 02:06:59 +01:00
unavailable,
noSidebar,
2020-04-11 23:29:19 +01:00
params: { username },
2020-03-04 22:26:01 +00:00
} = this.props
2019-07-02 08:10:25 +01:00
const nameHTML = !!account ? account.get('display_name_html') : ''
const name = !!account ? account.get('display_name_plain') : ''
2019-07-02 08:10:25 +01:00
return (
2020-02-24 21:56:07 +00:00
<ProfileLayout
account={account}
titleHTML={nameHTML}
2020-05-10 04:26:58 +01:00
unavailable={unavailable}
noSidebar={noSidebar}
2020-02-24 21:56:07 +00:00
>
2020-04-17 06:35:46 +01:00
<PageTitle path={`${name} (@${username})`} />
2020-03-04 22:26:01 +00:00
{
!unavailable &&
2020-03-04 22:26:01 +00:00
React.cloneElement(children, {
account,
})
}
2020-05-10 04:26:58 +01:00
{
unavailable &&
<Block>
<ColumnIndicator type='error' message={
<FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' />
} />
</Block>
2020-05-10 04:26:58 +01:00
}
2020-02-17 17:50:29 +00:00
</ProfileLayout>
2019-07-02 08:10:25 +01:00
)
}
2020-04-08 02:06:59 +01:00
}
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,
}
}
ProfilePage.propTypes = {
account: ImmutablePropTypes.map,
children: PropTypes.node,
dispatch: PropTypes.func.isRequired,
noSidebar: PropTypes.bool,
params: PropTypes.object.isRequired,
unavailable: PropTypes.bool.isRequired,
}
export default connect(mapStateToProps)(ProfilePage)