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

[AUTH] 아이디, 비밀번호 찾기 PC 버전 UI 추가 #119

Merged
merged 22 commits into from
Nov 16, 2023

Conversation

LUNA-KK
Copy link
Contributor

@LUNA-KK LUNA-KK commented Nov 10, 2023

[#111] 아이디, 비밀번호 찾기 PC 버전 UI 추가

  • 아이디, 비밀번호 찾기 PC 버전 UI만 추가했습니다.
  • 기능은 다음 pr에서 구현하겠습니다.
  • Error svg는 사용되는 부분에 일단 모두 삽입해두었습니다.

Please check if the PR fulfills these requirements

  • It's submitted to develop branch, not the main branch
  • The commit message follows our guidelines
  • There are no warning message when you run yarn lint
  • Docs updated for breaking changes

Screenshot

image
image
image

Copy link
Contributor

@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.

수고하셨습니다!
package-lock.json이 생긴걸 보아 npm을 사용하신거 같은데 yarn을 사용해주세요🥲
사소한 리뷰 남겨놨어요!

src/pages/Auth/FindIDPassword/index.tsx Outdated Show resolved Hide resolved
src/pages/Auth/FindIDPassword/PC/index.tsx Outdated Show resolved Hide resolved
Copy link
Contributor

@junghaesung79 junghaesung79 left a comment

Choose a reason for hiding this comment

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

고생하셨습니다! 몇 가지 궁금한 점 질문할게요~

src/pages/Auth/FindIDPassword/PC/ChangePassword.tsx Outdated Show resolved Hide resolved
src/pages/Auth/FindIDPassword/PC/ChangePassword.tsx Outdated Show resolved Hide resolved
src/pages/Auth/FindIDPassword/PC/ChangePassword.tsx Outdated Show resolved Hide resolved
src/pages/Auth/FindIDPassword/PC/ChangePassword.tsx Outdated Show resolved Hide resolved
src/pages/Auth/FindIDPassword/mobile/index.tsx Outdated Show resolved Hide resolved
src/pages/Auth/FindIDPassword/mobile/index.tsx Outdated Show resolved Hide resolved
Copy link
Contributor

@chaeseungyun chaeseungyun left a comment

Choose a reason for hiding this comment

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

고생하셨습니다
자잘한 몇개의 수정사항만 수정하면 될 것 같아요

src/pages/Auth/FindIDPassword/PC/index.tsx Outdated Show resolved Hide resolved
src/App.tsx Outdated Show resolved Hide resolved
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.

안녕하세요! 처음 @LUNA-KK 리뷰를 하게 되었네요~!
앞으로도 잘 부탁드려요~!
리뷰가 좀 늦어서 그냥 코멘트로만 남겨놓을게요! 반영하고 싶은 부분이 있다면 고민해보고 반영해 보았으면 좋겠어요.😆

Comment on lines 21 to 45
{type === 'id' && (
<div className={style.page__title}>
아이디 찾기
</div>
)}
{type === 'password' && (
<div className={style.page__title}>
비밀번호 찾기
</div>
)}
<div>
{type === 'id' && (
<p className={style.page__quote}>
쩝쩝박사 가입 이메일을 통해
<br />
아이디를 찾을 수 있어요.
</p>
)}
{type === 'password' && (
<p className={style.page__quote}>
쩝쩝박사 가입 아이디를 통해
<br />
비밀번호를 찾을 수 있어요.
</p>
)}
Copy link
Contributor

Choose a reason for hiding this comment

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

이거 id와 password 끼리 못 묶어주나요??

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 40 to 50
<div className={style.form__box}>
<div className={style.form__label}>
새 비밀번호 확인
<ErrorIcon />
</div>
<input
placeholder="비밀번호를 입력해주세요."
className={style.form__input}
/>
<ErrorIcon className={style.form__error} />
</div>
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.

혹시 어떤 부분에서 재활용 할 수 있다고 보시나요?
이 구조는 다른 곳에서 쓰이고 있지 않은 것 같아요!

src/pages/Auth/FindIDPassword/PC/ChangePassword.tsx Outdated Show resolved Hide resolved
src/pages/Auth/FindIDPassword/PC/index.tsx Outdated Show resolved Hide resolved
src/pages/Auth/FindIDPassword/index.tsx Outdated Show resolved Hide resolved
Comment on lines 39 to 41
if (result.status === 200) {
setError('email', { message: '존재하지 않는 아이디입니다.' });
}
Copy link
Contributor

Choose a reason for hiding this comment

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

여기에서는 Error를 throw 하고 catch 문에서 Error Event를 받아서 set 해주는 flow가 더 좋을 것 같은데 어떻게 생각하시나요?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

가독성을 위해 flow를 전환시키라는 의미인가요?

@LUNA-KK LUNA-KK merged commit e17f287 into develop Nov 16, 2023
1 check passed
@LUNA-KK LUNA-KK deleted the feature/#111 branch November 16, 2023 14:38
D0Dam added a commit that referenced this pull request Nov 20, 2023
commit e17f287
Merge: a062a1f 8d7e147
Author: somin <110970349+LUNA-KK@users.noreply.github.com>
Date:   Thu Nov 16 23:38:42 2023 +0900

    Merge pull request #119 from BCSDLab/feature/#111

    [AUTH]  아이디, 비밀번호 찾기 PC 버전 UI 추가

commit 8d7e147
Merge: bea4333 a062a1f
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 23:37:07 2023 +0900

    Merge remote-tracking branch 'origin/develop' into feature/#111

commit bea4333
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 23:16:52 2023 +0900

    refactor: 커스텀 훅 제작

commit d597afc
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 23:09:27 2023 +0900

    refactor: 함수 재정의

commit b429ce7
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 22:57:15 2023 +0900

    refactor: label 태그 사용

commit 1be32e7
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 21:54:14 2023 +0900

    refactor: 파일명 수정

commit a050106
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 21:48:40 2023 +0900

    refactor: 파일명 수정 사전작업

commit a062a1f
Author: Minjae Kim <smallkdb@gmail.com>
Date:   Wed Nov 15 18:35:45 2023 +0900

    [DETAIL] 상점 상세 페이지 구현 (#121)

    * Merge commit '3dd27b16c21891eb16b950346806161ea3525988'

    * feat: shop 응답값 타입 정의

    * refactor: 오타 수정

    * feat: useCounter 구현

    * feat: marker 클릭 이벤트 추가

    * feat: ImageCarousel 구현

    * feat: ShopDetail Page 구조 잡기

    * refactor: typo error 수정

    * refactor: imageCarousel css 수정

    * feat: StarRatingPreview 구현

    * feat: ShopDetail 에 기본 정보 ui 추가

    * refactor: 불필요한 eslin 옵션 off

    * refactor: detail 페이지 경로 수정

    * feat: fetch 로직 및 타입 설계

    * feat: 데이터 확인을 위한 mock 추가

    * feat: not found svg 추가

    * feat: SectionHeader 구현

    * feat: ISO 형식 날짜 변환 함수 구현

    * feat: Review 관련 컴포넌트 구현

    * feat: Map 구현

    * feat: NotFound 컴포넌트 구현

    * feat: ShopDetail에 컴포넌트 연결 및 grid 적용

    * Squashed commit of the following: d0dam

    commit 776fdea
    Author: Minjae Kim <smallkdb@gmail.com>
    Date:   Tue Nov 7 17:11:57 2023 +0900

        [Auth] User 타입으로 인한 버그 해결  (#114)

        * refactor: 단어 spell typo 수정

        * refactor: SNSUser 타입 재정의

        * refactor: oauthType 롤백

        * Merge commit '71fedc7ab9189ae649abd567336885b99af3a261'

    commit 71fedc7
    Merge: a08ef32 12ab91b
    Author: 김혜준 <114041848+hyejun0228@users.noreply.github.com>
    Date:   Mon Nov 6 16:26:56 2023 +0900

        Merge pull request #115 from BCSDLab/feature/#86

        [HOTFIX] Mock 데이터 삭제로 인한 에러 해결

    commit 12ab91b
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Nov 6 00:57:54 2023 +0900

        fix: mock data 추가

    commit a08ef32
    Merge: 4065df0 3767d38
    Author: 김혜준 <114041848+hyejun0228@users.noreply.github.com>
    Date:   Mon Nov 6 00:44:54 2023 +0900

        Merge pull request #112 from BCSDLab/feature/#86

        [SEARCH] 검색 결과 페이지 구현

    commit 3767d38
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Nov 6 00:44:32 2023 +0900

        remove: mock data 삭제

    commit e5e1132
    Author: 김혜준 <alice5855@naver.com>
    Date:   Sat Nov 4 02:35:12 2023 +0900

        refactor: return 값 재분기 처리

    commit 3f82efd
    Author: 김혜준 <alice5855@naver.com>
    Date:   Sat Nov 4 02:28:00 2023 +0900

        fix: interface 수정

    commit 853cf94
    Author: 김혜준 <alice5855@naver.com>
    Date:   Fri Nov 3 02:36:23 2023 +0900

        refactor: 훅 params 값 수정

    commit ab811d5
    Author: 김혜준 <alice5855@naver.com>
    Date:   Fri Nov 3 02:00:16 2023 +0900

        refactor: 타입선언 통일

    commit 2be145c
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 15:13:07 2023 +0900

        fix: lint 에러 수정

    commit d291ac3
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 15:12:01 2023 +0900

        refactor: return 추가 분기처리 및 검색 UI수정

    commit c419b19
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 14:19:05 2023 +0900

        refator: enterEvent함수 변경

    commit 1fc142a
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 13:58:11 2023 +0900

        fix: lint 에러 수정

    commit 48f514c
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 13:40:05 2023 +0900

        refactor: return 값 재분기 처리

    commit 2ba0e8c
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 02:02:20 2023 +0900

        refator: 불필요한 if 문 삭제

    commit aba2f12
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 01:30:57 2023 +0900

        refactor: 내부 이벤트함수 외부로 이동

    commit 74b638b
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 00:31:52 2023 +0900

        refator: useDebounce 타입 수정

    commit 5a7413e
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 00:16:01 2023 +0900

        refactor: return값 분기처리

    commit 91c405f
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Oct 30 02:07:46 2023 +0900

        refactor: 함수명 변경

    commit b042d95
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Oct 30 01:45:08 2023 +0900

        fix: 불필요한 콘솔 삭제

    commit c56736b
    Merge: 2e40c20 4065df0
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Oct 30 01:41:59 2023 +0900

        Merge branch 'develop' into feature/#86

    commit 2e40c20
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Oct 30 01:21:32 2023 +0900

        feat: 검색 결과 페이지 구현

    * fix: 충돌간 에러사항 수정

    * fix: lint 에러 수정

    * fix: lint 에러 수정

    * refactor: bem 형식에 맞게 className 수정

    * refactor: 불확실한 타입명 및 타입 재설정

    * refactor:불필요한 타입 추론 제거

    * refactor: css 코드 최적화

    * refactor: SectionHeader Button 관련 props 네이밍 변경

    * refactor: 코드 이해를 위한 주석 추가

    * refactor: 통일감을 위한 className 변경

    * hotfix: mock 에 사용되는 google api 제거

    * refactor: tanstack query 버전 변경에 따른 useQuery 문 재작성

    * refactor: className snake case로 변경

commit a7f0768
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 22:03:52 2023 +0900

    chore: 폴더구조 변경

commit f8ad582
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 21:50:06 2023 +0900

    refactor: svg명 수정

commit e61154c
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 21:46:34 2023 +0900

    refactor: 코드 가독성 향상

commit b869ee3
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 21:44:33 2023 +0900

    refactor: 경로명 수정

commit cca17c1
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 21:16:07 2023 +0900

    refactor: 문구 변경

commit 143a059
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:18:05 2023 +0900

    refactor: lint 에러 수정

commit 2c334f0
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:16:03 2023 +0900

    refactor: lint 에러 수정

commit d78026e
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:08:28 2023 +0900

    fix: sns 유저 관련 에러 주석처리

commit 4fea1c6
Merge: b55783e 776fdea
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:02:27 2023 +0900

    Merge remote-tracking branch 'origin/develop' into feature/#111

commit b55783e
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:00:20 2023 +0900

    refactor: 오류 수정

commit 41381bd
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 16:59:09 2023 +0900

    feat: 아이디, 비밀번호 찾기 pc ui 추가

commit f027f61
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 16:58:29 2023 +0900

    refactor: 폴더 구조 변경

commit 5023af3
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 16:56:33 2023 +0900

    refactor: svg 추가

commit a2181c3
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 16:55:35 2023 +0900

    refactor: 아이디, 비밀번호 찾기 라우팅 변경

commit 9992973
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Sun Oct 29 16:05:08 2023 +0900

    refactor: 타입관련 에러 수정

commit 3438b62
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Sun Oct 29 16:04:45 2023 +0900

    refactor: 버튼 문구 수정
D0Dam added a commit that referenced this pull request Dec 14, 2023
* Merge commit '3dd27b16c21891eb16b950346806161ea3525988'

* feat: shop 응답값 타입 정의

* refactor: 오타 수정

* feat: useCounter 구현

* feat: marker 클릭 이벤트 추가

* feat: ImageCarousel 구현

* feat: ShopDetail Page 구조 잡기

* refactor: typo error 수정

* refactor: imageCarousel css 수정

* feat: StarRatingPreview 구현

* feat: ShopDetail 에 기본 정보 ui 추가

* refactor: 불필요한 eslin 옵션 off

* refactor: detail 페이지 경로 수정

* feat: fetch 로직 및 타입 설계

* feat: 데이터 확인을 위한 mock 추가

* feat: not found svg 추가

* feat: SectionHeader 구현

* feat: ISO 형식 날짜 변환 함수 구현

* feat: Review 관련 컴포넌트 구현

* feat: Map 구현

* feat: NotFound 컴포넌트 구현

* feat: ShopDetail에 컴포넌트 연결 및 grid 적용

* Squashed commit of the following: d0dam

commit 776fdea
Author: Minjae Kim <smallkdb@gmail.com>
Date:   Tue Nov 7 17:11:57 2023 +0900

    [Auth] User 타입으로 인한 버그 해결  (#114)

    * refactor: 단어 spell typo 수정

    * refactor: SNSUser 타입 재정의

    * refactor: oauthType 롤백

    * Merge commit '71fedc7ab9189ae649abd567336885b99af3a261'

commit 71fedc7
Merge: a08ef32 12ab91b
Author: 김혜준 <114041848+hyejun0228@users.noreply.github.com>
Date:   Mon Nov 6 16:26:56 2023 +0900

    Merge pull request #115 from BCSDLab/feature/#86

    [HOTFIX] Mock 데이터 삭제로 인한 에러 해결

commit 12ab91b
Author: 김혜준 <alice5855@naver.com>
Date:   Mon Nov 6 00:57:54 2023 +0900

    fix: mock data 추가

commit a08ef32
Merge: 4065df0 3767d38
Author: 김혜준 <114041848+hyejun0228@users.noreply.github.com>
Date:   Mon Nov 6 00:44:54 2023 +0900

    Merge pull request #112 from BCSDLab/feature/#86

    [SEARCH] 검색 결과 페이지 구현

commit 3767d38
Author: 김혜준 <alice5855@naver.com>
Date:   Mon Nov 6 00:44:32 2023 +0900

    remove: mock data 삭제

commit e5e1132
Author: 김혜준 <alice5855@naver.com>
Date:   Sat Nov 4 02:35:12 2023 +0900

    refactor: return 값 재분기 처리

commit 3f82efd
Author: 김혜준 <alice5855@naver.com>
Date:   Sat Nov 4 02:28:00 2023 +0900

    fix: interface 수정

commit 853cf94
Author: 김혜준 <alice5855@naver.com>
Date:   Fri Nov 3 02:36:23 2023 +0900

    refactor: 훅 params 값 수정

commit ab811d5
Author: 김혜준 <alice5855@naver.com>
Date:   Fri Nov 3 02:00:16 2023 +0900

    refactor: 타입선언 통일

commit 2be145c
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 15:13:07 2023 +0900

    fix: lint 에러 수정

commit d291ac3
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 15:12:01 2023 +0900

    refactor: return 추가 분기처리 및 검색 UI수정

commit c419b19
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 14:19:05 2023 +0900

    refator: enterEvent함수 변경

commit 1fc142a
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 13:58:11 2023 +0900

    fix: lint 에러 수정

commit 48f514c
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 13:40:05 2023 +0900

    refactor: return 값 재분기 처리

commit 2ba0e8c
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 02:02:20 2023 +0900

    refator: 불필요한 if 문 삭제

commit aba2f12
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 01:30:57 2023 +0900

    refactor: 내부 이벤트함수 외부로 이동

commit 74b638b
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 00:31:52 2023 +0900

    refator: useDebounce 타입 수정

commit 5a7413e
Author: 김혜준 <alice5855@naver.com>
Date:   Thu Nov 2 00:16:01 2023 +0900

    refactor: return값 분기처리

commit 91c405f
Author: 김혜준 <alice5855@naver.com>
Date:   Mon Oct 30 02:07:46 2023 +0900

    refactor: 함수명 변경

commit b042d95
Author: 김혜준 <alice5855@naver.com>
Date:   Mon Oct 30 01:45:08 2023 +0900

    fix: 불필요한 콘솔 삭제

commit c56736b
Merge: 2e40c20 4065df0
Author: 김혜준 <alice5855@naver.com>
Date:   Mon Oct 30 01:41:59 2023 +0900

    Merge branch 'develop' into feature/#86

commit 2e40c20
Author: 김혜준 <alice5855@naver.com>
Date:   Mon Oct 30 01:21:32 2023 +0900

    feat: 검색 결과 페이지 구현

* fix: 충돌간 에러사항 수정

* fix: lint 에러 수정

* fix: lint 에러 수정

* refactor: bem 형식에 맞게 className 수정

* refactor: 불확실한 타입명 및 타입 재설정

* refactor:불필요한 타입 추론 제거

* refactor: css 코드 최적화

* refactor: SectionHeader Button 관련 props 네이밍 변경

* refactor: 코드 이해를 위한 주석 추가

* refactor: 통일감을 위한 className 변경

* hotfix: mock 에 사용되는 google api 제거

* refactor: tanstack query 버전 변경에 따른 useQuery 문 재작성

* refactor: className snake case로 변경

* Squashed commit of the following:

commit e17f287
Merge: a062a1f 8d7e147
Author: somin <110970349+LUNA-KK@users.noreply.github.com>
Date:   Thu Nov 16 23:38:42 2023 +0900

    Merge pull request #119 from BCSDLab/feature/#111

    [AUTH]  아이디, 비밀번호 찾기 PC 버전 UI 추가

commit 8d7e147
Merge: bea4333 a062a1f
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 23:37:07 2023 +0900

    Merge remote-tracking branch 'origin/develop' into feature/#111

commit bea4333
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 23:16:52 2023 +0900

    refactor: 커스텀 훅 제작

commit d597afc
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 23:09:27 2023 +0900

    refactor: 함수 재정의

commit b429ce7
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 22:57:15 2023 +0900

    refactor: label 태그 사용

commit 1be32e7
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 21:54:14 2023 +0900

    refactor: 파일명 수정

commit a050106
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Thu Nov 16 21:48:40 2023 +0900

    refactor: 파일명 수정 사전작업

commit a062a1f
Author: Minjae Kim <smallkdb@gmail.com>
Date:   Wed Nov 15 18:35:45 2023 +0900

    [DETAIL] 상점 상세 페이지 구현 (#121)

    * Merge commit '3dd27b16c21891eb16b950346806161ea3525988'

    * feat: shop 응답값 타입 정의

    * refactor: 오타 수정

    * feat: useCounter 구현

    * feat: marker 클릭 이벤트 추가

    * feat: ImageCarousel 구현

    * feat: ShopDetail Page 구조 잡기

    * refactor: typo error 수정

    * refactor: imageCarousel css 수정

    * feat: StarRatingPreview 구현

    * feat: ShopDetail 에 기본 정보 ui 추가

    * refactor: 불필요한 eslin 옵션 off

    * refactor: detail 페이지 경로 수정

    * feat: fetch 로직 및 타입 설계

    * feat: 데이터 확인을 위한 mock 추가

    * feat: not found svg 추가

    * feat: SectionHeader 구현

    * feat: ISO 형식 날짜 변환 함수 구현

    * feat: Review 관련 컴포넌트 구현

    * feat: Map 구현

    * feat: NotFound 컴포넌트 구현

    * feat: ShopDetail에 컴포넌트 연결 및 grid 적용

    * Squashed commit of the following: d0dam

    commit 776fdea
    Author: Minjae Kim <smallkdb@gmail.com>
    Date:   Tue Nov 7 17:11:57 2023 +0900

        [Auth] User 타입으로 인한 버그 해결  (#114)

        * refactor: 단어 spell typo 수정

        * refactor: SNSUser 타입 재정의

        * refactor: oauthType 롤백

        * Merge commit '71fedc7ab9189ae649abd567336885b99af3a261'

    commit 71fedc7
    Merge: a08ef32 12ab91b
    Author: 김혜준 <114041848+hyejun0228@users.noreply.github.com>
    Date:   Mon Nov 6 16:26:56 2023 +0900

        Merge pull request #115 from BCSDLab/feature/#86

        [HOTFIX] Mock 데이터 삭제로 인한 에러 해결

    commit 12ab91b
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Nov 6 00:57:54 2023 +0900

        fix: mock data 추가

    commit a08ef32
    Merge: 4065df0 3767d38
    Author: 김혜준 <114041848+hyejun0228@users.noreply.github.com>
    Date:   Mon Nov 6 00:44:54 2023 +0900

        Merge pull request #112 from BCSDLab/feature/#86

        [SEARCH] 검색 결과 페이지 구현

    commit 3767d38
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Nov 6 00:44:32 2023 +0900

        remove: mock data 삭제

    commit e5e1132
    Author: 김혜준 <alice5855@naver.com>
    Date:   Sat Nov 4 02:35:12 2023 +0900

        refactor: return 값 재분기 처리

    commit 3f82efd
    Author: 김혜준 <alice5855@naver.com>
    Date:   Sat Nov 4 02:28:00 2023 +0900

        fix: interface 수정

    commit 853cf94
    Author: 김혜준 <alice5855@naver.com>
    Date:   Fri Nov 3 02:36:23 2023 +0900

        refactor: 훅 params 값 수정

    commit ab811d5
    Author: 김혜준 <alice5855@naver.com>
    Date:   Fri Nov 3 02:00:16 2023 +0900

        refactor: 타입선언 통일

    commit 2be145c
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 15:13:07 2023 +0900

        fix: lint 에러 수정

    commit d291ac3
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 15:12:01 2023 +0900

        refactor: return 추가 분기처리 및 검색 UI수정

    commit c419b19
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 14:19:05 2023 +0900

        refator: enterEvent함수 변경

    commit 1fc142a
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 13:58:11 2023 +0900

        fix: lint 에러 수정

    commit 48f514c
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 13:40:05 2023 +0900

        refactor: return 값 재분기 처리

    commit 2ba0e8c
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 02:02:20 2023 +0900

        refator: 불필요한 if 문 삭제

    commit aba2f12
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 01:30:57 2023 +0900

        refactor: 내부 이벤트함수 외부로 이동

    commit 74b638b
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 00:31:52 2023 +0900

        refator: useDebounce 타입 수정

    commit 5a7413e
    Author: 김혜준 <alice5855@naver.com>
    Date:   Thu Nov 2 00:16:01 2023 +0900

        refactor: return값 분기처리

    commit 91c405f
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Oct 30 02:07:46 2023 +0900

        refactor: 함수명 변경

    commit b042d95
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Oct 30 01:45:08 2023 +0900

        fix: 불필요한 콘솔 삭제

    commit c56736b
    Merge: 2e40c20 4065df0
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Oct 30 01:41:59 2023 +0900

        Merge branch 'develop' into feature/#86

    commit 2e40c20
    Author: 김혜준 <alice5855@naver.com>
    Date:   Mon Oct 30 01:21:32 2023 +0900

        feat: 검색 결과 페이지 구현

    * fix: 충돌간 에러사항 수정

    * fix: lint 에러 수정

    * fix: lint 에러 수정

    * refactor: bem 형식에 맞게 className 수정

    * refactor: 불확실한 타입명 및 타입 재설정

    * refactor:불필요한 타입 추론 제거

    * refactor: css 코드 최적화

    * refactor: SectionHeader Button 관련 props 네이밍 변경

    * refactor: 코드 이해를 위한 주석 추가

    * refactor: 통일감을 위한 className 변경

    * hotfix: mock 에 사용되는 google api 제거

    * refactor: tanstack query 버전 변경에 따른 useQuery 문 재작성

    * refactor: className snake case로 변경

commit a7f0768
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 22:03:52 2023 +0900

    chore: 폴더구조 변경

commit f8ad582
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 21:50:06 2023 +0900

    refactor: svg명 수정

commit e61154c
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 21:46:34 2023 +0900

    refactor: 코드 가독성 향상

commit b869ee3
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 21:44:33 2023 +0900

    refactor: 경로명 수정

commit cca17c1
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Mon Nov 13 21:16:07 2023 +0900

    refactor: 문구 변경

commit 143a059
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:18:05 2023 +0900

    refactor: lint 에러 수정

commit 2c334f0
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:16:03 2023 +0900

    refactor: lint 에러 수정

commit d78026e
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:08:28 2023 +0900

    fix: sns 유저 관련 에러 주석처리

commit 4fea1c6
Merge: b55783e 776fdea
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:02:27 2023 +0900

    Merge remote-tracking branch 'origin/develop' into feature/#111

commit b55783e
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 17:00:20 2023 +0900

    refactor: 오류 수정

commit 41381bd
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 16:59:09 2023 +0900

    feat: 아이디, 비밀번호 찾기 pc ui 추가

commit f027f61
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 16:58:29 2023 +0900

    refactor: 폴더 구조 변경

commit 5023af3
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 16:56:33 2023 +0900

    refactor: svg 추가

commit a2181c3
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Fri Nov 10 16:55:35 2023 +0900

    refactor: 아이디, 비밀번호 찾기 라우팅 변경

commit 9992973
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Sun Oct 29 16:05:08 2023 +0900

    refactor: 타입관련 에러 수정

commit 3438b62
Author: Somin <ksomin03@koreatech.ac.kr>
Date:   Sun Oct 29 16:04:45 2023 +0900

    refactor: 버튼 문구 수정

* chore: lock 파일 변경 반영

* feat: url 복사 로직 추가

* feat: 북마크 기능 추가

* refactor: ScrapButton 분리

* fix: lint 에러 수정

* refactor: 불필요한 로직 제거, 토글 시 문구 변경

* refactor: 리뷰 반영

* refactor: 불필요한 타입 단언 제거 및 api 함수 형식 통일

* refactor: api 이해를 위한 주석 추가

* refactor: 불필요한 vs setting 제거
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.

5 participants