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 EmojiReactionIcon from '@/material-icons/400-24px/mood.svg?react'; import { addColumn, removeColumn, moveColumn } from 'mastodon/actions/columns'; import { fetchEmojiReactedStatuses, expandEmojiReactedStatuses } from 'mastodon/actions/emoji_reactions'; import Column from 'mastodon/components/column'; import ColumnHeader from 'mastodon/components/column_header'; import StatusList from 'mastodon/components/status_list'; const messages = defineMessages({ heading: { id: 'column.emoji_reactions', defaultMessage: 'Stamps' }, }); const mapStateToProps = state => ({ statusIds: state.getIn(['status_lists', 'emoji_reactions', 'items']), isLoading: state.getIn(['status_lists', 'emoji_reactions', 'isLoading'], true), hasMore: !!state.getIn(['status_lists', 'emoji_reactions', 'next']), }); class EmojiReactions extends ImmutablePureComponent { static propTypes = { dispatch: PropTypes.func.isRequired, statusIds: ImmutablePropTypes.list.isRequired, intl: PropTypes.object.isRequired, columnId: PropTypes.string, multiColumn: PropTypes.bool, hasMore: PropTypes.bool, isLoading: PropTypes.bool, }; componentWillMount () { this.props.dispatch(fetchEmojiReactedStatuses()); } handlePin = () => { const { columnId, dispatch } = this.props; if (columnId) { dispatch(removeColumn(columnId)); } else { dispatch(addColumn('EMOJI_REACTIONS', {})); } }; handleMove = (dir) => { const { columnId, dispatch } = this.props; dispatch(moveColumn(columnId, dir)); }; handleHeaderClick = () => { this.column.scrollTop(); }; setRef = c => { this.column = c; }; handleLoadMore = debounce(() => { this.props.dispatch(expandEmojiReactedStatuses()); }, 300, { leading: true }); render () { const { intl, statusIds, columnId, multiColumn, hasMore, isLoading } = this.props; const pinned = !!columnId; const emptyMessage = ; return ( {intl.formatMessage(messages.heading)} ); } } export default connect(mapStateToProps)(injectIntl(EmojiReactions));