-
Notifications
You must be signed in to change notification settings - Fork 138
Optimize client performance and stabilize DM pages #272
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
Open
Atlas-45
wants to merge
21
commits into
CyberAgentHack:main
Choose a base branch
from
Atlas-45:codex/perf-stabilize
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
513942b
Optimize client performance and stabilize DM pages
Atlas-45 7af28d1
Reduce client work and fix search flow
Atlas-45 85433df
Gate DM websocket and read calls
Atlas-45 8dc6dbf
Trim payloads and add image loading hints
Atlas-45 0077a13
Defer media work and preserve uploaded image alt
Atlas-45 8f9df3d
Delay auth and audio work on landing
Atlas-45 bff5860
Prioritize first-view content and trim DM payloads
Atlas-45 297585d
Prevent stale auth fetch from overwriting sign-in
Atlas-45 4c4ed87
Bootstrap critical data for key pages
Atlas-45 d6d300d
Fix Express 5 SPA fallback route
Atlas-45 6e44f98
Lighten auth flow and Crok rendering
Atlas-45 d6d63e3
Prerender critical shells and simplify auth flow
Atlas-45 256b848
Serve prerendered shell for SPA routes
Atlas-45 96ba6ed
Hydrate client state from prerendered bootstrap
Atlas-45 2e17134
Keep prerendered shell visible until app mount
Atlas-45 27fc4a1
Enable keep-alive and static asset caching
Atlas-45 15b0427
Defer prerender loader import from server startup
Atlas-45 ac1c3e4
Align home bootstrap payload with client page size
Atlas-45 0e40a2c
Compress responses and stabilize DM sends
Atlas-45 b160822
Reduce auth flow work and shrink prerender shell
Atlas-45 d0abbe5
Prevent DM reload races after optimistic sends
Atlas-45 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IntersectionObserveris not supported in IE11, but the client build still explicitly targets IE11 (seebabel.config.jstargets). As written, infinite scrolling will throw at runtime on IE11. Add anIntersectionObserverpolyfill (loaded before this code runs) or provide a fallback path (e.g., scroll/resize listener) whenwindow.IntersectionObserveris undefined.