Some checks failed
Release SharePoint Toolbox v2 / release (push) Failing after 14s
v1.1 shipped with 4 phases (25 plans), 10/10 requirements complete: - Global site selection (toolbar picker, all tabs consume) - User access audit (Graph people-picker, direct/group/inherited) - Simplified permissions (plain-language labels, risk levels, detail toggle) - Storage visualization (LiveCharts2 pie/donut + bar charts) Post-phase polish: centralized site selection (removed per-tab pickers), claims prefix stripping, StorageMetrics backfill, chart tooltip fix, summary stats in app + HTML exports. 205 tests passing, 10,484 LOC. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
80 lines
5.2 KiB
XML
80 lines
5.2 KiB
XML
<UserControl x:Class="SharepointToolbox.Views.Tabs.TemplatesView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:loc="clr-namespace:SharepointToolbox.Localization">
|
|
<DockPanel Margin="10">
|
|
<!-- Left panel: Capture and Apply -->
|
|
<StackPanel DockPanel.Dock="Left" Width="320" Margin="0,0,10,0">
|
|
<!-- Capture Section -->
|
|
<GroupBox Header="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.capture]}"
|
|
Margin="0,0,0,10">
|
|
<StackPanel Margin="5">
|
|
<TextBlock Text="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.name]}"
|
|
Margin="0,0,0,3" />
|
|
<TextBox Text="{Binding TemplateName, UpdateSourceTrigger=PropertyChanged}" Margin="0,0,0,10" />
|
|
|
|
<!-- Capture options checkboxes -->
|
|
<TextBlock Text="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.options]}"
|
|
FontWeight="SemiBold" Margin="0,0,0,5" />
|
|
<CheckBox Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.opt.libraries]}"
|
|
IsChecked="{Binding CaptureLibraries}" Margin="0,0,0,3" />
|
|
<CheckBox Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.opt.folders]}"
|
|
IsChecked="{Binding CaptureFolders}" Margin="0,0,0,3" />
|
|
<CheckBox Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.opt.permissions]}"
|
|
IsChecked="{Binding CapturePermissions}" Margin="0,0,0,3" />
|
|
<CheckBox Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.opt.logo]}"
|
|
IsChecked="{Binding CaptureLogo}" Margin="0,0,0,3" />
|
|
<CheckBox Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.opt.settings]}"
|
|
IsChecked="{Binding CaptureSettings}" Margin="0,0,0,10" />
|
|
|
|
<Button Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.capture]}"
|
|
Command="{Binding CaptureCommand}" />
|
|
</StackPanel>
|
|
</GroupBox>
|
|
|
|
<!-- Apply Section -->
|
|
<GroupBox Header="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.apply]}"
|
|
Margin="0,0,0,10">
|
|
<StackPanel Margin="5">
|
|
<TextBlock Text="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.newtitle]}"
|
|
Margin="0,0,0,3" />
|
|
<TextBox Text="{Binding NewSiteTitle, UpdateSourceTrigger=PropertyChanged}" Margin="0,0,0,5" />
|
|
|
|
<TextBlock Text="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.newalias]}"
|
|
Margin="0,0,0,3" />
|
|
<TextBox Text="{Binding NewSiteAlias, UpdateSourceTrigger=PropertyChanged}" Margin="0,0,0,10" />
|
|
|
|
<Button Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.apply]}"
|
|
Command="{Binding ApplyCommand}" />
|
|
</StackPanel>
|
|
</GroupBox>
|
|
|
|
<!-- Progress -->
|
|
<TextBlock Text="{Binding StatusMessage}" TextWrapping="Wrap" Margin="0,5,0,0" />
|
|
</StackPanel>
|
|
|
|
<!-- Right panel: Template list -->
|
|
<DockPanel>
|
|
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Margin="0,0,0,5">
|
|
<TextBlock Text="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.list]}"
|
|
FontWeight="Bold" FontSize="14" VerticalAlignment="Center" Margin="0,0,10,0" />
|
|
<Button Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.rename]}"
|
|
Command="{Binding RenameCommand}" Margin="0,0,5,0" Padding="10,3" />
|
|
<Button Content="{Binding Source={x:Static loc:TranslationSource.Instance}, Path=[templates.delete]}"
|
|
Command="{Binding DeleteCommand}" Padding="10,3" />
|
|
</StackPanel>
|
|
|
|
<DataGrid ItemsSource="{Binding Templates}" SelectedItem="{Binding SelectedTemplate}"
|
|
AutoGenerateColumns="False" IsReadOnly="True"
|
|
SelectionMode="Single" CanUserSortColumns="True">
|
|
<DataGrid.Columns>
|
|
<DataGridTextColumn Header="Name" Binding="{Binding Name}" Width="*" />
|
|
<DataGridTextColumn Header="Type" Binding="{Binding SiteType}" Width="100" />
|
|
<DataGridTextColumn Header="Source" Binding="{Binding SourceUrl}" Width="*" />
|
|
<DataGridTextColumn Header="Captured" Binding="{Binding CapturedAt, StringFormat=yyyy-MM-dd HH:mm}" Width="140" />
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
</DockPanel>
|
|
</DockPanel>
|
|
</UserControl>
|