Cache restoreScrollPos to avoid render
`CommentCreate` was getting marked for every comment that comes in because the parent was marked.
This commit is contained in:
parent
4b0318cd38
commit
5d8fc40051
1 changed files with 6 additions and 6 deletions
|
@ -63,11 +63,11 @@ export default function LivestreamComments(props: Props) {
|
||||||
|
|
||||||
const pinnedComment = pinnedComments.length > 0 ? pinnedComments[0] : null;
|
const pinnedComment = pinnedComments.length > 0 ? pinnedComments[0] : null;
|
||||||
|
|
||||||
function restoreScrollPos() {
|
const restoreScrollPos = React.useCallback(() => {
|
||||||
if (discussionElement) {
|
if (discussionElement) {
|
||||||
discussionElement.scrollTop = 0;
|
discussionElement.scrollTop = 0;
|
||||||
}
|
}
|
||||||
}
|
}, [discussionElement]);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
if (claimId) {
|
if (claimId) {
|
||||||
|
@ -139,10 +139,10 @@ export default function LivestreamComments(props: Props) {
|
||||||
const clonedSuperchats = JSON.parse(JSON.stringify(superChatsByTipAmount));
|
const clonedSuperchats = JSON.parse(JSON.stringify(superChatsByTipAmount));
|
||||||
|
|
||||||
// for top to bottom display, oldest superchat on top most recent on bottom
|
// for top to bottom display, oldest superchat on top most recent on bottom
|
||||||
superChatsReversed = clonedSuperchats
|
superChatsReversed = clonedSuperchats.sort((a, b) => {
|
||||||
.sort((a, b) => {
|
return b.timestamp - a.timestamp;
|
||||||
return b.timestamp - a.timestamp;
|
});
|
||||||
}); }
|
}
|
||||||
|
|
||||||
// todo: implement comment_list --mine in SDK so redux can grab with selectCommentIsMine
|
// todo: implement comment_list --mine in SDK so redux can grab with selectCommentIsMine
|
||||||
function isMyComment(channelId: string) {
|
function isMyComment(channelId: string) {
|
||||||
|
|
Loading…
Reference in a new issue