import { List as ImmutableList } from 'immutable'; import PropTypes from 'prop-types'; import React from 'react'; import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { FormattedMessage, injectIntl } from 'react-intl'; import { connect } from 'react-redux'; import Icon from 'soapbox/components/icon'; import { fetchPinnedAccounts } from '../../../actions/accounts'; import AccountContainer from '../../../containers/account_container'; class PinnedAccountsPanel extends ImmutablePureComponent { static propTypes = { pinned: ImmutablePropTypes.list.isRequired, fetchPinned: PropTypes.func.isRequired, intl: PropTypes.object.isRequired, }; componentDidMount() { this.props.fetchPinned(); } render() { const { account } = this.props; const pinned = this.props.pinned.slice(0, this.props.limit); if (pinned.isEmpty()) { return null; } return (