Fix MessageBox scroll stutter when state updates while close to the bottom

This commit is contained in:
Ken-Håvard Lieng 2019-02-08 09:28:55 +01:00
parent c1e1f2c327
commit 7ad76273c0
7 changed files with 109 additions and 86 deletions

File diff suppressed because one or more lines are too long

View File

@ -80,7 +80,8 @@ export default createCommandMiddleware(COMMAND, {
if (newTopic.length > 0) { if (newTopic.length > 0) {
dispatch(setTopic(newTopic.join(' '), channel, server)); dispatch(setTopic(newTopic.join(' '), channel, server));
return; return;
} if (channel) { }
if (channel) {
const { topic } = getState().channels[server][channel]; const { topic } = getState().channels[server][channel];
if (topic) { if (topic) {
return text(topic); return text(topic);

View File

@ -13,7 +13,18 @@ const fetchThreshold = 600;
// this is done to prevent the scroll from jumping all over the place // this is done to prevent the scroll from jumping all over the place
const scrollbackDebounce = 150; const scrollbackDebounce = 150;
const scrollBarWidth = `${measureScrollBarWidth() }px`; const scrollBarWidth = `${measureScrollBarWidth()}px`;
const hasSameLastMessage = (m1, m2) => {
if (m1.length === 0 || m2.length === 0) {
if (m1.length === 0 && m2.length === 0) {
return true;
}
return false;
}
return m1[m1.length - 1].id === m2[m2.length - 1].id;
};
export default class MessageBox extends PureComponent { export default class MessageBox extends PureComponent {
state = { topDate: '' }; state = { topDate: '' };
@ -35,6 +46,8 @@ export default class MessageBox extends PureComponent {
} }
componentDidUpdate(prevProps) { componentDidUpdate(prevProps) {
const { messages } = this.props;
if (prevProps.tab !== this.props.tab) { if (prevProps.tab !== this.props.tab) {
this.loadScrollPos(true); this.loadScrollPos(true);
} }
@ -42,8 +55,11 @@ export default class MessageBox extends PureComponent {
if (this.nextScrollTop > 0) { if (this.nextScrollTop > 0) {
this.list.current.scrollTo(this.nextScrollTop); this.list.current.scrollTo(this.nextScrollTop);
this.nextScrollTop = 0; this.nextScrollTop = 0;
} else if (this.bottom) { } else if (
this.list.current.scrollToItem(this.props.messages.length + 1); this.bottom &&
!hasSameLastMessage(messages, prevProps.messages)
) {
this.list.current.scrollToItem(messages.length + 1);
} }
} }
@ -93,7 +109,8 @@ export default class MessageBox extends PureComponent {
return 100; return 100;
} }
return 7; return 7;
} if (index === messages.length + 1) { }
if (index === messages.length + 1) {
return 7; return 7;
} }
return messages[index - 1].height; return messages[index - 1].height;
@ -104,7 +121,8 @@ export default class MessageBox extends PureComponent {
if (index === 0) { if (index === 0) {
return 'top'; return 'top';
} if (index === messages.length + 1) { }
if (index === messages.length + 1) {
return 'bottom'; return 'bottom';
} }
return messages[index - 1].id; return messages[index - 1].id;
@ -220,7 +238,8 @@ export default class MessageBox extends PureComponent {
); );
} }
return null; return null;
} if (index === messages.length + 1) { }
if (index === messages.length + 1) {
return null; return null;
} }

View File

@ -28,7 +28,8 @@ export default class UserList extends PureComponent {
if (index === 0) { if (index === 0) {
return 12; return 12;
} if (index === users.length + 1) { }
if (index === users.length + 1) {
return 10; return 10;
} }
return 24; return 24;
@ -39,7 +40,8 @@ export default class UserList extends PureComponent {
if (index === 0) { if (index === 0) {
return 'top'; return 'top';
} if (index === users.length + 1) { }
if (index === users.length + 1) {
return 'bottom'; return 'bottom';
} }
return index; return index;

View File

@ -67,7 +67,7 @@ class Connect extends Component {
.filter(s => s) .filter(s => s)
.join(','); .join(',');
return comma ? `${channels },` : channels; return comma ? `${channels},` : channels;
}; };
render() { render() {

View File

@ -24,8 +24,8 @@ function registerValidSW(swUrl, config) {
config.onUpdate(registration); config.onUpdate(registration);
} }
} else if (config && config.onSuccess) { } else if (config && config.onSuccess) {
config.onSuccess(registration); config.onSuccess(registration);
} }
} }
}; };
}; };

View File

@ -1,4 +1,5 @@
let width; let height; let width;
let height;
const listeners = []; const listeners = [];
function update() { function update() {