2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-01-16 12:27:58 +00:00
|
|
|
import { connect } from 'react-redux';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-06-24 10:24:02 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-01-16 12:27:58 +00:00
|
|
|
import LoadingIndicator from '../../components/loading_indicator';
|
|
|
|
import { fetchFavouritedStatuses, expandFavouritedStatuses } from '../../actions/favourites';
|
|
|
|
import Column from '../ui/components/column';
|
|
|
|
import StatusList from '../../components/status_list';
|
2017-01-30 14:22:04 +00:00
|
|
|
import ColumnBackButtonSlim from '../../components/column_back_button_slim';
|
2017-01-16 12:27:58 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-05-03 00:04:16 +00:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-01-16 12:27:58 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 15:31:47 +00:00
|
|
|
heading: { id: 'column.favourites', defaultMessage: 'Favourites' },
|
2017-01-16 12:27:58 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2017-06-24 10:24:02 +00:00
|
|
|
statusIds: state.getIn(['status_lists', 'favourites', 'items']),
|
2017-01-16 12:27:58 +00:00
|
|
|
loaded: state.getIn(['status_lists', 'favourites', 'loaded']),
|
2017-06-24 10:24:02 +00:00
|
|
|
me: state.getIn(['meta', 'me']),
|
2017-01-16 12:27:58 +00:00
|
|
|
});
|
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
@connect(mapStateToProps)
|
|
|
|
@injectIntl
|
|
|
|
export default class Favourites extends ImmutablePureComponent {
|
2017-01-16 12:27:58 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
2017-06-24 10:24:02 +00:00
|
|
|
statusIds: ImmutablePropTypes.list.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
loaded: PropTypes.bool,
|
|
|
|
intl: PropTypes.object.isRequired,
|
2017-06-24 10:24:02 +00:00
|
|
|
me: PropTypes.number.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2017-01-16 12:27:58 +00:00
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
this.props.dispatch(fetchFavouritedStatuses());
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-01-16 12:27:58 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleScrollToBottom = () => {
|
2017-01-16 12:27:58 +00:00
|
|
|
this.props.dispatch(expandFavouritedStatuses());
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-01-16 12:27:58 +00:00
|
|
|
|
|
|
|
render () {
|
2017-06-23 14:05:04 +00:00
|
|
|
const { loaded, intl } = this.props;
|
2017-01-16 12:27:58 +00:00
|
|
|
|
|
|
|
if (!loaded) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Column icon='star' heading={intl.formatMessage(messages.heading)}>
|
2017-01-30 14:22:04 +00:00
|
|
|
<ColumnBackButtonSlim />
|
2017-05-03 00:04:16 +00:00
|
|
|
<StatusList {...this.props} scrollKey='favourited_statuses' onScrollToBottom={this.handleScrollToBottom} />
|
2017-01-16 12:27:58 +00:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|