import PropTypes from 'prop-types'; import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; import { Helmet } from 'react-helmet'; import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { connect } from 'react-redux'; import { debounce } from 'lodash'; import RefreshIcon from '@/material-icons/400-24px/refresh.svg?react'; import { fetchEmojiReactions, expandEmojiReactions } from 'mastodon/actions/interactions'; import ColumnHeader from 'mastodon/components/column_header'; import { Icon } from 'mastodon/components/icon'; import ScrollableList from 'mastodon/components/scrollable_list'; import AccountContainer from 'mastodon/containers/account_container'; import Column from 'mastodon/features/ui/components/column'; import EmojiView from '../../components/emoji_view'; import { LoadingIndicator } from '../../components/loading_indicator'; const messages = defineMessages({ refresh: { id: 'refresh', defaultMessage: 'Refresh' }, }); const mapStateToProps = (state, props) => { return { accountIds: state.getIn(['user_lists', 'emoji_reactioned_by', props.params.statusId, 'items']), hasMore: !!state.getIn(['user_lists', 'emoji_reactioned_by', props.params.statusId, 'next']), isLoading: state.getIn(['user_lists', 'emoji_reactioned_by', props.params.statusId, 'isLoading'], true), }; }; class EmojiReactions extends ImmutablePureComponent { static propTypes = { params: PropTypes.object.isRequired, dispatch: PropTypes.func.isRequired, accountIds: ImmutablePropTypes.list, hasMore: PropTypes.bool, isLoading: PropTypes.bool, multiColumn: PropTypes.bool, intl: PropTypes.object.isRequired, }; componentWillMount () { if (!this.props.accountIds) { this.props.dispatch(fetchEmojiReactions(this.props.params.statusId)); } } handleRefresh = () => { this.props.dispatch(fetchEmojiReactions(this.props.params.statusId)); }; handleLoadMore = debounce(() => { this.props.dispatch(expandEmojiReactions(this.props.params.statusId)); }, 300, { leading: true }); render () { const { intl, accountIds, hasMore, isLoading, multiColumn } = this.props; if (!accountIds) { return ( ); } let groups = {}; for (const emoji_reaction of accountIds) { const key = emoji_reaction.account_id; const value = emoji_reaction; if (!groups[key]) groups[key] = [value]; else groups[key].push(value); } const emptyMessage = ; return ( )} /> {Object.keys(groups).map((key) =>(
{groups[key].map((value, index2) => )}
))}
); } } export default connect(mapStateToProps)(injectIntl(EmojiReactions));