2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2017-01-16 21:27:58 +09:00
|
|
|
import { connect } from 'react-redux';
|
2017-04-22 03:05:35 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2017-01-16 21:27:58 +09: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 23:22:04 +09:00
|
|
|
import ColumnBackButtonSlim from '../../components/column_back_button_slim';
|
2017-01-16 21:27:58 +09:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-05-03 09:04:16 +09:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-01-16 21:27:58 +09:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-21 00:31:47 +09:00
|
|
|
heading: { id: 'column.favourites', defaultMessage: 'Favourites' },
|
2017-01-16 21:27:58 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
loaded: state.getIn(['status_lists', 'favourites', 'loaded']),
|
|
|
|
});
|
|
|
|
|
2017-05-03 09:04:16 +09:00
|
|
|
class Favourites extends ImmutablePureComponent {
|
2017-01-16 21:27:58 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
static propTypes = {
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
loaded: PropTypes.bool,
|
|
|
|
intl: PropTypes.object.isRequired,
|
|
|
|
};
|
2017-01-16 21:27:58 +09:00
|
|
|
|
|
|
|
componentWillMount () {
|
|
|
|
this.props.dispatch(fetchFavouritedStatuses());
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-01-16 21:27:58 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
handleScrollToBottom = () => {
|
2017-01-16 21:27:58 +09:00
|
|
|
this.props.dispatch(expandFavouritedStatuses());
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
2017-01-16 21:27:58 +09:00
|
|
|
|
|
|
|
render () {
|
2017-06-23 23:05:04 +09:00
|
|
|
const { loaded, intl } = this.props;
|
2017-01-16 21:27:58 +09:00
|
|
|
|
|
|
|
if (!loaded) {
|
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Column icon='star' heading={intl.formatMessage(messages.heading)}>
|
2017-01-30 23:22:04 +09:00
|
|
|
<ColumnBackButtonSlim />
|
2017-05-03 09:04:16 +09:00
|
|
|
<StatusList {...this.props} scrollKey='favourited_statuses' onScrollToBottom={this.handleScrollToBottom} />
|
2017-01-16 21:27:58 +09:00
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|
|
|
|
|
2017-01-16 21:27:58 +09:00
|
|
|
export default connect(mapStateToProps)(injectIntl(Favourites));
|