-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettingsShell.xaml
More file actions
463 lines (418 loc) · 22.2 KB
/
SettingsShell.xaml
File metadata and controls
463 lines (418 loc) · 22.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<UserControl x:Class="DotPilot.Presentation.Controls.SettingsShell"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="using:DotPilot.Presentation.Controls"
xmlns:presentation="using:DotPilot.Presentation"
x:Name="Root"
SelectProviderCommand="{Binding SelectProviderCommand}"
ToggleSelectedProviderCommand="{Binding ToggleSelectedProviderCommand}"
ExecuteProviderActionCommand="{Binding ExecuteProviderActionCommand}"
AutomationProperties.AutomationId="SettingsShell">
<Grid ColumnSpacing="18">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="252" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border Style="{StaticResource SettingsSurfacePanelStyle}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackPanel Margin="18,18,18,14"
Spacing="4">
<TextBlock Style="{StaticResource ChatSectionTitleTextStyle}"
Text="Customize" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="Adjust providers and message flow for this desktop operator." />
</StackPanel>
<StackPanel Grid.Row="1"
Margin="18,0,18,18"
Spacing="10">
<Button AutomationProperties.AutomationId="SettingsSectionProvidersButton"
Command="{Binding SelectSectionCommand}"
CommandParameter="Providers"
Style="{StaticResource SettingsNavButtonStyle}">
<Grid ColumnSpacing="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border Width="4"
CornerRadius="2"
Background="{StaticResource AppPrimaryTextBrush}"
Visibility="{Binding IsProvidersSectionSelected}" />
<Border Grid.Column="1"
Style="{StaticResource SettingsCategoryCardStyle}">
<Grid ColumnSpacing="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel Spacing="4">
<TextBlock FontSize="13"
FontWeight="SemiBold"
Text="Providers" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="Enable CLIs, inspect readiness, and copy install commands." />
</StackPanel>
<Border Grid.Column="1"
Style="{StaticResource StatusChipStyle}"
Visibility="{Binding IsProvidersSectionSelected}">
<TextBlock FontSize="10"
FontWeight="SemiBold"
Text="Open" />
</Border>
</Grid>
</Border>
</Grid>
</Button>
<Button AutomationProperties.AutomationId="SettingsSectionMessagesButton"
Command="{Binding SelectSectionCommand}"
CommandParameter="Messages"
Style="{StaticResource SettingsNavButtonStyle}">
<Grid ColumnSpacing="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border Width="4"
CornerRadius="2"
Background="{StaticResource AppPrimaryTextBrush}"
Visibility="{Binding IsMessagesSectionSelected}" />
<Border Grid.Column="1"
Style="{StaticResource SettingsCategoryCardStyle}">
<Grid ColumnSpacing="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel Spacing="4">
<TextBlock FontSize="13"
FontWeight="SemiBold"
Text="Messages" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="Choose how Enter behaves when you write in chat." />
</StackPanel>
<Border Grid.Column="1"
Style="{StaticResource StatusChipStyle}"
Visibility="{Binding IsMessagesSectionSelected}">
<TextBlock FontSize="10"
FontWeight="SemiBold"
Text="Open" />
</Border>
</Grid>
</Border>
</Grid>
</Button>
<Button AutomationProperties.AutomationId="SettingsSectionProfileButton"
Command="{Binding SelectSectionCommand}"
CommandParameter="Profile"
Style="{StaticResource SettingsNavButtonStyle}">
<Grid ColumnSpacing="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border Width="4"
CornerRadius="2"
Background="{StaticResource AppPrimaryTextBrush}"
Visibility="{Binding IsProfileSectionSelected}" />
<Border Grid.Column="1"
Style="{StaticResource SettingsCategoryCardStyle}">
<Grid ColumnSpacing="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel Spacing="4">
<TextBlock FontSize="13"
FontWeight="SemiBold"
Text="Profile" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="Reset the local operator profile and clear persisted app data." />
</StackPanel>
<Border Grid.Column="1"
Style="{StaticResource StatusChipStyle}"
Visibility="{Binding IsProfileSectionSelected}">
<TextBlock FontSize="10"
FontWeight="SemiBold"
Text="Open" />
</Border>
</Grid>
</Border>
</Grid>
</Button>
</StackPanel>
</Grid>
</Border>
<Border Grid.Column="1"
Style="{StaticResource SettingsSurfacePanelStyle}">
<ScrollViewer HorizontalScrollBarVisibility="Disabled"
VerticalScrollBarVisibility="Auto">
<StackPanel Margin="20"
Spacing="18">
<StackPanel Visibility="{Binding ShowProvidersSection}"
Spacing="18">
<StackPanel Spacing="4">
<TextBlock Style="{StaticResource SettingsSectionTitleTextStyle}"
Text="Provider settings" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="Select a local provider, review readiness, and manage enablement before creating agents." />
</StackPanel>
<Grid ColumnSpacing="18">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="292" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border Style="{StaticResource SettingsCategoryCardStyle}"
Padding="0">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackPanel Margin="18,18,18,14"
Spacing="4">
<TextBlock Style="{StaticResource ChatSectionTitleTextStyle}"
Text="Available providers" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="Pick one provider to inspect its local runtime state." />
</StackPanel>
<ScrollViewer Grid.Row="1"
HorizontalScrollBarVisibility="Disabled"
VerticalScrollBarVisibility="Auto">
<StackPanel Margin="18,0,18,18">
<ItemsControl AutomationProperties.AutomationId="ProviderList"
ItemsSource="{Binding Providers}">
<ItemsControl.ItemTemplate>
<DataTemplate x:DataType="presentation:ProviderStatusItem">
<Button AutomationProperties.AutomationId="{x:Bind AutomationId}"
Click="OnProviderButtonClick"
Tag="{x:Bind}"
Margin="0,0,0,10"
Style="{StaticResource SettingsNavButtonStyle}">
<Grid ColumnSpacing="10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Border Width="4"
CornerRadius="2"
Background="{StaticResource AppPrimaryTextBrush}"
Visibility="{x:Bind IsSelected}" />
<Border Grid.Column="1"
Style="{StaticResource SettingsCategoryCardStyle}">
<Grid ColumnSpacing="8">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel Spacing="4">
<TextBlock FontSize="13"
FontWeight="SemiBold"
Text="{x:Bind DisplayName}" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="{x:Bind StatusSummary}" />
</StackPanel>
<Border Grid.Column="1"
Style="{StaticResource StatusChipStyle}"
Visibility="{x:Bind IsSelected}">
<TextBlock FontSize="10"
FontWeight="SemiBold"
Text="Selected" />
</Border>
</Grid>
</Border>
</Grid>
</Button>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</StackPanel>
</ScrollViewer>
</Grid>
</Border>
<Border Grid.Column="1"
Style="{StaticResource SettingsCategoryCardStyle}">
<StackPanel Spacing="16">
<StackPanel Spacing="4">
<TextBlock Style="{StaticResource ChatComposerLabelTextStyle}"
Text="Selected provider" />
<TextBlock AutomationProperties.AutomationId="SelectedProviderTitle"
Style="{StaticResource SettingsSectionTitleTextStyle}"
Text="{Binding SelectedProviderTitle}" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="{Binding SelectedProviderSummary}" />
<TextBlock FontSize="11.5"
Foreground="{StaticResource AppSecondaryTextBrush}"
Text="{Binding SelectedProviderCommandName}" />
</StackPanel>
<Rectangle Style="{StaticResource SectionDividerStyle}" />
<StackPanel Spacing="10"
Visibility="{Binding HasSelectedProviderDetails}">
<TextBlock Style="{StaticResource ChatComposerLabelTextStyle}"
Text="Runtime details" />
<ItemsControl ItemsSource="{Binding SelectedProviderDetails}">
<ItemsControl.ItemTemplate>
<DataTemplate x:DataType="presentation:ProviderDetailItem">
<Border Style="{StaticResource SettingsOptionCardStyle}"
Margin="0,0,0,10">
<StackPanel Spacing="8">
<TextBlock FontSize="12"
FontWeight="SemiBold"
Text="{x:Bind Label}" />
<TextBlock FontSize="12"
FontFamily="{StaticResource AppAccentFontFamily}"
Foreground="{StaticResource AppSecondaryTextBrush}"
Text="{x:Bind Value}"
TextWrapping="WrapWholeWords" />
</StackPanel>
</Border>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</StackPanel>
<StackPanel Spacing="10"
Visibility="{Binding HasSelectedProviderActions}">
<TextBlock Style="{StaticResource ChatComposerLabelTextStyle}"
Text="Actions" />
<ItemsControl ItemsSource="{Binding SelectedProviderActions}">
<ItemsControl.ItemTemplate>
<DataTemplate x:DataType="presentation:ProviderActionItem">
<Border Style="{StaticResource SettingsOptionCardStyle}"
Margin="0,0,0,10">
<Grid ColumnSpacing="14">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel Spacing="4">
<TextBlock FontSize="13"
FontWeight="SemiBold"
Text="{x:Bind Label}" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="{x:Bind Summary}" />
</StackPanel>
<Button Grid.Column="1"
AutomationProperties.AutomationId="ProviderActionButton"
Click="OnProviderActionButtonClick"
Tag="{x:Bind}"
Style="{StaticResource InlineActionButtonStyle}"
VerticalAlignment="Center">
<TextBlock Text="{x:Bind ButtonText}" />
</Button>
</Grid>
</Border>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</StackPanel>
<Grid ColumnSpacing="12">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Button AutomationProperties.AutomationId="ToggleProviderButton"
Click="OnToggleProviderButtonClick"
IsEnabled="{Binding CanToggleSelectedProvider}"
Style="{StaticResource AccentActionButtonStyle}">
<TextBlock Text="{Binding ToggleActionLabel}" />
</Button>
<Button Grid.Column="1"
AutomationProperties.AutomationId="RefreshProvidersButton"
Command="{Binding RefreshCommand}"
Style="{StaticResource SecondaryActionButtonStyle}">
<TextBlock Text="Refresh status" />
</Button>
</Grid>
</StackPanel>
</Border>
</Grid>
</StackPanel>
<StackPanel AutomationProperties.AutomationId="ComposerBehaviorSection"
Visibility="{Binding ShowMessagesSection}"
Spacing="18">
<StackPanel Spacing="4">
<TextBlock Style="{StaticResource SettingsSectionTitleTextStyle}"
Text="Message behavior" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="Choose how the chat composer treats Enter when you draft multi-line prompts." />
</StackPanel>
<Border Style="{StaticResource SettingsOptionCardStyle}">
<StackPanel Spacing="6">
<TextBlock Style="{StaticResource ChatComposerLabelTextStyle}"
Text="Current behavior" />
<TextBlock AutomationProperties.AutomationId="ComposerBehaviorCurrentHint"
Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="{Binding ComposerSendBehaviorHint}" />
</StackPanel>
</Border>
<Button AutomationProperties.AutomationId="ComposerBehaviorEnterSendsButton"
Command="{Binding SelectComposerSendBehaviorCommand}"
CommandParameter="EnterSends"
Style="{StaticResource SettingsNavButtonStyle}">
<Border Style="{StaticResource SettingsOptionCardStyle}">
<Grid ColumnSpacing="12">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel Spacing="4">
<TextBlock FontSize="14"
FontWeight="SemiBold"
Text="{Binding EnterSendsOptionTitle}" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="{Binding EnterSendsOptionSummary}" />
</StackPanel>
<Border Grid.Column="1"
Style="{StaticResource StatusChipStyle}"
Visibility="{Binding IsEnterSendsSelected}">
<TextBlock FontSize="10"
FontWeight="SemiBold"
Text="Selected" />
</Border>
</Grid>
</Border>
</Button>
<Button AutomationProperties.AutomationId="ComposerBehaviorEnterInsertsNewLineButton"
Command="{Binding SelectComposerSendBehaviorCommand}"
CommandParameter="EnterInsertsNewLine"
Style="{StaticResource SettingsNavButtonStyle}">
<Border Style="{StaticResource SettingsOptionCardStyle}">
<Grid ColumnSpacing="12">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<StackPanel Spacing="4">
<TextBlock FontSize="14"
FontWeight="SemiBold"
Text="{Binding EnterInsertsNewLineOptionTitle}" />
<TextBlock Style="{StaticResource SettingsSectionSubtitleTextStyle}"
Text="{Binding EnterInsertsNewLineOptionSummary}" />
</StackPanel>
<Border Grid.Column="1"
Style="{StaticResource StatusChipStyle}"
Visibility="{Binding IsEnterInsertsNewLineSelected}">
<TextBlock FontSize="10"
FontWeight="SemiBold"
Text="Selected" />
</Border>
</Grid>
</Border>
</Button>
</StackPanel>
<controls:ProfileSettingsSection />
<Border Style="{StaticResource SettingsOptionCardStyle}">
<TextBlock AutomationProperties.AutomationId="ProviderStatusMessage"
FontSize="12"
Foreground="{StaticResource AppMutedTextBrush}"
Text="{Binding StatusMessage}"
TextWrapping="WrapWholeWords" />
</Border>
</StackPanel>
</ScrollViewer>
</Border>
</Grid>
</UserControl>