import { Fragment } from 'react' import { defineMessages, injectIntl } from 'react-intl' import { fetchSuggestions, dismissSuggestion } from '../../actions/suggestions' import ImmutablePureComponent from 'react-immutable-pure-component' import ImmutablePropTypes from 'react-immutable-proptypes' import { List as ImmutableList } from 'immutable' import PanelLayout from './panel_layout' import Divider from '../divider' import Icon from '../icon' import Text from '../text' 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}' }, }) const mapStateToProps = (state, { account }) => { const identityProofs = !!account ? state.getIn(['identity_proofs', account.get('id')], ImmutableList()) : ImmutableList() return { identityProofs, domain: state.getIn(['meta', 'domain']), } } const mapDispatchToProps = (dispatch) => ({ fetchSuggestions: () => dispatch(fetchSuggestions()), dismissSuggestion: account => dispatch(dismissSuggestion(account.get('id'))), }) export default @connect(mapStateToProps, mapDispatchToProps) @injectIntl class ProfileInfoPanel extends ImmutablePureComponent { static propTypes = { identityProofs: ImmutablePropTypes.list, account: ImmutablePropTypes.map, intl: PropTypes.object.isRequired, } componentDidMount() { this.props.fetchSuggestions() } render() { const { intl, account, identityProofs } = this.props if (!account) return null 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') !== '

') : false return (
{ hasNote &&
}
{ intl.formatMessage(messages.memberSince, { date: memberSinceDate }) }
{(fields.size > 0 || identityProofs.size > 0) && (
{identityProofs.map((proof, i) => (
{ /* : todo : */}
))} { fields.map((pair, i) => (
)) }
)}
) } }