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

타이어 결과물 페이지 구현 #27 #30

Merged
merged 7 commits into from
Mar 5, 2024

Conversation

jinlee1703
Copy link
Member

Motivation

Problem Solving

  • 결과물 저장 구현
  • 결과물 조회 페이지 구현
  • 공유 버튼 시 메시지 출력 및 현재 페이지 주소 클립보드 저장

To Reviewer

Mar-05-2024 12-38-11

  • 끝.

Copy link
Member

@byeon22 byeon22 left a comment

Choose a reason for hiding this comment

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

WoW🤩우리 페이지 완전 깔쌈한데요?! 진짜 잘해줬네요 진우님~~ 새벽 동안 고생하셨슴다람쥐! Good

<div>
<div className="t2">
<p>패턴 디자인</p>
<p>{formatCurrency(result?.pattern.price)}</p>
Copy link
Member

Choose a reason for hiding this comment

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

P5: Result 뒤에 물음표가 붙는 이유는요?!

Copy link
Member Author

@jinlee1703 jinlee1703 Mar 5, 2024

Choose a reason for hiding this comment

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

typescript의 경우에는 타입 체크가 엄격하기 때문에 객체에 값을 할당하지 않을 경우 에러가 발생합니다. 이 경우에는 api 값을 사용하기 때문에 result의 속성인 pattern이 없을 경우 에러가 발생하기 때문에 ?를 통해 선택적 프로퍼티(Optional Properties)라는 것을 사용해줘야 합니다.

참고자료

}, [result]);

if (!result) {
return <div>Loading...</div>;
Copy link
Member

Choose a reason for hiding this comment

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

P4: result가 없을 때 저게 띄워지는데 저렇게 해보니까 페이지 뜰 때 반짝 거리더라구요?!! 안 번쩍거리기 위해서 저기에 style 입히거나 다른 방법이 있을까요? (궁금)

Copy link
Member Author

Choose a reason for hiding this comment

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

API 요청을 통해 result를 받아오기 때문에 그 과정에서 발생하는 것 같습니다. 해당 이슈를 해결하기 위해서는 로딩 페이지를 별도로 만드는 방식으로 해결할 수는 있을 것 같은데, 로딩 페이지는 추후 고려해보겠습니다.

id: string;
}

export interface ResultData {
Copy link
Member

Choose a reason for hiding this comment

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

P5: 서버에서 넘겨주는 게 있는데 타입을 따로 만든 건 타입스크립트라서 그런가요? 장점은??

Copy link
Member Author

Choose a reason for hiding this comment

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

typescript 특성 상 추후 .tsx 파일을 사용할 때 Result 객체를 정의하여야 하는데 이때 이 객체의 타입을 정의하기 위해 사용했습니다. 이를 통해 테이터의 자료형을 알 수 있어 IDE의 도움을 받기 용이하고, 코드 작성을 보다 쉽고 직관적으로 할 수 있습니다.

더 관심있으시면 'TypeScript의 장점'에 대해서 알아보시면 좋을 것 같습니다.

@jinlee1703 jinlee1703 merged commit b594bc2 into develop Mar 5, 2024
1 check passed
@jinlee1703 jinlee1703 deleted the feature#27-result-page branch March 5, 2024 04:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants