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

대시보드 페이지내에 진행 중인 미션 리스트와 내가 제출한 솔루션 구현 (issue #272) #299

Merged
merged 12 commits into from
Aug 16, 2024

Conversation

brgndyy
Copy link
Contributor

@brgndyy brgndyy commented Aug 14, 2024

구현 요약

  1. 대시보드 레이아웃을 만들었습니다.
  2. 진행 중인 미션 리스트 페이지를 구현했습니다.
  3. 내가 제출한 솔루션을 구현합니다.
스크린샷 2024-08-14 오후 4 30 59

연관 이슈

close #272

참고

코드 리뷰에 RCA 룰을 적용할 시 참고해주세요.

헤더 설명
R (Request Changes) 적극적으로 반영을 고려해주세요
C (Comment) 웬만하면 반영해주세요
A (Approve) 반영해도 좋고, 넘어가도 좋습니다. 사소한 의견입니다.

@brgndyy brgndyy requested a review from chosim-dvlpr August 14, 2024 07:31
@brgndyy brgndyy self-assigned this Aug 14, 2024
@brgndyy brgndyy added 🎨 프론트엔드 프론트엔드 관련 이슈 ⚒️ 기능 작업해야하는 기능 labels Aug 14, 2024
Copy link
Contributor

@chosim-dvlpr chosim-dvlpr left a comment

Choose a reason for hiding this comment

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

안녕하세요 버건디~! 대시보드 부분이 구현하기 어려웠을텐데 빠르게 완성해주셔서 감사합니다👍 궁금한 점들은 코멘트로 남겨놓았으니 확인 부탁드려요! 고생하셨습니다~!!

return data;
};
// TODO 실제 API 연결 아직 안했습니다.
export const getMissionInProgress = async () => {
Copy link
Contributor

Choose a reason for hiding this comment

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

이전 기획의 미션 현황 페이지에서 사용 중이던 '진행 중 미션', '완료한 미션' 관련 코드가 더 이상 쓰이지 않을거라 생각해서 삭제했는데 (PR) 대시보드에서 쓰이고 있었군요..😢

Copy link
Contributor Author

Choose a reason for hiding this comment

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

전에 기획단계에서 있었던 진행 중 미션과 완료한 미션이 서로 네이밍이 겹치더라고요🥲

그래서 이번엔 아예 제가 새롭게 선언해보았습니다!

Comment on lines +49 to +51
export const getSubmittedSolution = async (): Promise<SubmittedSolution[]> => {
return SubmittedSolutions;
};
Copy link
Contributor

Choose a reason for hiding this comment

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

반환 데이터가 타입인 이유가 있을까요~?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

앗 타입명이랑 목데이터랑 이름이 비슷해서 착오가 있었던거 같습니다..!

현재 리턴해주는 데이터는 제가 mocks폴더 내에 선언해놓은 목데이터입니다! 🙇

후에 실제 API랑 연동해서 헷갈리는일 없도록 하겠습니다~!

Copy link
Contributor

Choose a reason for hiding this comment

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

아하 목데이터였군요! 알려주셔서 감사합니다 ㅎㅎ

Comment on lines 15 to 16
<S.MainText>진행 중인 미션이 없어요</S.MainText>
<S.SubText>새로운 미션을 찾으러 가볼까요?</S.SubText>
Copy link
Contributor

Choose a reason for hiding this comment

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

솔루션과 진행 중 미션이 없을 때의 메세지가 서로 다른데요, 재사용성을 위해 위 문구를 props로 받거나 타입을 받아 내부에서 분기처리를 하면 어떨까요?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

오호 제가 놓쳤던 부분이에요!

짚어주셔서 감사합니다 🙇 반영하도록 하겠습니다!

<Mission.InfoWrapper>
<Mission.Title>{mission.title}</Mission.Title>
<Mission.Summary>{mission.summary}</Mission.Summary>
<Mission.HashTag hashtagList={mission.hashtag} />
Copy link
Contributor

Choose a reason for hiding this comment

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

camelCase를 적용해서 hashtag를 hashTag로 작성하는 것은 어떨까요~? HashTag 컴포넌트는 Tag가 대문자로 되어있어서요 ㅎㅎ

Copy link
Contributor Author

Choose a reason for hiding this comment

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

짚어주셔서 감사합니다~! 반영하도록 하겠습니다 🙇

width: 100%;
`;

export const MissionItemContainer = styled.article`
Copy link
Contributor

Choose a reason for hiding this comment

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

오 article이라는 태그도 있군요! 새롭게 배워갑니다 👍

Copy link
Contributor Author

Choose a reason for hiding this comment

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

라이언의 은혜..

`;

export const MainText = styled.span`
font-size: 2rem;
Copy link
Contributor

Choose a reason for hiding this comment

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

폰트 사이즈가 1.6rem이 되어야 할 것 같아요~!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

짚어주셔서 감사합니다! 수정해서 반영하였습니다! 🙇

@brgndyy brgndyy merged commit b11f4ed into main Aug 16, 2024
6 checks passed
@brgndyy brgndyy deleted the feat/#272 branch August 16, 2024 04:34
Minjoo522 pushed a commit that referenced this pull request Aug 19, 2024
* feat: msw 에 쿠키 + 회원정보 전달하는 핸들러 작성

* feat: 대쉬보드 레이아웃 작성

* feat: 제출한 솔루션 구현

* feat: 제출한 솔루션 기능 구현

* fix: 린트에러 수정

* fix: 빌드 에러 수정

* refactor: 수정사항 반영

* refactor: 수정 사항 반영

* refactor: msw 연동 해제
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⚒️ 기능 작업해야하는 기능 🎨 프론트엔드 프론트엔드 관련 이슈
Projects
Status: 😎 DONE
Development

Successfully merging this pull request may close these issues.

대시보드 페이지내에 진행 중인 미션 리스트와 내가 제출한 솔루션 구현
2 participants