2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2016-11-16 11:20:52 -05:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-06-11 11:07:35 -04:00
|
|
|
import { fetchAccount } from '../../actions/accounts';
|
|
|
|
import { refreshAccountTimeline, expandAccountTimeline } from '../../actions/timelines';
|
2016-11-16 11:20:52 -05:00
|
|
|
import StatusList from '../../components/status_list';
|
|
|
|
import LoadingIndicator from '../../components/loading_indicator';
|
2017-01-30 15:40:55 -05:00
|
|
|
import Column from '../ui/components/column';
|
|
|
|
import HeaderContainer from './containers/header_container';
|
|
|
|
import ColumnBackButton from '../../components/column_back_button';
|
2017-01-31 16:34:33 -05:00
|
|
|
import Immutable from 'immutable';
|
2017-05-02 20:04:16 -04:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2016-10-09 14:18:54 -04:00
|
|
|
|
|
|
|
const mapStateToProps = (state, props) => ({
|
2017-06-11 11:07:35 -04:00
|
|
|
statusIds: state.getIn(['timelines', `account:${Number(props.params.accountId)}`, 'items'], Immutable.List()),
|
|
|
|
isLoading: state.getIn(['timelines', `account:${Number(props.params.accountId)}`, 'isLoading']),
|
|
|
|
hasMore: !!state.getIn(['timelines', `account:${Number(props.params.accountId)}`, 'next']),
|
2017-05-20 11:31:47 -04:00
|
|
|
me: state.getIn(['meta', 'me']),
|
2016-10-09 14:18:54 -04:00
|
|
|
});
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
@connect(mapStateToProps)
|
|
|
|
export default class AccountTimeline extends ImmutablePureComponent {
|
2016-10-09 14:18:54 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
params: PropTypes.object.isRequired,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
statusIds: ImmutablePropTypes.list,
|
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
hasMore: PropTypes.bool,
|
2017-05-20 11:31:47 -04:00
|
|
|
me: PropTypes.number.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
2016-10-09 14:18:54 -04:00
|
|
|
|
|
|
|
componentWillMount () {
|
2017-01-30 16:35:36 -05:00
|
|
|
this.props.dispatch(fetchAccount(Number(this.props.params.accountId)));
|
2017-06-11 11:07:35 -04:00
|
|
|
this.props.dispatch(refreshAccountTimeline(Number(this.props.params.accountId)));
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-09 14:18:54 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
componentWillReceiveProps (nextProps) {
|
2016-10-09 14:18:54 -04:00
|
|
|
if (nextProps.params.accountId !== this.props.params.accountId && nextProps.params.accountId) {
|
2017-01-30 16:35:36 -05:00
|
|
|
this.props.dispatch(fetchAccount(Number(nextProps.params.accountId)));
|
2017-06-11 11:07:35 -04:00
|
|
|
this.props.dispatch(refreshAccountTimeline(Number(nextProps.params.accountId)));
|
2016-10-09 14:18:54 -04:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-09 14:18:54 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleScrollToBottom = () => {
|
2017-04-18 07:10:49 -04:00
|
|
|
if (!this.props.isLoading && this.props.hasMore) {
|
|
|
|
this.props.dispatch(expandAccountTimeline(Number(this.props.params.accountId)));
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-10-09 14:18:54 -04:00
|
|
|
|
|
|
|
render () {
|
2017-02-22 10:30:09 -05:00
|
|
|
const { statusIds, isLoading, hasMore, me } = this.props;
|
2016-10-24 11:11:02 -04:00
|
|
|
|
2017-01-31 16:34:33 -05:00
|
|
|
if (!statusIds && isLoading) {
|
2017-01-30 15:40:55 -05:00
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</Column>
|
|
|
|
);
|
2016-10-24 11:11:02 -04:00
|
|
|
}
|
2016-10-09 14:18:54 -04:00
|
|
|
|
2017-01-30 15:40:55 -05:00
|
|
|
return (
|
|
|
|
<Column>
|
|
|
|
<ColumnBackButton />
|
|
|
|
|
|
|
|
<StatusList
|
|
|
|
prepend={<HeaderContainer accountId={this.props.params.accountId} />}
|
2017-04-23 22:49:08 -04:00
|
|
|
scrollKey='account_timeline'
|
2017-01-30 15:40:55 -05:00
|
|
|
statusIds={statusIds}
|
|
|
|
isLoading={isLoading}
|
2017-02-22 10:30:09 -05:00
|
|
|
hasMore={hasMore}
|
2017-01-30 15:40:55 -05:00
|
|
|
me={me}
|
|
|
|
onScrollToBottom={this.handleScrollToBottom}
|
|
|
|
/>
|
|
|
|
</Column>
|
|
|
|
);
|
2016-10-09 14:18:54 -04:00
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|