generated from baekteun/Tuist_Modular_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
47 changed files
with
471 additions
and
186 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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
2 changes: 1 addition & 1 deletion
2
...ce/SignupEmailAuthCodeVerifyFactory.swift β ...terface/SignupAuthCodeVerifyFactory.swift
This file contains 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import SwiftUI | ||
|
||
public protocol SignupEmailAuthCodeVerifyFactory { | ||
public protocol SignupVerifyAuthCodeFactory { | ||
associatedtype SomeView: View | ||
func makeView() -> SomeView | ||
} |
2 changes: 1 addition & 1 deletion
2
.../Interface/SignupEmailVerifyFactory.swift β ...eature/Interface/SignupEmailFactory.swift
This file contains 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import SwiftUI | ||
|
||
public protocol SignupEmailVerifyFactory { | ||
public protocol SignupEmailFactory { | ||
associatedtype SomeView: View | ||
func makeView() -> SomeView | ||
} |
This file contains 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 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 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 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
6 changes: 6 additions & 0 deletions
6
Projects/Feature/SignupFeature/Interface/UserInfo/SignupUserInfoFlowFactory.swift
This file contains 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,6 @@ | ||
import SwiftUI | ||
|
||
public protocol SignupUserInfoFlowFactory { | ||
associatedtype SomeView: View | ||
func makeView() -> SomeView | ||
} |
16 changes: 16 additions & 0 deletions
16
Projects/Feature/SignupFeature/Sources/Email/SignupEmailComponent.swift
This file contains 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,16 @@ | ||
import SwiftUI | ||
import NeedleFoundation | ||
import SignupFeatureInterface | ||
|
||
public protocol SignupEmailDependency: Dependency { | ||
var signupVerifyAuthCode: any SignupVerifyAuthCodeFactory { get } | ||
} | ||
|
||
public final class SignupEmailComponent: Component<SignupEmailDependency>, SignupEmailFactory { | ||
public func makeView() -> some View { | ||
SignupEmailView( | ||
viewModel: .init(), | ||
signupVerifyAuthCode: dependency.signupVerifyAuthCode | ||
) | ||
} | ||
} |
Oops, something went wrong.