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