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