Skip to content

Commit

Permalink
Add hasMore field to account timeline (#2066)
Browse files Browse the repository at this point in the history
  • Loading branch information
geta6 authored and Gargron committed Apr 18, 2017
1 parent 93c13fe commit 75910ab
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
8 changes: 5 additions & 3 deletions app/assets/javascripts/components/actions/accounts.jsx
Expand Up @@ -126,7 +126,8 @@ export function expandAccountTimeline(id) {
max_id: lastId
}
}).then(response => {
dispatch(expandAccountTimelineSuccess(id, response.data));
const next = getLinks(response).refs.find(link => link.rel === 'next');
dispatch(expandAccountTimelineSuccess(id, response.data, next));
}).catch(error => {
dispatch(expandAccountTimelineFail(id, error));
});
Expand Down Expand Up @@ -257,11 +258,12 @@ export function expandAccountTimelineRequest(id) {
};
};

export function expandAccountTimelineSuccess(id, statuses) {
export function expandAccountTimelineSuccess(id, statuses, next) {
return {
type: ACCOUNT_TIMELINE_EXPAND_SUCCESS,
id,
statuses
statuses,
next
};
};

Expand Down
Expand Up @@ -46,7 +46,9 @@ const AccountTimeline = React.createClass({
},

handleScrollToBottom () {
this.props.dispatch(expandAccountTimeline(Number(this.props.params.accountId)));
if (!this.props.isLoading && this.props.hasMore) {
this.props.dispatch(expandAccountTimeline(Number(this.props.params.accountId)));
}
},

render () {
Expand Down
6 changes: 4 additions & 2 deletions app/assets/javascripts/components/reducers/timelines.jsx
Expand Up @@ -144,10 +144,11 @@ const normalizeAccountTimeline = (state, accountId, statuses, replace = false) =
return state.updateIn(['accounts_timelines', accountId], Immutable.Map(), map => map
.set('isLoading', false)
.set('loaded', true)
.set('next', true)
.update('items', Immutable.List(), list => (replace ? ids : list.unshift(...ids))));
};

const appendNormalizedAccountTimeline = (state, accountId, statuses) => {
const appendNormalizedAccountTimeline = (state, accountId, statuses, next) => {
let moreIds = Immutable.List([]);

statuses.forEach((status, i) => {
Expand All @@ -157,6 +158,7 @@ const appendNormalizedAccountTimeline = (state, accountId, statuses) => {

return state.updateIn(['accounts_timelines', accountId], Immutable.Map(), map => map
.set('isLoading', false)
.set('next', next)
.update('items', list => list.push(...moreIds)));
};

Expand Down Expand Up @@ -299,7 +301,7 @@ export default function timelines(state = initialState, action) {
case ACCOUNT_TIMELINE_FETCH_SUCCESS:
return normalizeAccountTimeline(state, action.id, Immutable.fromJS(action.statuses), action.replace);
case ACCOUNT_TIMELINE_EXPAND_SUCCESS:
return appendNormalizedAccountTimeline(state, action.id, Immutable.fromJS(action.statuses));
return appendNormalizedAccountTimeline(state, action.id, Immutable.fromJS(action.statuses), action.next);
case ACCOUNT_BLOCK_SUCCESS:
case ACCOUNT_MUTE_SUCCESS:
return filterTimelines(state, action.relationship, action.statuses);
Expand Down

0 comments on commit 75910ab

Please sign in to comment.