@@ -10,6 +10,7 @@ struct LoginForm<S: Session>: View {
10
10
@State private var loginError : LoginError ?
11
11
@State private var currentPage : LoginPage = . serverURL
12
12
@State private var loading : Bool = false
13
+ @FocusState private var focusedField : LoginField ?
13
14
14
15
let inspection = Inspection < Self > ( )
15
16
@@ -19,9 +20,19 @@ struct LoginForm<S: Session>: View {
19
20
case . serverURL:
20
21
serverURLPage
21
22
. transition ( . move( edge: . leading) )
23
+ . onAppear {
24
+ DispatchQueue . main. async {
25
+ focusedField = . baseAccessURL
26
+ }
27
+ }
22
28
case . sessionToken:
23
29
sessionTokenPage
24
30
. transition ( . move( edge: . trailing) )
31
+ . onAppear {
32
+ DispatchQueue . main. async {
33
+ focusedField = . sessionToken
34
+ }
35
+ }
25
36
}
26
37
}
27
38
. animation ( . easeInOut, value: currentPage)
@@ -79,6 +90,7 @@ struct LoginForm<S: Session>: View {
79
90
text: $baseAccessURL,
80
91
prompt: Text ( " https://coder.example.com " )
81
92
) . autocorrectionDisabled ( )
93
+ . focused ( $focusedField, equals: . baseAccessURL)
82
94
}
83
95
} . formStyle ( . grouped) . scrollDisabled ( true ) . padding ( . horizontal)
84
96
Divider ( )
@@ -110,6 +122,7 @@ struct LoginForm<S: Session>: View {
110
122
SecureField ( " Session Token " , text: $sessionToken, prompt: Text ( " ●●●●●●●● " ) )
111
123
. autocorrectionDisabled ( )
112
124
. privacySensitive ( )
125
+ . focused ( $focusedField, equals: . sessionToken)
113
126
HStack ( spacing: 0 ) {
114
127
Text ( " Generate a session token at " )
115
128
. font ( . subheadline)
@@ -144,12 +157,14 @@ struct LoginForm<S: Session>: View {
144
157
}
145
158
withAnimation {
146
159
currentPage = . sessionToken
160
+ focusedField = . sessionToken
147
161
}
148
162
}
149
163
150
164
private func back( ) {
151
165
withAnimation {
152
166
currentPage = . serverURL
167
+ focusedField = . baseAccessURL
153
168
}
154
169
}
155
170
}
0 commit comments