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

fix(client): 맵과 관련된 로직을 모두 마이그레이션 한 뒤 작동하게 합니다. #56

Merged
merged 28 commits into from
Jan 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1171ac2
feat: Recent type update
po4tion Jan 19, 2023
fae8ef4
fix: history 디자인 수정 적용 & 변경된 histories 타입 적용
po4tion Jan 21, 2023
428ba4d
feat: 맵 코드 분리, lottie 적용
po4tion Jan 21, 2023
789ef69
fix: 지도 중앙 값 처리 로직 적용
po4tion Jan 21, 2023
3aa95dc
feat: 맵 hooks 파일 분리, 불필요한 컴포넌트, recoil 파일 제거, 지도에 그려지는 lottie 위치 조절
po4tion Jan 21, 2023
09d9692
fix: 맵 전체 식당 리스트에서는 filterLikeCount 값이 필요가 없음
po4tion Jan 22, 2023
94272d8
fix: hooks 폴더의 무분별한 확장을 방지하기 위한 도메인 분리
po4tion Jan 22, 2023
5577dad
fix: 더는 사용되지 않는 hook 제거
po4tion Jan 22, 2023
0d9c38e
fix: resetRecoil export Function naming change
po4tion Jan 22, 2023
cd2d0a4
fix: 클릭 이벤트 함수의 네이밍 시작 대문자에서 소문자로 변경
po4tion Jan 22, 2023
2784ddd
fix: 이미 선언하였던 타입 재사용하기
po4tion Jan 22, 2023
ab12413
fix: useMemo 한줄 선언 시 return 제거
po4tion Jan 22, 2023
a9fc6a8
fix: hooks 파일 확장자 변경 tsx -> ts
po4tion Jan 22, 2023
93e9b27
fix: VoidFunction 타입 사용하기:
po4tion Jan 22, 2023
8c9ccfe
fix: 이미 존재하는 coordinate 타입 재사용하기
po4tion Jan 22, 2023
2ee60cf
fix: 컴포넌트에 존재하는 주석 최상단으로 올리기
po4tion Jan 22, 2023
488599f
fix: 중복되는 useMap hook 네이밍 변경
po4tion Jan 22, 2023
9757ece
fix: useSetNavaigation 함수 내에서 선언시ㅣ 최상단으로 올리기:
po4tion Jan 22, 2023
a380942
fix: Stack Vertical 사용으로 스타일 문법 축소 및 ul-li 태그 사용
po4tion Jan 22, 2023
0f9b102
fix: ul tag -> ol tag
po4tion Jan 22, 2023
234dc3b
fix: 이미 존재하는 페이지네이션 타입 확장하여 사용
po4tion Jan 22, 2023
7fc39bc
fix: 사용되지 않는 ref 제거:
po4tion Jan 22, 2023
3205384
fix: 처음을 제외하고는 처음 위치 고정하여 그 다음에 눌렀을 때 바로 지도 center가 변경되도록 변경
po4tion Jan 22, 2023
b725f90
fix: 현재 내 위치 버튼 클릭시 Lottie rocket loading process 적용
po4tion Jan 22, 2023
f8ef8e8
fix: component props type 선언 type -> interface로 수정
po4tion Jan 22, 2023
aba7119
fix: Component props type 적용
po4tion Jan 22, 2023
2494f2e
fix: 내 위치 변경 시 map event 작동안하는 이슈 해결
po4tion Jan 22, 2023
8be4fc1
fix: 지도에서 전체 식당 viewList 라운드 뱃지 제거
po4tion Jan 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions apps/client/@types/map.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,13 @@ declare module Map {
| "idle"
| "tilesloaded"
| "maptypeid_changed";

interface Direction {
qa: number;
oa: number;
pa: number;
ha: number;
}

type KakaoBounds = kakao.maps.LatLngBounds & Map.Direction;
}
6 changes: 5 additions & 1 deletion apps/client/@types/recent.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
declare module Recent {
interface HistoryDTO {
interface HistoryItem {
id: number;
keyword: string;
type: string;
category: string;
content?: string;
restaurantId?: number;
}

interface HistoryDTO extends Common.PaginationResponse<HistoryItem> {
totalElements: number;
}
}
3 changes: 3 additions & 0 deletions apps/client/assets/json/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
export { default as check } from "./check.json";
export { default as destination } from "./destination.json";
export { default as pin } from "./pin.json";
export { default as rocket } from "./rocket.json";
export { default as star } from "./star.json";
Loading