File tree 4 files changed +20
-6
lines changed
4 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ internal struct HomeView: View {
21
21
Group {
22
22
switch selectedMenu {
23
23
case . models: ModelsView ( )
24
+ case . completions: CompletionsView ( )
24
25
case . chatCompletions: ChatCompletionsView ( )
25
26
default : Feedback ( state: . construction)
26
27
}
Original file line number Diff line number Diff line change @@ -28,11 +28,12 @@ struct CompletionsView: View {
28
28
. opacity ( viewModel. isLoading ? 0.4 : 1 )
29
29
ButtonContained (
30
30
" Submit " ,
31
- isEnabled: !viewModel. input. isEmpty
31
+ isEnabled: !viewModel. input. isEmpty && !viewModel. isLoading,
32
+ onAction: { viewModel. requestCompletions ( ) }
32
33
)
33
34
. padding ( . top, 16 )
34
35
. padding ( . bottom, 24 )
35
- OutputBox ( states: [ ] )
36
+ OutputBox ( states: viewModel . outputBoxStates )
36
37
}
37
38
. padding ( 16 )
38
39
. fullScreen ( )
Original file line number Diff line number Diff line change @@ -24,19 +24,30 @@ internal class CompletionsViewModel: ObservableObject {
24
24
}
25
25
26
26
@MainActor
27
- func fetchListModels ( ) {
27
+ func requestCompletions ( ) {
28
28
let completions = yChat. completion ( )
29
29
. setInput ( input: input)
30
30
outputBoxStates = [ ]
31
31
outputBoxStates. append ( OutputState . text ( text: input) )
32
+ setLoading ( isLoading: true )
32
33
Task . init {
33
-
34
34
do {
35
35
let result = try await completions. execute ( )
36
-
36
+ setLoading ( isLoading: false )
37
+ outputBoxStates. append ( OutputState . text ( text: result, isMarked: true ) )
37
38
} catch {
38
-
39
+ setLoading ( isLoading: false )
40
+ outputBoxStates. append ( OutputState . error)
39
41
}
40
42
}
41
43
}
44
+
45
+ private func setLoading( isLoading: Bool ) {
46
+ self . isLoading = isLoading
47
+ if isLoading {
48
+ outputBoxStates. append ( OutputState . loading)
49
+ } else {
50
+ outputBoxStates. removeAll { $0 == . loading }
51
+ }
52
+ }
42
53
}
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ struct ButtonContained: View {
39
39
}
40
40
. background ( backgroundColor)
41
41
. cornerRadius ( 8 )
42
+ . disabled ( !isEnabled)
42
43
}
43
44
}
44
45
You can’t perform that action at this time.
0 commit comments