@@ -6,65 +6,112 @@ import Toast
6
6
import Client
7
7
8
8
struct SuggesionSettingProxyView : View {
9
-
10
9
class Settings : ObservableObject {
11
10
@AppStorage ( " username " ) var username : String = " "
12
11
@AppStorage ( \. gitHubCopilotProxyUrl) var gitHubCopilotProxyUrl
13
12
@AppStorage ( \. gitHubCopilotProxyUsername) var gitHubCopilotProxyUsername
14
13
@AppStorage ( \. gitHubCopilotProxyPassword) var gitHubCopilotProxyPassword
15
14
@AppStorage ( \. gitHubCopilotUseStrictSSL) var gitHubCopilotUseStrictSSL
16
15
@AppStorage ( \. gitHubCopilotEnterpriseURI) var gitHubCopilotEnterpriseURI
17
-
18
- init ( ) { }
19
16
}
20
17
21
18
@StateObject var settings = Settings ( )
22
19
@Environment ( \. toast) var toast
23
20
24
21
var body : some View {
25
22
VStack ( alignment: . leading) {
26
- SettingsDivider ( " Enterprise " )
23
+ Text ( StringConstants . enterprise)
24
+ . bold ( )
25
+ . padding ( . leading, 8 )
27
26
28
27
Form {
29
28
TextField (
30
29
text: $settings. gitHubCopilotEnterpriseURI,
31
- prompt: Text ( " Leave it blank if none is available. " )
30
+ prompt: Text ( StringConstants . leaveBlankPrompt )
32
31
) {
33
- Text ( " Auth provider URL " )
32
+ Text ( StringConstants . authProviderURL )
34
33
}
34
+ . textFieldStyle ( PlainTextFieldStyle ( ) )
35
+ . multilineTextAlignment ( . trailing)
35
36
}
37
+ . padding ( 8 )
38
+ . background ( Color . gray. opacity ( 0.1 ) )
39
+ . cornerRadius ( 6 )
40
+ . padding ( . bottom, 16 )
36
41
37
- SettingsDivider ( " Proxy " )
42
+ Text ( StringConstants . proxy)
43
+ . bold ( )
44
+ . padding ( . leading, 8 )
38
45
39
- Form {
40
- TextField (
41
- text: $settings. gitHubCopilotProxyUrl,
42
- prompt: Text ( " http://host:port " )
43
- ) {
44
- Text ( " Proxy URL " )
46
+ VStack ( spacing: 0 ) {
47
+ Form {
48
+ TextField (
49
+ text: $settings. gitHubCopilotProxyUrl,
50
+ prompt: Text ( StringConstants . proxyURLPrompt)
51
+ ) {
52
+ Text ( StringConstants . proxyURL)
53
+ }
54
+ . textFieldStyle ( PlainTextFieldStyle ( ) )
55
+ . multilineTextAlignment ( . trailing)
45
56
}
46
- TextField ( text: $settings. gitHubCopilotProxyUsername) {
47
- Text ( " Proxy username " )
57
+ . padding ( . horizontal, 16 )
58
+ . padding ( . vertical, 8 )
59
+
60
+ Divider ( )
61
+
62
+ Form {
63
+ TextField ( text: $settings. gitHubCopilotProxyUsername, prompt: Text ( StringConstants . proxyUsernamePrompt) ) {
64
+ Text ( StringConstants . proxyUsername)
65
+ }
66
+ . textFieldStyle ( PlainTextFieldStyle ( ) )
67
+ . multilineTextAlignment ( . trailing)
48
68
}
49
- SecureField ( text: $settings. gitHubCopilotProxyPassword) {
50
- Text ( " Proxy password " )
69
+ . padding ( . horizontal, 16 )
70
+ . padding ( . vertical, 8 )
71
+
72
+ Divider ( )
73
+
74
+ Form {
75
+ SecureField ( text: $settings. gitHubCopilotProxyPassword, prompt: Text ( StringConstants . proxyPasswordPrompt) ) {
76
+ Text ( StringConstants . proxyPassword)
77
+ }
78
+ . textFieldStyle ( PlainTextFieldStyle ( ) )
79
+ . multilineTextAlignment ( . trailing)
51
80
}
52
- Toggle ( " Proxy strict SSL " , isOn: $settings. gitHubCopilotUseStrictSSL)
81
+ . padding ( . horizontal, 16 )
82
+ . padding ( . vertical, 8 )
83
+
84
+ Divider ( )
53
85
54
- Button ( " Refresh configurations " ) {
86
+ HStack {
87
+ Text ( StringConstants . proxyStrictSSL)
88
+ Spacer ( )
89
+ Toggle ( " " , isOn: $settings. gitHubCopilotUseStrictSSL)
90
+ . toggleStyle ( . switch)
91
+ }
92
+ . padding ( . horizontal, 16 )
93
+ . padding ( . vertical, 8 )
94
+ }
95
+ . background ( Color . gray. opacity ( 0.1 ) )
96
+ . cornerRadius ( 6 )
97
+ . padding ( . bottom, 8 )
98
+
99
+ HStack {
100
+ Spacer ( )
101
+ Button ( StringConstants . refreshConfigurations) {
55
102
refreshConfiguration ( )
56
- } . padding ( . top , 6 )
103
+ }
57
104
}
105
+ . padding ( . horizontal, 16 )
106
+ Spacer ( )
58
107
}
59
- . textFieldStyle ( . roundedBorder )
108
+ . padding ( 16 )
60
109
}
61
-
62
110
func refreshConfiguration( ) {
63
111
NotificationCenter . default. post (
64
112
name: . gitHubCopilotShouldRefreshEditorInformation,
65
113
object: nil
66
114
)
67
-
68
115
Task {
69
116
let service = try getService ( )
70
117
do {
0 commit comments