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

feat: (#3) 스플래시 페이지 및 소셜 로그인 구현 #5

Merged
merged 7 commits into from
Oct 29, 2024

Conversation

nebulaBdj
Copy link
Contributor

@nebulaBdj nebulaBdj commented Oct 25, 2024

[해야할 작업]

  • 스플래시 화면 구현
  • 소셜 로그인 구현

[feat: 스플래시 페이지 구현 작업 세부내용]

  • 스플래시 화면 구현 완료, 해당 과정에서 폰트 적용이 안돼 폰트 적용 부분도 수정함
  • 소셜로그인 과정 수정으로 인해 다시 작업 중

[feat: 소셜로그인 구현 완료 작업 세부 내용]

  • 소셜 로그인 네이버, 구글, 카카오 로컬 환경에서 테스트 완료
  • 사용자 role에 따라서 home || start 페이지 이동 구현
  • useSearchParams가 클라이언트 사이드에서만 작동할 수 있도록 Suspense 이용
  • 소셜 로그인 버튼 리팩토링
  • 홈페이지는 틀만 구현

스플래시 화면 구현, 해당 과정에서 폰트적용이 안돼 폰트 적용 부분도 수정함
@nebulaBdj nebulaBdj linked an issue Oct 25, 2024 that may be closed by this pull request
@nebulaBdj nebulaBdj changed the title feat: 스플래시 페이지 및 소셜 로그인 구현 feat: (#) 스플래시 페이지 및 소셜 로그인 구현 Oct 25, 2024
@nebulaBdj nebulaBdj changed the title feat: (#) 스플래시 페이지 및 소셜 로그인 구현 feat: (#3) 스플래시 페이지 및 소셜 로그인 구현 Oct 25, 2024
1. 불필요한 import 정리
2. button type 속성 추가
로컬 환경에서 테스트 완료
추가적으로 로그인 페이지 SplashTop 위치도 수정
@nebulaBdj nebulaBdj requested a review from yeyounging October 26, 2024 20:33
Copy link
Contributor

@yeyounging yeyounging left a comment

Choose a reason for hiding this comment

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

수고하셨습니다 ⭐️

메인 머지할때 squash 머지 어떠신가요 ? pr크기를 작게 하고 스쿼시 머지하는 게 더 깔끔하게 보이더라구요

}

const getUserData = async (socialType: string, sendDataArr: SendData[]) => {
let url: string = `https://cnergy.p-e.kr/v1/oauth/login/${socialType}?`
Copy link
Contributor

Choose a reason for hiding this comment

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

apiUrl은 환경변수로 따로 관리하는 게 더 좋을 것 같아요!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

오 좋아요 알겠습니다!

src/app/auth/callback/page.tsx Show resolved Hide resolved
src/app/components/Oauth/OauthBtn.tsx Outdated Show resolved Hide resolved
Comment on lines 3 to 22
export const socialTypes: OauthBtnData[] = [
{
id: 1,
type: 'kakao',
text: '카카오',
auth_uri: 'https://cnergy.p-e.kr/v1/oauth/kakao',
},
{
id: 2,
type: 'naver',
text: '네이버',
auth_uri: 'https://cnergy.p-e.kr/v1/oauth/naver',
},
{
id: 3,
type: 'google',
text: '구글',
auth_uri: 'https://cnergy.p-e.kr/v1/oauth/google',
},
]
Copy link
Contributor

Choose a reason for hiding this comment

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

auth_url은 생략가능할 것 같아요 !

Copy link
Contributor Author

Choose a reason for hiding this comment

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

https://cnergy.p-e.kr/v1/oauth/는 고정하고 해당 객체읜 type을 https://cnergy.p-e.kr/v1/oauth/${type} 이렇게 넣자는 이야기 일까요??

},
fontFamily: {
pretendard: 'var(--pretendard)',
fontFamily: {
Copy link
Contributor

Choose a reason for hiding this comment

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

굿굿

@nebulaBdj nebulaBdj merged commit 1dbc21f into main Oct 29, 2024
1 check passed
@yeyounging yeyounging deleted the feat/#3_splash_socialAuth branch November 25, 2024 13:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat: 스플래시 & 소셜로그인 구현
2 participants