|
|
|
@ -6,6 +6,7 @@ import LoadingIndicator from 'flavours/glitch/components/loading_indicator'; |
|
|
|
|
import { fetchFavourites } from 'flavours/glitch/actions/interactions'; |
|
|
|
|
import AccountContainer from 'flavours/glitch/containers/account_container'; |
|
|
|
|
import Column from 'flavours/glitch/features/ui/components/column'; |
|
|
|
|
import Icon from 'flavours/glitch/components/icon'; |
|
|
|
|
import ColumnHeader from 'flavours/glitch/components/column_header'; |
|
|
|
|
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl'; |
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component'; |
|
|
|
@ -13,6 +14,7 @@ import ScrollableList from '../../components/scrollable_list'; |
|
|
|
|
|
|
|
|
|
const messages = defineMessages({ |
|
|
|
|
heading: { id: 'column.favourited_by', defaultMessage: 'Favourited by' }, |
|
|
|
|
refresh: { id: 'refresh', defaultMessage: 'Refresh' }, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({ |
|
|
|
@ -51,6 +53,10 @@ class Favourites extends ImmutablePureComponent { |
|
|
|
|
this.column = c; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
handleRefresh = () => { |
|
|
|
|
this.props.dispatch(fetchFavourites(this.props.params.statusId)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
render () { |
|
|
|
|
const { intl, accountIds, multiColumn } = this.props; |
|
|
|
|
|
|
|
|
@ -72,6 +78,9 @@ class Favourites extends ImmutablePureComponent { |
|
|
|
|
onClick={this.handleHeaderClick} |
|
|
|
|
showBackButton |
|
|
|
|
multiColumn={multiColumn} |
|
|
|
|
extraButton={( |
|
|
|
|
<button className='column-header__button' title={intl.formatMessage(messages.refresh)} aria-label={intl.formatMessage(messages.refresh)} onClick={this.handleRefresh}><Icon id='refresh' /></button> |
|
|
|
|
)} |
|
|
|
|
/> |
|
|
|
|
<ScrollableList |
|
|
|
|
scrollKey='favourites' |
|
|
|
|