141 lines
5.0 KiB
JavaScript
141 lines
5.0 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { defineMessages, injectIntl } from 'react-intl'
|
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
|
import ImmutablePropTypes from 'react-immutable-proptypes'
|
|
import { List as ImmutableList } from 'immutable'
|
|
import { DEFAULT_REL } from '../../constants'
|
|
import PanelLayout from './panel_layout'
|
|
import Divider from '../divider'
|
|
import Icon from '../icon'
|
|
import Text from '../text'
|
|
import Dummy from '../dummy'
|
|
import ProfileInfoPanelPlaceholder from '../placeholder/profile_info_panel_placeholder'
|
|
|
|
class ProfileInfoPanel extends ImmutablePureComponent {
|
|
|
|
render() {
|
|
const {
|
|
intl,
|
|
account,
|
|
noPanel
|
|
} = this.props
|
|
|
|
const Wrapper = noPanel ? Dummy : PanelLayout
|
|
|
|
if (!account && !noPanel) {
|
|
return (
|
|
<Wrapper title={intl.formatMessage(messages.title)}>
|
|
<ProfileInfoPanelPlaceholder />
|
|
</Wrapper>
|
|
)
|
|
}
|
|
|
|
const fields = account.get('fields')
|
|
const content = { __html: account.get('note_emojified') }
|
|
const memberSinceDate = intl.formatDate(account.get('created_at'), { month: 'long', year: 'numeric' })
|
|
const hasNote = !!content ? (account.get('note').length > 0 && account.get('note') !== '<p></p>') : false
|
|
const isPro = account.get('is_pro')
|
|
const isDonor = account.get('is_donor')
|
|
const isInvestor = account.get('is_investor')
|
|
const hasBadges = isPro || isDonor || isInvestor
|
|
|
|
return (
|
|
<Wrapper title={intl.formatMessage(messages.title)}>
|
|
<div className={[_s.d].join(' ')}>
|
|
{
|
|
hasNote &&
|
|
<React.Fragment>
|
|
<div className={_s.dangerousContent} dangerouslySetInnerHTML={content} />
|
|
<Divider isSmall />
|
|
</React.Fragment>
|
|
}
|
|
|
|
<div className={[_s.d, _s.flexRow, _s.aiCenter].join(' ')}>
|
|
<Icon id='calendar' size='12px' className={_s.cSecondary} />
|
|
<Text
|
|
size='small'
|
|
color='secondary'
|
|
className={_s.ml5}
|
|
>
|
|
{
|
|
intl.formatMessage(messages.memberSince, {
|
|
date: memberSinceDate
|
|
})
|
|
}
|
|
</Text>
|
|
</div>
|
|
|
|
{
|
|
hasBadges &&
|
|
<React.Fragment>
|
|
<Divider isSmall />
|
|
<div className={[_s.d, _s.flexRow, _s.aiCenter].join(' ')}>
|
|
{
|
|
isPro &&
|
|
<div className={[_s.mr5, _s.radiusSmall, _s.bgPro, _s.py2, _s.px5].join(' ')}>
|
|
<Text weight='bold' size='small' className={_s.colorBGPrimary} isBadge>PRO</Text>
|
|
</div>
|
|
}
|
|
{
|
|
isInvestor &&
|
|
<div className={[_s.mr5, _s.radiusSmall, _s.bgInvestor, _s.py2, _s.px5].join(' ')}>
|
|
<Text weight='bold' size='small' className={_s.colorBGPrimary} isBadge>INVESTOR</Text>
|
|
</div>
|
|
}
|
|
{
|
|
isDonor &&
|
|
<div className={[_s.mr5, _s.radiusSmall, _s.bgDonor, _s.py2, _s.px5].join(' ')}>
|
|
<Text weight='bold' size='small' className={_s.colorBGPrimary} isBadge>DONOR</Text>
|
|
</div>
|
|
}
|
|
</div>
|
|
</React.Fragment>
|
|
}
|
|
|
|
{
|
|
fields.size > 0 &&
|
|
<div className={[_s.d]}>
|
|
{
|
|
fields.map((pair, i) => (
|
|
<React.Fragment>
|
|
<Divider isSmall />
|
|
<dl className={[_s.d, _s.flexRow, _s.aiCenter].join(' ')} key={`profile-field-${i}`}>
|
|
<dt
|
|
className={[_s.text, _s.dangerousContent, _s.pr5].join(' ')}
|
|
dangerouslySetInnerHTML={{ __html: pair.get('name_emojified') }}
|
|
title={pair.get('name')}
|
|
/>
|
|
<dd
|
|
className={[_s.dangerousContent, _s.mlAuto].join(' ')}
|
|
title={pair.get('value_plain')}
|
|
dangerouslySetInnerHTML={{ __html: pair.get('value_emojified') }}
|
|
/>
|
|
</dl>
|
|
</React.Fragment>
|
|
))
|
|
}
|
|
</div>
|
|
}
|
|
|
|
</div>
|
|
</Wrapper>
|
|
)
|
|
}
|
|
}
|
|
|
|
const messages = defineMessages({
|
|
title: { id: 'about', defaultMessage: 'About' },
|
|
linkVerifiedOn: { id: 'account.link_verified_on', defaultMessage: 'Ownership of this link was checked on {date}' },
|
|
account_locked: { id: 'account.locked_info', defaultMessage: 'This account privacy status is set to locked. The owner manually reviews who can follow them.' },
|
|
bot: { id: 'account.badges.bot', defaultMessage: 'Bot' },
|
|
memberSince: { id: 'account.member_since', defaultMessage: 'Member since {date}' },
|
|
})
|
|
|
|
ProfileInfoPanel.propTypes = {
|
|
account: ImmutablePropTypes.map,
|
|
noPanel: PropTypes.bool,
|
|
intl: PropTypes.object.isRequired,
|
|
}
|
|
|
|
export default injectIntl(ProfileInfoPanel) |