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

Refactor/#212-#214: 동네 설정 VC 재설계 + ViewModel / 클린 아키텍처 적용 #216

Merged
merged 18 commits into from
Mar 27, 2023
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
ea233d3
#213: MapRouter, MapService, MapRepository 세팅
dev-muuu Mar 26, 2023
573d78d
#213: KakaoLocalMeetingModel > MeetingLoactionResponseModel 네이밍 변경
dev-muuu Mar 26, 2023
e6a4e3a
#213: KakaoLocationAddressModel > GetTownResponseModel 네이밍 변경
dev-muuu Mar 26, 2023
3ccd892
#213: KakaoLocalTownModel > PlaceSearchRepsonseModel 네이밍 변경
dev-muuu Mar 26, 2023
d539936
#213: MapRepository 관련 UseCase 세팅 (LocationCoordinateRequestValue 재사용…
dev-muuu Mar 26, 2023
710a902
#213: BaseService requestDecoded 카카오 등 외부 API 호출 용 추가
dev-muuu Mar 26, 2023
edca1f1
chore: Foundation 디렉토리 위치 변경
dev-muuu Mar 26, 2023
bb0a73b
#213: 카카오 로컬 API HTTP Url 오류 수정
dev-muuu Mar 27, 2023
bae004a
#213: MapRepository 약속 장소 관련 API 임시 주석 처리
dev-muuu Mar 27, 2023
b60997d
#214: 동네 설정 UseCase 네이밍 변경
dev-muuu Mar 27, 2023
03c1d83
#213: LocationCoordinateRequestValue 프로퍼티 타입 Float > String 변경
dev-muuu Mar 27, 2023
745e47d
feat: AlertViewController show 메서드 discardableResult 속성 추가
dev-muuu Mar 27, 2023
813888f
#212: Map 프로토콜 + MapViewController 클래스 생성 및 설계 > 재사용 목적
dev-muuu Mar 27, 2023
1464550
fix: InfoAlertViewController buttonStackView 레이아웃 조정
dev-muuu Mar 27, 2023
4d4dd46
#213: 이전 카카오 로컬 API 코드들 주석 처리 > 관련 파일들 전부 제거 예정
dev-muuu Mar 27, 2023
4a8e27a
#212: TownRegisterMapViewController 생성 및 Splash과 연결 - MapViewControll…
dev-muuu Mar 27, 2023
22aa828
#212: MeetingLocationRegisterMapViewController 클래스 생성 > 채팅 작업시 세부 구현 예정
dev-muuu Mar 27, 2023
f91210c
#214: 클린 아키텍처 기반 TownRegisterMapViewModel 설계 / 기능 구현
dev-muuu Mar 27, 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
Prev Previous commit
Next Next commit
#213: LocationCoordinateRequestValue 프로퍼티 타입 Float > String 변경
dev-muuu committed Mar 27, 2023
commit 03c1d839008fd8b0cdcdd789eb3a7c340a7a8426
4 changes: 2 additions & 2 deletions Zatch/Domain/UseCase/Map/LocationCoordinateRequestValue.swift
Original file line number Diff line number Diff line change
@@ -8,6 +8,6 @@
import Foundation

struct LocationCoordinateRequestValue {
let x: Float
let y: Float
let x: String
let y: String
}