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

merge :: (#44) Signup - AuthenticationCode UI #77

Merged
merged 69 commits into from
Oct 26, 2022
Merged

Conversation

sian7563
Copy link
Member

개요

AuthenticationCode UI

작업사항

AuthenticationCode UI

@sian7563 sian7563 added the ✨feat 새로운 기능을 추가 할 경우 label Oct 21, 2022
@sian7563 sian7563 self-assigned this Oct 21, 2022
@sian7563 sian7563 linked an issue Oct 21, 2022 that may be closed by this pull request
VStack(alignment: .leading, spacing: 8) {
Text("DMS")
.dmsFont(.title(.extraLarge), color: .PrimaryVariant.primary)
.padding(.top, 28)
Copy link
Member

Choose a reason for hiding this comment

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

.top padding VStack에 주는게 더 좋을거같아요

Comment on lines 13 to 15
var isSigninButtonEnabled: Bool {
!schoolCode.isEmpty
}
Copy link
Member

Choose a reason for hiding this comment

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

code는 8자리 고정이니 8자리일때 활성화시키는거 어떤가요?

Projects/Features/SignupFeature/Sources/PasscodeView.swift Outdated Show resolved Hide resolved
Comment on lines 5 to 14
public protocol SignupDependency: Dependency {
var checkSchoolCodeUseCase: any CheckSchoolCodeUseCase { get }
}

public final class SignupComponent: Component<SignupDependency> {
public func makeView() -> some View {
AuthenticationCodeView(
viewModel: .init(
checkSchoolCodeUseCase: dependency.checkSchoolCodeUseCase
)
Copy link
Member

Choose a reason for hiding this comment

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

AuthenticationCode에 대해 구현된것이니 Signup보다는 AuthenticationCode가 더 어울려보입니다!

Comment on lines 3 to 5

struct AuthenticationCodeView: View {

Copy link
Member

Choose a reason for hiding this comment

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

AuthenticationCode이라고 하였는데, 해당 페이지는 학교 인증코드 입력이니 SchoolCode로 하는게 어떤가요? 인증코드를 입력하는건 이메일 인증하는 것에도 있으니 혼동의 여지가 있어보여서요

Comment on lines 4 to 5
struct SchoolCodeView: View {

Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
struct SchoolCodeView: View {
struct SchoolCodeView: View {

의미 불명 공백!

}
@StateObject var viewModel: SchoolCodeViewModel
@FocusState private var focusField: FocusField?
@State var text: String = ""
Copy link
Member

Choose a reason for hiding this comment

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

이 친구..는 뭐하는 친구죠?


@Published var isOnAutoSignup = true
@Published var isNavigateCheckSchool = false
@Published var isSuccessAuthenticationCode = false
Copy link
Member

Choose a reason for hiding this comment

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

이거 쓰는 곳이 없는데 어디에 쓰는 것인가요?

Comment on lines 5 to 6
final class SchoolCodeViewModel: BaseViewModel {

Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
final class SchoolCodeViewModel: BaseViewModel {
final class SchoolCodeViewModel: BaseViewModel {

어.. 첫줄 공백 없이 가는거 어떠신가요

@sian7563 sian7563 merged commit ab2492f into develop Oct 26, 2022
@sian7563 sian7563 deleted the feat/44_SignUp-UI branch October 26, 2022 09:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
✨feat 새로운 기능을 추가 할 경우
Projects
None yet
Development

Successfully merging this pull request may close these issues.

회원가입 UI 구현
3 participants