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

React 오탈자 및 컴포넌트 수정하라 #172

Merged
merged 2 commits into from
Mar 13, 2024
Merged

React 오탈자 및 컴포넌트 수정하라 #172

merged 2 commits into from
Mar 13, 2024

Conversation

jihwooon
Copy link
Owner

@jihwooon jihwooon commented Mar 13, 2024

작업 내용 (Content)

링크 (Links)

기타 사항 (Etc)

Merge 전 필요 작업 (Checklist before merge)

  • PR 올리기 전 rebase 동기화를 하셨나요?
  • 마지막 줄에 공백 처리를 하셨나요?
  • 커밋 단위를 의미 단위로 나눴나요?
    • 예시
      • 코드 가독성을 위해 메서드를 추출하라
      • if-else 문을 if 문으로 분리하라
      • 불필요한 메서드를 인라인화하라
  • 커밋 본문을 작성하셨나요?
    • 예시
      • 함수는 한 가지 일을 해야 한다는 원칙에 따라 메서드를 추출합니다.
      • if-else는 컴파일 시 처리가 되어 재컴파일 없이 수정 할 수 없습니다.
        이에 따라 코드가 실행되는 순간에 실행이 결정되는 if 문으로 수정합니다.
  • CI 파이프라인이 통과가 되었나요?
  • 리뷰 요청 전 Self-Review로 의문점을 해결 하셨나요?
  • PR 리뷰 가능한 크기를 유지하셨나요?

- 장바구니 API 호출 경로를 /cart 에서 /carts 로 변경했습니다.
- 이에 따라 클라이언트 코드의 관련 부분을 수정 반영했습니다.
  - client/src/api/cart.api.ts
  - client/src/components/book/AddToCart.tsx
  - client/src/components/common/Header.tsx
- 로그인 상태 관리 코드를 최적화했습니다.
- 이전에는 getToken() 함수의 반환 값이 문자열이 아니거나 비어 있을 경우 false 를 설정하는 방식이었습니다.
- 이번 변경을 통해 논리 부정 연산자 (!) 를 사용하여 getToken() 의 반환 값이 거짓값인 경우 (null, undefined, "")에만 isLoggedIn을 false 로 설정하도록 개선했습니다.
@jihwooon jihwooon changed the title Issue 98 React 오탈자 및 컴포넌트 수정하라 Mar 13, 2024
@jihwooon jihwooon merged commit 86243a0 into main Mar 13, 2024
1 check passed
@jihwooon jihwooon deleted the issue-98 branch March 13, 2024 12:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

1 participant