-
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
✨ feat: INTERACTION 상수 생성 #182
Merged
Merged
Conversation
This file contains 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
Header, Menu, CheckButton, CustomButton 에 적용
:focus -> :focus-visible 변경
link 컴포넌트 -> useNavigate 사용으로 변경 radius 값 받는 props 제거
div -> Button 으로 변경, Link -> useNavigate 변경, 코드 개선
BackButton, Like 컴포넌트 인터렉션 적용 및 버튼으로 변경
KKYHH
approved these changes
Aug 25, 2024
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.
INTERACTION 상수 사용 굉장히 좋아 보여요! 번거로우셨을 텐데 채연 님 대단하십니다 머지 되면 저도 사용해 보겠습니다 고생하셨습니다!! 🙇
ccconac
approved these changes
Aug 29, 2024
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.
스크럼 때도 이야기했지만 너무 깔끔하고 좋은 코드예요... 고민 많이 해 주셔서 감사합니다! 고생하셨어요 채연 님 🥺
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
✅ 체크리스트
📝 작업 상세 내용
1️⃣ INTERACTION 상수 생성 및 적용
기존 Interaction/ButtonWrap 컴포넌트를 지우고 INTERACTION 상수로 대체했습니다.
현재 헤더, 메뉴바, 상세페이지에 적용되어있습니다.
INTERACTION
은:hover
,:active
,:focus-visible
시 효과를 나타냅니다.기존
:focus
에서:focus-visible
로 변경되었습니다.기존
:focus
는 마우스 클릭, 스크린 터치, 키보트 Tab키를 눌렀을 때 요소에 테두리가 생기는 반면:focus-visible
은 오직 키보드에 대해서만 적용됩니다.이렇게 변경한 이유는 포커스 효과가 마우스/스크린 사용자에겐 오히려 거슬려서 굳이 필요하지 않다 생각합니다. 하지만 키보드로만 서비스를 이용해야하는 사용자는 해당 속성이 필요하기 때문에
:focus-visible
로 변경하였습니다.주의할 점은 해당 속성은 요소가 button, a, input 요소 일 때 적용됩니다.
포커스 효과가 필요한 부분이라면 INTERACTION을 적용하는 요소를 button 태그로 변경해주세요!
또한 INTERACTION은 background color를 인수로 받을 수 있습니다.
INTERACTION을 적용하는 요소가 배경색이 없다면 생략하고 배경색이 있다면 인수로 넘겨주시면 됩니다!
INTERACTION
은 피그마에 정의되어있는 interaction레이어의 type과 density에 따라 나누었습니다.이 부분 참고하여 적용해주시면 될 것 같습니다.
사용 예시
🚨 버그 발생 이유 (선택 사항)
🔎 후속 작업 (선택 사항)
🤔 질문 사항 (선택 사항)
📚 참고 자료 (선택 사항)
추가적인 참고 사항이나 관련된 문서, 링크 등을 제공해주세요.
📸 스크린샷 (선택 사항)
변경 사항에 대한 스크린샷이 있다면 첨부해주세요.
✅ 셀프 체크리스트
이슈 번호: 없음