-
Notifications
You must be signed in to change notification settings - Fork 3
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
Avatar에 name(= alt) 속성 값 부여를 통해 접근성 개선 #214
base: develop
Are you sure you want to change the base?
Avatar에 name(= alt) 속성 값 부여를 통해 접근성 개선 #214
Conversation
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.
UserIconForm.tsx의 Avatar name은 유저 이름을 가져올 수 없어서 '유저 사진'으로 해뒀습니다.
: 백엔드측에 요청드렸던 거까진 기억나는데, 현재 어떻게 진행되고 있나요?
내 밥모임 페이지의 Avatar에는 현재 username(혹은 nickname)이 API 간소화로 undefined가 찍힙니다. 백엔드 API 변경이 반영되면 merge 하겠습니다.
: 지금은 반영된 상태인가요?
<Avatar | ||
src={user.profileImgUrl} | ||
size='sm' | ||
name={`${user.nickname} 아바타 사진`} |
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.
ask;
avatar의 name이 alt가 되는 거 맞나요?
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.
네, 개발 서버 돌려서 alt로 뜨는 거 확인했습니다.
@@ -60,6 +60,7 @@ const UserIconForm = ({ | |||
pointerEvents='none' | |||
pos='relative' | |||
border='2px solid gray' | |||
name='유저 사진' |
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.
ask;
개인적으로 한국사람들이 보거나 들을 용어다보니, 한국어를 사용하는 건 어떨까요? ex) 유저 사진
-> 사용자 사진
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.
좋습니다! 반영해두겠습니다.
edit 페이지에서 useGetUser를 통해 data의 nickname을 사용하면 되겠네요. 원래 있었는데 제가 몰랐던 건지, 아니면 백엔드분들이 수정해주신 건지는 잘 모르겠습니다! nickname을 사용하는 걸로 수정해두겠습니다.
이건 아직 undefined네요. 백엔드 건우님한테 다시 요청해두겠습니다. |
💡 Linked Issues
📖 구현 내용
✅ PR 포인트 & 궁금한 점