Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve UI performance of long chat channel lists #10631

Merged
merged 5 commits into from
Oct 27, 2023

Conversation

notbakaneko
Copy link
Collaborator

@notbakaneko notbakaneko commented Oct 11, 2023

Improve the performance of long channel lists especially on Safari; slight improvement on Chrome but nowhere near the same extent as Safari.

The channel list is broken down into channel chunks so that each chunk can be it's own render layer; 100 (arbitrary) seems to be a reasonable size - too big and Safari's performance takes a dive, too small creates too many layers...and Safari's performance also takes a steep dive. (edit: too many layers causes too many layout recalculations even it their content doesn't change, and layout is relatively expensive compared to re-rendering)

React-keyed elements ending up in different chunks when the list changes shouldn't be an issue since the list usually gets rearranged at that point.

return (
<React.Fragment key={type}>
<div className='chat-conversation-list__group'>
<div className='chat-conversation-list__header'>
<span className='chat-conversation-list__header-text'>{title}</span>
<span className='chat-conversation-list__header-icon' title={title}><i className={icons[type]} /></span>
</div>
{channels.map((channel) => <ConversationListItem key={channel.channelId} channel={channel} />)}
{chunks.map((c, index) => (
Copy link
Sponsor Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be worth adding a comment somewhere in here mentioning that this is an optimisation.

Copy link
Collaborator

@nanaya nanaya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this kinda breaks mobile

@nanaya nanaya enabled auto-merge October 27, 2023 06:02
@nanaya nanaya merged commit 70e2109 into ppy:master Oct 27, 2023
3 checks passed
@notbakaneko notbakaneko deleted the feature/chat-channel-list-chunk branch November 13, 2023 07:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

3 participants