Skip to content
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

[픽스] 식단 펼치기 기능 화살표 방향 문제 해결 #17

Merged
merged 2 commits into from
Sep 28, 2024

Conversation

JeongWon-CHO
Copy link
Contributor

@JeongWon-CHO JeongWon-CHO commented Sep 27, 2024

What is this PR? 🔍

Changes 📝

식단 펼치기 기능 화살표 방향 문제를 해결하였습니다.

  • 토글 버튼의 클래스명에서 transform 키워드를 close로 변경하였습니다.
  • 화살표 방향이 상태와 반대였던 것을 피그마에 맞게 수정하였습니다.

ScreenShot 📷

image image

Test CheckList ✅

  • 식단이 있는 날짜로 가서 토글 버튼 방향이 올바른 지 체크

Precaution

✔️ Please check if the PR fulfills these requirements

  • It's submitted to the correct branch, not the develop branch unconditionally?
  • If on a hotfix branch, ensure it targets main?
  • There are no warning message when you run yarn lint

@JeongWon-CHO JeongWon-CHO added the 🐞 BugFix 버그 수정 label Sep 27, 2024
@JeongWon-CHO JeongWon-CHO self-assigned this Sep 27, 2024
@@ -150,7 +150,7 @@ export default function DiningBlocks({ diningType, date }: DiningBlocksProps) {
<svg
className={cn({
[styles['arrow-icon']]: true,
[styles['arrow-icon__transform']]: !hiddenDiningIdList.includes(dining.id),
[styles['arrow-icon--close']]: !hiddenDiningIdList.includes(dining.id),

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

굿~

Copy link
Contributor

@Gwak-Seungju Gwak-Seungju left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

첫 pr 축하드립니다! 고생하셨어요~~

Comment on lines 176 to 177
&--close {
transform: rotate(0);
Copy link
Contributor

@Gwak-Seungju Gwak-Seungju Sep 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

열을 때처럼 닫힐 때도 transition이 있으면 좋을 것 같아요!
제가 착각했네요... ㅠ 그대로 진행해도 잘 작동하겠군요! 👍

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR 스크린샷을 잘못 올려서 수정하였습니다 !

Copy link
Collaborator

@MinGu-Jeong MinGu-Jeong left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

굿굿 첫 PR 축하드립니당

Copy link
Contributor

@D0Dam D0Dam left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

제가 올렸던 기능중에 잘못된 걸 잘 찾아서 고쳐 주셨네요!
css bem 까지 맞춰서 잘 수정해 주셨습니다! 👍

이 경우에 고치는 방법이 두 가지가 있을 텐데요.
첫 번째는 정원님이 하신대로 transform을 바꿔주는 방법이고, 두 번째는 icon 자체를 반대방향으로 돌아간 걸로 바꿔주는 방법이 있어요.
어떤 방법이 더 좋을 것 같나요?

@D0Dam
Copy link
Contributor

D0Dam commented Sep 27, 2024

체크 리스트 확인했으면 체크해 주시면 좋을 것 같아요!
image

어디에 해당하는 프로젝트 이슈인지 남겨주어도 좋을 것 같아요!
image

Copy link

@hyejun0228 hyejun0228 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수고하셨습니다~!! ☺️

- css trasform 함수 중복 제거
- close -> open 으로 바꿔서 상태 단축
@JeongWon-CHO
Copy link
Contributor Author

이 경우에 고치는 방법이 두 가지가 있을 텐데요.
첫 번째는 정원님이 하신대로 transform을 바꿔주는 방법이고, 두 번째는 icon 자체를 반대방향으로 돌아간 걸로 바꿔주는 방법이 있어요.
어떤 방법이 더 좋을 것 같나요?

기존에는 최대한 svg 코드를 건들지 않고 수정하는 방향을 생각해서 css 파일을 수정하였습니다. 리뷰 해주신 내용을 바탕으로 생각해 봤는데, 화살표 방향의 상태를 변경하면 가독성이 좋아지고 css에서 함수도 덜 쓰기 때문에 해당 방법으로 수정하였습니다 !!
799aee9

@JeongWon-CHO JeongWon-CHO merged commit 7d6efe5 into develop Sep 28, 2024
1 check passed
@github-actions github-actions bot deleted the fix/#16-arrow-svg-direction branch September 28, 2024 09:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐞 BugFix 버그 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[픽스] 식단 펼치기 기능 화살표 방향 문제
6 participants