summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-09-11 08:38:18 -0400
committerJoramWilander <jwawilander@gmail.com>2015-09-11 08:38:18 -0400
commit83931da9f2b3eb5e8dc835313992c7ba2ea65f4a (patch)
tree0888dbaeb27f0c5517060ab298b27b62f0397694 /web
parent27e8b28672ede105044b19e2aebcf2f2ff51de28 (diff)
downloadchat-83931da9f2b3eb5e8dc835313992c7ba2ea65f4a.tar.gz
chat-83931da9f2b3eb5e8dc835313992c7ba2ea65f4a.tar.bz2
chat-83931da9f2b3eb5e8dc835313992c7ba2ea65f4a.zip
Fix load more posts bug.
Diffstat (limited to 'web')
-rw-r--r--web/react/components/post.jsx2
-rw-r--r--web/react/components/post_list.jsx12
2 files changed, 10 insertions, 4 deletions
diff --git a/web/react/components/post.jsx b/web/react/components/post.jsx
index 37de4ecc0..d3c6befd0 100644
--- a/web/react/components/post.jsx
+++ b/web/react/components/post.jsx
@@ -152,7 +152,7 @@ export default class Post extends React.Component {
return (
<div>
<div
- id={post.id}
+ id={'post_' + post.id}
className={'post ' + sameUserClass + ' ' + rootUser + ' ' + postType + ' ' + currentUserCss}
>
{profilePic}
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index 9d95887d9..e6aa3f8df 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -189,9 +189,15 @@ export default class PostList extends React.Component {
this.scrollToBottom(true);
// the user clicked 'load more messages'
- } else if (this.gotMorePosts) {
- var lastPost = oldPosts[oldOrder[prevState.numToDisplay]];
- $('#' + lastPost.id)[0].scrollIntoView();
+ } else if (this.gotMorePosts && oldOrder.length > 0) {
+ let index;
+ if (prevState.numToDisplay >= oldOrder.length) {
+ index = oldOrder.length - 1;
+ } else {
+ index = prevState.numToDisplay;
+ }
+ const lastPost = oldPosts[oldOrder[index]];
+ $('#post_' + lastPost.id)[0].scrollIntoView();
this.gotMorePosts = false;
} else {
this.scrollTo(this.prevScrollTop);