-
Notifications
You must be signed in to change notification settings - Fork 4
feat(avatar): add real avatars #161
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b2a6901
feat: avatar component
natemoo-re eb6f273
fix: surface avatar_url
natemoo-re b5ad4e0
ref: replace initials with avatar
natemoo-re 4869600
Remove unused loadedAvatarUrls cache and onLoad handler
cursoragent 8ff53f6
fix: add avatarUrl
natemoo-re 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| import {useReducer} from 'react'; | ||
|
|
||
| // Module-level cache shared by every Avatar instance for the life of the | ||
| // page. The same user often appears in many places at once (member stacks, | ||
| // team panels, admin lists), so once we know a URL is broken we never want | ||
| // to flash a fallback again. | ||
| const failedAvatarUrls = new Set<string>(); | ||
|
|
||
| export interface AvatarProps { | ||
| displayName: string; | ||
| avatarUrl?: string | null; | ||
| className?: string; | ||
| } | ||
|
|
||
| export function Avatar({displayName, avatarUrl, className}: AvatarProps) { | ||
| const [, forceRender] = useReducer((count: number) => count + 1, 0); | ||
| const failed = Boolean(avatarUrl) && failedAvatarUrls.has(avatarUrl!); | ||
| const showImage = Boolean(avatarUrl) && !failed; | ||
|
|
||
| return ( | ||
| <span className={className ? `avatar ${className}` : 'avatar'} title={displayName}> | ||
| {showImage ? ( | ||
| <img | ||
| key={avatarUrl} | ||
| src={avatarUrl!} | ||
| alt="" | ||
| loading="lazy" | ||
| decoding="async" | ||
| referrerPolicy="no-referrer" | ||
| onError={() => { | ||
| failedAvatarUrls.add(avatarUrl!); | ||
| forceRender(); | ||
| }} | ||
| /> | ||
| ) : ( | ||
| initials(displayName) | ||
| )} | ||
| </span> | ||
| ); | ||
| } | ||
|
|
||
| function initials(value: string) { | ||
| return value | ||
| .split(/\s+/) | ||
| .slice(0, 2) | ||
| .map((part) => part[0]) | ||
| .join('') | ||
| .toUpperCase(); | ||
| } | ||
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.
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.
Bug: When an avatar image fails, only the specific component instance re-renders. Other
Avatarcomponents using the same failed URL will continue to show a broken image.Severity: LOW
Suggested Fix
To ensure all
Avatarcomponents update when an image URL fails, implement a mechanism to notify all instances. For example, use a shared state or an event emitter. When an image fails, broadcast an event that all mountedAvatarcomponents subscribe to, causing them to callforceRender()and display the fallback consistently.Prompt for AI Agent
Did we get this right? 👍 / 👎 to inform future reviews.