-
Notifications
You must be signed in to change notification settings - Fork 0
추천기능 메인화면 UI를 개발합니다. #328
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
Merged
Merged
추천기능 메인화면 UI를 개발합니다. #328
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
ac8a022
feat/#327: feature 모듈 추가 및 example 타깃 추가 후 기본 구성
dongglehada 85724aa
feat/#327: profileView 생성
dongglehada 5175fcc
feat/#327: 메인화면 UI구성
dongglehada a2f337f
feat/#327: 상수 정리 및 불필요 코드, 오타 수정
dongglehada 2f19d66
style/#327: Apply SwiftLint autocorrect
github-actions[bot] 99a2222
feat/#327: bundle 변경
dongglehada 8bc3206
feat/#327: 프로비저닝 프로필 설정
dongglehada 020b813
feat/#327: 앱 아이콘 설정
dongglehada 758a28a
feat/#327: 앱아이콘 수정
dongglehada File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| .DS_Store | ||
| /.build | ||
| /Packages | ||
| xcuserdata/ | ||
| DerivedData/ | ||
| .swiftpm/configuration/registries.json | ||
| .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata | ||
| .netrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| // swift-tools-version: 6.2 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| import PackageDescription | ||
|
|
||
| let package = Package( | ||
| name: "MLSRecommendationFeature", | ||
| platforms: [.iOS(.v15)], | ||
| products: [ | ||
| // Interface: Presentation 팩토리 프로토콜 | ||
| .library( | ||
| name: "MLSRecommendationFeatureInterface", | ||
| targets: ["MLSRecommendationFeatureInterface"] | ||
| ), | ||
| // Feature: Presentation + Domain + Data 구현체 | ||
| .library( | ||
| name: "MLSRecommendationFeature", | ||
| targets: ["MLSRecommendationFeature"] | ||
| ), | ||
| // Testing: 단위 테스트나 Example 앱에서 사용될 Mock 데이터를 제공하는 모듈 | ||
| .library( | ||
| name: "MLSRecommendationFeatureTesting", | ||
| targets: ["MLSRecommendationFeatureTesting"] | ||
| ) | ||
| ], | ||
| dependencies: [ | ||
| .package(path: "../MLSCore"), | ||
| .package(path: "../MLSDesignSystem"), | ||
| .package(url: "https://github.com/ReactorKit/ReactorKit.git", from: "3.2.0"), | ||
| .package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.7.0"), | ||
| .package(url: "https://github.com/RxSwiftCommunity/RxKeyboard.git", from: "2.0.0"), | ||
| .package(url: "https://github.com/SnapKit/SnapKit.git", from: "5.7.1") | ||
| ], | ||
| targets: [ | ||
| // Interface 모듈 (Presentation 팩토리 프로토콜) | ||
| .target( | ||
| name: "MLSRecommendationFeatureInterface", | ||
| dependencies: [ | ||
| .product(name: "MLSCore", package: "MLSCore"), | ||
| .product(name: "MLSDesignSystem", package: "MLSDesignSystem"), | ||
| .product(name: "RxSwift", package: "RxSwift") | ||
| ], | ||
| swiftSettings: [.swiftLanguageMode(.v5)] | ||
| ), | ||
| // Feature 모듈 (Presentation + Domain + Data 구현체) | ||
| .target( | ||
| name: "MLSRecommendationFeature", | ||
| dependencies: [ | ||
| "MLSRecommendationFeatureInterface", | ||
| .product(name: "MLSCore", package: "MLSCore"), | ||
| .product(name: "MLSDesignSystem", package: "MLSDesignSystem"), | ||
| .product(name: "ReactorKit", package: "ReactorKit"), | ||
| .product(name: "RxSwift", package: "RxSwift"), | ||
| .product(name: "RxCocoa", package: "RxSwift"), | ||
| .product(name: "RxRelay", package: "RxSwift"), | ||
| .product(name: "RxKeyboard", package: "RxKeyboard"), | ||
| .product(name: "SnapKit", package: "SnapKit") | ||
| ], | ||
| swiftSettings: [.swiftLanguageMode(.v5)] | ||
| ), | ||
| // Testing 모듈 (Mock 객체) | ||
| .target( | ||
| name: "MLSRecommendationFeatureTesting", | ||
| dependencies: [ | ||
| "MLSRecommendationFeatureInterface", | ||
| .product(name: "RxSwift", package: "RxSwift") | ||
| ], | ||
| swiftSettings: [.swiftLanguageMode(.v5)] | ||
| ), | ||
| // Tests 모듈 | ||
| .testTarget( | ||
| name: "MLSRecommendationFeatureTests", | ||
| dependencies: [ | ||
| "MLSRecommendationFeature", | ||
| "MLSRecommendationFeatureInterface", | ||
| "MLSRecommendationFeatureTesting", | ||
| .product(name: "RxBlocking", package: "RxSwift") | ||
| ], | ||
| swiftSettings: [.swiftLanguageMode(.v5)] | ||
| ) | ||
| ] | ||
| ) | ||
11 changes: 11 additions & 0 deletions
11
...RecommendationFeature/Presentation/RecommendationMain/RecommendationMainFactoryImpl.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| import MLSCore | ||
| import MLSRecommendationFeatureInterface | ||
|
|
||
| public struct RecommendationMainFactoryImpl: RecommendationMainFactory { | ||
|
|
||
| public init() {} | ||
|
|
||
| public func make() -> BaseViewController { | ||
| return RecommendationMainViewController() | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.