-
Notifications
You must be signed in to change notification settings - Fork 8
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/관리자 전체 유저 알림 모달 개선 #650 #676
The head ref may contain hidden characters: "Feat/\uAD00\uB9AC\uC790-\uC804\uCCB4-\uC720\uC800-\uC54C\uB9BC-\uBAA8\uB2EC-\uAC1C\uC120-#650"
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.
토스트랑 모달 개선하느라 고생하셨습니다!
몇가지만 수정하시면 될 거 같아요
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.
수고하셨습니다 ! 토스트 메세지 리코일로 잘 만들어주신것 같네요 close 눌렀을때 내용이 없어진 다음 토스트 메시지가 없어지는거같은데 리코일을 써서 어쩔수 없이 느린것같기도 하네요! 모송님이 적어주신 리팩토링할만한것 말고는 크게 문제되는건 없어보입니다 ! ㅣLGTM
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.
고생하셨습니다 잘되네요!
return <MuiAlert elevation={6} ref={ref} variant='filled' {...props} />; | ||
}); |
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.
뭐에 대한 설정인지 궁금해요!
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.
조사해보니 흥미로운 내용이 있어서 공유할게요
forwardRef
- 다른 컴포넌트의 내부 html 요소에 접근할 때(ref 사용) 사용하는 react built-in API (ref : 일반적인 상황에서 쓰이는 prop은 아님)
MuiAlert
- MUI에서 제공해주는 Alert 컴포넌트
- elevation : 컴포넌트 뒤에 나오는 shadow 정도
- variant : 어떤 디자인의 Alert인지 정해주는 prop
- 불필요한 useState, 함수들 제거 - useRef를 사용해 불필요한 render현상 막음 - 다음 미션 주석 작성
@raehy19 리뷰 감사합니다 :)
요거 같은 경우 toast와 modal는 별개로 동작해야하는 컴포넌트들이라 동작이 느리게 보이는 겁니다. |
📌 개요
-전체 유저 알림 모달과 toast message 연결
💻 작업사항