2024-02-05 23:08:37 -08:00
|
|
|
<UserControl xmlns="https://github.com/avaloniaui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:m="using:SourceGit.Models"
|
|
|
|
xmlns:vm="using:SourceGit.ViewModels"
|
|
|
|
xmlns:v="using:SourceGit.Views"
|
|
|
|
xmlns:c="using:SourceGit.Converters"
|
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
x:Class="SourceGit.Views.Repository"
|
|
|
|
x:DataType="vm:Repository">
|
|
|
|
<Grid RowDefinitions="36,*" Background="{DynamicResource Brush.Window}">
|
|
|
|
<!-- Toolbar -->
|
|
|
|
<Border Grid.Row="0" BorderBrush="{DynamicResource Brush.Border0}" BorderThickness="0,0,0,1" Background="{DynamicResource Brush.ToolBar}">
|
|
|
|
<Grid ColumnDefinitions="*,Auto,*">
|
|
|
|
<StackPanel Grid.Column="0" Orientation="Horizontal" Margin="10,0,0,0">
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding OpenInFileManager}" ToolTip.Tip="{DynamicResource Text.Repository.Explore}">
|
|
|
|
<Path Width="15" Height="13" Data="{StaticResource Icons.Folder.Open}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding OpenInVSCode}" IsVisible="{Binding IsVSCodeFound}" ToolTip.Tip="{DynamicResource Text.Repository.VSCode}">
|
|
|
|
<Path Width="13" Height="13" Data="{StaticResource Icons.VSCode}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding OpenInTerminal}" ToolTip.Tip="{DynamicResource Text.Repository.Terminal}">
|
|
|
|
<Path Width="13" Height="13" Data="{StaticResource Icons.Terminal}"/>
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<StackPanel Grid.Column="1" Orientation="Horizontal">
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding Fetch}" ToolTip.Tip="{DynamicResource Text.Fetch}">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Fetch}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Margin="16,0,0,0" Command="{Binding Pull}" ToolTip.Tip="{DynamicResource Text.Pull}">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Pull}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Margin="16,0,0,0" Command="{Binding Push}" ToolTip.Tip="{DynamicResource Text.Push}">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Push}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Margin="16,0,0,0" Command="{Binding StashAll}" ToolTip.Tip="{DynamicResource Text.Stashes}">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Stashes}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Margin="16,0,0,0" Command="{Binding ApplyPatch}" ToolTip.Tip="{DynamicResource Text.Apply}">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Diff}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Rectangle Width="1" Height="16"
|
|
|
|
Margin="16,0,0,0"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Fill="{DynamicResource Brush.Border2}"/>
|
|
|
|
|
|
|
|
<ToggleButton Width="32"
|
|
|
|
Margin="16,0,0,0"
|
|
|
|
Background="Transparent"
|
|
|
|
IsChecked="{Binding IsSearching, Mode=TwoWay}"
|
|
|
|
ToolTip.Tip="{DynamicResource Text.Repository.Search}">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Search}"/>
|
|
|
|
</ToggleButton>
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<StackPanel Grid.Column="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,0,10,0">
|
|
|
|
<ToggleButton Classes="layout_direction"
|
|
|
|
Width="32" Height="26"
|
|
|
|
Padding="9,6"
|
|
|
|
IsChecked="{Binding Source={x:Static vm:Preference.Instance}, Path=UseTwoColumnsLayoutInHistories, Mode=TwoWay}"
|
|
|
|
IsVisible="{Binding SelectedViewIndex, Converter={x:Static c:IntConverters.IsZero}}"
|
|
|
|
ToolTip.Tip="{DynamicResource Text.Histories.DisplayMode}"/>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding Cleanup}" ToolTip.Tip="{DynamicResource Text.Repository.Clean}">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Clean}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button Classes="icon_button" Width="32" Command="{Binding OpenConfigure}" ToolTip.Tip="{DynamicResource Text.Repository.Configure}">
|
|
|
|
<Path Width="15" Height="15" Data="{StaticResource Icons.Settings1}"/>
|
|
|
|
</Button>
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
<!-- Body -->
|
|
|
|
<Grid Grid.Row="1">
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="250" MinWidth="200" MaxWidth="400"/>
|
|
|
|
<ColumnDefinition Width="1"/>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<!-- Left Normal Mode -->
|
|
|
|
<Grid Grid.Column="0" RowDefinitions="28,Auto,28,Auto,28,*,28,Auto,28,Auto" Margin="0,0,0,4" IsVisible="{Binding !IsSearching}">
|
|
|
|
<!-- WorkingCopy -->
|
|
|
|
<TextBlock Grid.Row="0" Classes="group_header_label" Text="{DynamicResource Text.Repository.Workspace}"/>
|
|
|
|
<ListBox Grid.Row="1" Classes="page_switcher" Background="Transparent" SelectedIndex="{Binding SelectedViewIndex, Mode=TwoWay}">
|
|
|
|
<ListBox.ItemsPanel>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<StackPanel Orientation="Vertical"/>
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</ListBox.ItemsPanel>
|
|
|
|
|
|
|
|
<ListBoxItem Height="28" Padding="0">
|
|
|
|
<StackPanel Margin="16,0,0,0" Orientation="Horizontal">
|
|
|
|
<Path Width="14" Height="14" Data="{StaticResource Icons.Histories}"/>
|
|
|
|
<TextBlock Margin="8,0,0,0" Classes="monospace" FontSize="12" Text="{DynamicResource Text.Histories}"/>
|
|
|
|
</StackPanel>
|
|
|
|
</ListBoxItem>
|
|
|
|
|
|
|
|
<ListBoxItem Height="28" Padding="0">
|
|
|
|
<Grid Margin="16,0,0,0" Height="28" ColumnDefinitions="Auto,*,Auto">
|
|
|
|
<Path Grid.Column="0" Width="14" Height="14" Data="{StaticResource Icons.Send}"/>
|
|
|
|
<TextBlock Grid.Column="1" Classes="monospace" FontSize="12" Margin="8,0,0,0" Text="{DynamicResource Text.WorkingCopy}"/>
|
|
|
|
<Border Grid.Column="2"
|
|
|
|
Margin="6,0"
|
|
|
|
Height="18"
|
|
|
|
CornerRadius="9"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Background="{DynamicResource Brush.Badge}"
|
|
|
|
IsVisible="{Binding WorkingCopyChangesCount, Converter={x:Static c:IntConverters.IsGreaterThanZero}}">
|
|
|
|
<TextBlock Classes="monospace" FontSize="10" HorizontalAlignment="Center" Margin="9,0" Text="{Binding WorkingCopyChangesCount}"/>
|
|
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
</ListBoxItem>
|
|
|
|
|
|
|
|
<ListBoxItem Height="28" Padding="0">
|
|
|
|
<Grid Margin="16,0,0,0" Height="28" ColumnDefinitions="Auto,*,Auto">
|
|
|
|
<Path Grid.Column="0" Width="14" Height="14" Data="{StaticResource Icons.Stashes}"/>
|
|
|
|
<TextBlock Grid.Column="1" Classes="monospace" FontSize="12" Margin="8,0,0,0" Text="{DynamicResource Text.Stashes}"/>
|
|
|
|
<Border Grid.Column="2"
|
|
|
|
Margin="6,0"
|
|
|
|
Height="18"
|
|
|
|
CornerRadius="9"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Background="{DynamicResource Brush.Badge}"
|
|
|
|
IsVisible="{Binding StashesCount, Converter={x:Static c:IntConverters.IsGreaterThanZero}}">
|
|
|
|
<TextBlock Classes="monospace" FontSize="10" HorizontalAlignment="Center" Margin="9,0" Text="{Binding StashesCount}"/>
|
|
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
</ListBoxItem>
|
|
|
|
</ListBox>
|
|
|
|
|
|
|
|
<!-- Local Branches -->
|
|
|
|
<Grid Grid.Row="2" ColumnDefinitions="*,Auto,Auto">
|
|
|
|
<TextBlock Grid.Column="0" Classes="group_header_label" Text="{DynamicResource Text.Repository.LocalBranches}"/>
|
|
|
|
<Button Grid.Column="1" Classes="icon_button" Width="14" Margin="8,0" Click="OpenGitFlowMenu" ToolTip.Tip="{DynamicResource Text.GitFlow}">
|
|
|
|
<Path Width="12" Height="12" Data="{StaticResource Icons.Flow}"/>
|
|
|
|
</Button>
|
|
|
|
<Button Grid.Column="2" Classes="icon_button" Width="14" Margin="0,0,6,0" Command="{Binding CreateNewBranch}" ToolTip.Tip="{DynamicResource Text.Repository.NewBranch}">
|
|
|
|
<Path Width="12" Height="12" Data="{StaticResource Icons.Branch.Add}"/>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
<TreeView Grid.Row="3"
|
|
|
|
x:Name="localBranchTree"
|
|
|
|
MaxHeight="400"
|
|
|
|
ItemsSource="{Binding LocalBranchTrees}"
|
|
|
|
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
|
|
|
LostFocus="OnLocalBranchTreeLostFocus"
|
|
|
|
SelectionChanged="OnLocalBranchTreeSelectionChanged">
|
|
|
|
<TreeView.ItemTemplate>
|
|
|
|
<TreeDataTemplate ItemsSource="{Binding Children}" x:DataType="{x:Type m:BranchTreeNode}">
|
|
|
|
<Grid Height="24" ColumnDefinitions="Auto,*,Auto,Auto" Background="Transparent" ContextRequested="OnLocalBranchContextMenuRequested" DoubleTapped="OnDoubleTappedLocalBranchNode">
|
|
|
|
<Path Grid.Column="0" Classes="folder_icon" Width="10" Height="10" Margin="0,1,0,0" IsVisible="{Binding IsFolder}"/>
|
|
|
|
<Path Grid.Column="0" Width="10" Height="10" Margin="0,2,0,0" Data="{StaticResource Icons.Check}" IsVisible="{Binding IsCurrent}" VerticalAlignment="Center"/>
|
|
|
|
<Path Grid.Column="0" Width="10" Height="10" Data="{StaticResource Icons.Branch}" VerticalAlignment="Center">
|
|
|
|
<Path.IsVisible>
|
|
|
|
<MultiBinding Converter="{x:Static BoolConverters.And}">
|
|
|
|
<Binding Path="!IsFolder"/>
|
|
|
|
<Binding Path="!IsCurrent"/>
|
|
|
|
</MultiBinding>
|
|
|
|
</Path.IsVisible>
|
|
|
|
</Path>
|
|
|
|
<TextBlock Grid.Column="1" Text="{Binding Name}" Classes="monospace" FontSize="12" FontWeight="Bold" Margin="8,0,4,0" IsVisible="{Binding IsCurrent}"/>
|
|
|
|
<TextBlock Grid.Column="1" Text="{Binding Name}" Classes="monospace" FontSize="12" Margin="8,0,4,0" IsVisible="{Binding !IsCurrent}"/>
|
|
|
|
|
|
|
|
<Border Grid.Column="2" Margin="8,0" Height="18" CornerRadius="9" VerticalAlignment="Center" Background="{DynamicResource Brush.Badge}" IsVisible="{Binding IsUpstreamTrackStatusVisible}">
|
|
|
|
<TextBlock Classes="monospace" FontSize="10" HorizontalAlignment="Center" Margin="9,0" Text="{Binding UpstreamTrackStatus}"/>
|
|
|
|
</Border>
|
|
|
|
|
2024-02-06 01:52:16 -08:00
|
|
|
<ToggleButton Grid.Column="3"
|
|
|
|
Classes="filter"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Background="Transparent"
|
|
|
|
IsVisible="{Binding IsBranch}"
|
|
|
|
Checked="OnToggleFilter"
|
|
|
|
Unchecked="OnToggleFilter"
|
|
|
|
IsChecked="{Binding IsFiltered}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
</Grid>
|
|
|
|
</TreeDataTemplate>
|
|
|
|
</TreeView.ItemTemplate>
|
|
|
|
</TreeView>
|
|
|
|
|
|
|
|
<!-- Remotes -->
|
|
|
|
<Grid Grid.Row="4" ColumnDefinitions="*,Auto">
|
|
|
|
<TextBlock Grid.Column="0" Classes="group_header_label" Text="{DynamicResource Text.Repository.Remotes}"/>
|
|
|
|
<Button Grid.Column="1" Classes="icon_button" Width="14" Margin="8,0" Command="{Binding AddRemote}" ToolTip.Tip="{DynamicResource Text.Repository.Remotes.Add}">
|
|
|
|
<Path Width="12" Height="12" Data="{StaticResource Icons.Remote.Add}"/>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
<TreeView Grid.Row="5"
|
|
|
|
x:Name="remoteBranchTree"
|
|
|
|
ItemsSource="{Binding RemoteBranchTrees}"
|
|
|
|
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Auto"
|
|
|
|
LostFocus="OnRemoteBranchTreeLostFocus"
|
|
|
|
SelectionChanged="OnRemoteBranchTreeSelectionChanged">
|
|
|
|
<TreeView.ItemTemplate>
|
|
|
|
<TreeDataTemplate ItemsSource="{Binding Children}" x:DataType="{x:Type m:BranchTreeNode}">
|
|
|
|
<Grid Height="24" ColumnDefinitions="Auto,*,Auto" Background="Transparent" ContextRequested="OnRemoteBranchContextMenuRequested">
|
|
|
|
<Path Grid.Column="0" Classes="folder_icon" Width="10" Height="10" Margin="0,2,0,0" IsVisible="{Binding IsFolder}" VerticalAlignment="Center"/>
|
|
|
|
<Path Grid.Column="0" Width="10" Height="10" Margin="0,4,0,0" Data="{StaticResource Icons.Remote}" IsVisible="{Binding IsRemote}" VerticalAlignment="Center"/>
|
|
|
|
<Path Grid.Column="0" Width="10" Height="10" Data="{StaticResource Icons.Branch}" IsVisible="{Binding IsBranch}" VerticalAlignment="Center"/>
|
2024-02-06 01:52:16 -08:00
|
|
|
|
2024-02-05 23:08:37 -08:00
|
|
|
<TextBlock Grid.Column="1" Text="{Binding Name}" Classes="monospace" FontSize="12" Margin="8,0,4,0"/>
|
2024-02-06 01:52:16 -08:00
|
|
|
|
|
|
|
<ToggleButton Grid.Column="2"
|
|
|
|
Classes="filter"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Background="Transparent"
|
|
|
|
Checked="OnToggleFilter"
|
|
|
|
Unchecked="OnToggleFilter"
|
|
|
|
IsVisible="{Binding IsBranch}"
|
|
|
|
IsChecked="{Binding IsFiltered}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
</Grid>
|
|
|
|
</TreeDataTemplate>
|
|
|
|
</TreeView.ItemTemplate>
|
|
|
|
</TreeView>
|
|
|
|
|
|
|
|
<!-- Tags -->
|
|
|
|
<ToggleButton Grid.Row="6" x:Name="toggleTags" Classes="group_expander">
|
|
|
|
<Grid ColumnDefinitions="Auto,*,Auto">
|
|
|
|
<TextBlock Grid.Column="0" Classes="group_header_label" Margin="4,0,0,0" Text="{DynamicResource Text.Repository.Tags}"/>
|
|
|
|
<TextBlock Grid.Column="1" Text="{Binding Tags, Converter={x:Static c:ListConverters.ToCount}}" Foreground="{DynamicResource Brush.FG2}" FontWeight="Bold"/>
|
|
|
|
<Button Grid.Column="2" Classes="icon_button" Width="14" Margin="8,0" Command="{Binding CreateNewTag}" ToolTip.Tip="{DynamicResource Text.Repository.Tags.Add}">
|
|
|
|
<Path Width="12" Height="12" Data="{StaticResource Icons.Tag.Add}"/>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</ToggleButton>
|
|
|
|
<DataGrid Grid.Row="7"
|
|
|
|
MaxHeight="200"
|
|
|
|
Background="Transparent"
|
|
|
|
ItemsSource="{Binding Tags}"
|
|
|
|
SelectionMode="Single"
|
|
|
|
CanUserReorderColumns="False"
|
|
|
|
CanUserResizeColumns="False"
|
|
|
|
CanUserSortColumns="False"
|
|
|
|
IsReadOnly="True"
|
|
|
|
HeadersVisibility="None"
|
|
|
|
Focusable="False"
|
|
|
|
RowHeight="24"
|
|
|
|
HorizontalScrollBarVisibility="Disabled"
|
|
|
|
VerticalScrollBarVisibility="Auto"
|
|
|
|
LostFocus="OnTagDataGridLostFocus"
|
|
|
|
IsVisible="{Binding #toggleTags.IsChecked}"
|
|
|
|
SelectionChanged="OnTagDataGridSelectionChanged"
|
|
|
|
ContextRequested="OnTagContextRequested">
|
|
|
|
<DataGrid.Columns>
|
|
|
|
<DataGridTemplateColumn Header="ICON">
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate x:DataType="{x:Type m:Tag}">
|
|
|
|
<Path Width="10" Height="10" Margin="16,0,8,0" Data="{StaticResource Icons.Tag}"/>
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
|
|
|
|
<DataGridTemplateColumn Width="*" Header="NAME">
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate x:DataType="{x:Type m:Tag}">
|
2024-02-06 01:52:16 -08:00
|
|
|
<TextBlock Text="{Binding Name}" Classes="monospace" FontSize="12" TextTrimming="CharacterEllipsis" />
|
2024-02-05 23:08:37 -08:00
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
|
|
|
|
<DataGridTemplateColumn Header="FILTER">
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate x:DataType="{x:Type m:Tag}">
|
2024-02-06 01:52:16 -08:00
|
|
|
<ToggleButton Classes="filter"
|
|
|
|
Margin="0,0,8,0"
|
|
|
|
Background="Transparent"
|
|
|
|
Checked="OnToggleFilter"
|
|
|
|
Unchecked="OnToggleFilter"
|
|
|
|
IsChecked="{Binding IsFiltered}"/>
|
2024-02-05 23:08:37 -08:00
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
</DataGrid.Columns>
|
|
|
|
</DataGrid>
|
|
|
|
|
|
|
|
<!-- Submodules -->
|
|
|
|
<ToggleButton Grid.Row="8" x:Name="toggleSubmodules" Classes="group_expander">
|
|
|
|
<Grid ColumnDefinitions="Auto,*,Auto,Auto">
|
|
|
|
<TextBlock Grid.Column="0" Classes="group_header_label" Margin="4,0,0,0" Text="{DynamicResource Text.Repository.Submodules}"/>
|
|
|
|
<TextBlock Grid.Column="1" Text="{Binding Submodules, Converter={x:Static c:ListConverters.ToCount}}" Foreground="{DynamicResource Brush.FG2}" FontWeight="Bold"/>
|
|
|
|
<Button Grid.Column="2"
|
|
|
|
Classes="icon_button"
|
|
|
|
Width="14"
|
|
|
|
Margin="8,0"
|
|
|
|
Click="UpdateSubmodules"
|
|
|
|
IsVisible="{Binding Submodules, Converter={x:Static c:ListConverters.IsNotNullOrEmpty}}"
|
|
|
|
ToolTip.Tip="{DynamicResource Text.Repository.Submodules.Update}">
|
|
|
|
<Path x:Name="iconSubmoduleUpdate" Width="12" Height="12" Data="{StaticResource Icons.Loading}"/>
|
|
|
|
</Button>
|
|
|
|
<Button Grid.Column="3" Classes="icon_button" Width="14" Margin="0,0,8,0" Command="{Binding AddSubmodule}" ToolTip.Tip="{DynamicResource Text.Repository.Submodules.Add}">
|
|
|
|
<Path Width="12" Height="12" Data="{StaticResource Icons.Submodule}"/>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</ToggleButton>
|
|
|
|
<DataGrid Grid.Row="9"
|
|
|
|
MaxHeight="200"
|
|
|
|
Background="Transparent"
|
|
|
|
ItemsSource="{Binding Submodules}"
|
|
|
|
SelectionMode="Single"
|
|
|
|
CanUserReorderColumns="False"
|
|
|
|
CanUserResizeColumns="False"
|
|
|
|
CanUserSortColumns="False"
|
|
|
|
IsReadOnly="True"
|
|
|
|
HeadersVisibility="None"
|
|
|
|
Focusable="False"
|
|
|
|
RowHeight="26"
|
|
|
|
HorizontalScrollBarVisibility="Disabled"
|
|
|
|
VerticalScrollBarVisibility="Auto"
|
|
|
|
ContextRequested="OnSubmoduleContextRequested"
|
|
|
|
IsVisible="{Binding #toggleSubmodules.IsChecked}">
|
|
|
|
<DataGrid.Columns>
|
|
|
|
<DataGridTemplateColumn Header="ICON">
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Path Width="10" Height="10" Margin="16,0,8,0" Data="{StaticResource Icons.Submodule}"/>
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
|
|
|
|
<DataGridTemplateColumn Width="*" Header="NAME">
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock Text="{Binding}" Classes="monospace" FontSize="12"/>
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
</DataGrid.Columns>
|
|
|
|
</DataGrid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<!-- Left Search Mode -->
|
|
|
|
<Grid Grid.Column="0" RowDefinitions="32,*" IsVisible="{Binding IsSearching}">
|
|
|
|
<!-- Search -->
|
|
|
|
<Grid Grid.Row="0" ColumnDefinitions="Auto,*" Margin="4,2">
|
|
|
|
<Button Grid.Column="0"
|
|
|
|
Classes="icon_button"
|
|
|
|
Width="32"
|
|
|
|
Command="{Binding ExitSearchMode}">
|
|
|
|
<Path Width="16" Height="16" Data="{StaticResource Icons.Goback}"/>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Grid Grid.Column="1">
|
|
|
|
<TextBox Grid.Column="1"
|
|
|
|
Padding="22,0"
|
|
|
|
FontSize="12"
|
|
|
|
Height="24"
|
|
|
|
Background="{DynamicResource Brush.Contents}"
|
|
|
|
BorderBrush="{DynamicResource Brush.Border2}"
|
|
|
|
BorderThickness="1"
|
|
|
|
CornerRadius="12"
|
|
|
|
Watermark="{DynamicResource Text.Repository.SearchTip}"
|
|
|
|
Text="{Binding SearchCommitFilter, Mode=TwoWay}"
|
|
|
|
KeyDown="OnSearchKeyDown"/>
|
|
|
|
<Path Width="14" Height="14"
|
|
|
|
Margin="6,0,0,0"
|
|
|
|
Fill="{DynamicResource Brush.FG2}"
|
|
|
|
Data="{StaticResource Icons.Search}"
|
|
|
|
HorizontalAlignment="Left"/>
|
|
|
|
<Button Classes="icon_button"
|
|
|
|
Width="16"
|
|
|
|
Margin="0,0,6,0"
|
|
|
|
Command="{Binding ClearSearchCommitFilter}"
|
|
|
|
IsVisible="{Binding SearchCommitFilter, Converter={x:Static StringConverters.IsNotNullOrEmpty}}"
|
|
|
|
HorizontalAlignment="Right">
|
|
|
|
<Path Width="14" Height="14"
|
|
|
|
Margin="0,1,0,0"
|
|
|
|
Fill="{DynamicResource Brush.FG1}"
|
|
|
|
Data="{StaticResource Icons.Clear}"/>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<DataGrid Grid.Row="1"
|
|
|
|
ItemsSource="{Binding SearchedCommits}"
|
|
|
|
SelectionMode="Single"
|
|
|
|
CanUserReorderColumns="False"
|
|
|
|
CanUserResizeColumns="False"
|
|
|
|
CanUserSortColumns="False"
|
|
|
|
IsReadOnly="True"
|
|
|
|
HeadersVisibility="None"
|
|
|
|
Focusable="False"
|
|
|
|
RowHeight="50"
|
|
|
|
BorderThickness="1"
|
|
|
|
BorderBrush="{DynamicResource Brush.Border2}"
|
|
|
|
Background="{DynamicResource Brush.Contents}"
|
|
|
|
Margin="4"
|
|
|
|
HorizontalScrollBarVisibility="Disabled"
|
|
|
|
VerticalScrollBarVisibility="Auto"
|
|
|
|
SelectionChanged="OnSearchResultDataGridSelectionChanged">
|
|
|
|
<DataGrid.Columns>
|
|
|
|
<DataGridTemplateColumn Width="*">
|
|
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
|
|
<DataTemplate DataType="m:Commit">
|
|
|
|
<Border BorderBrush="{DynamicResource Brush.Border2}" BorderThickness="0,0,0,1" Padding="4">
|
|
|
|
<Grid RowDefinitions="Auto,*">
|
|
|
|
<Grid Grid.Row="0" ColumnDefinitions="Auto,*,Auto,Auto">
|
|
|
|
<v:Avatar Width="16" Height="16"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
IsHitTestVisible="False"
|
|
|
|
User="{Binding Author}"
|
|
|
|
FallbackFontFamily="{StaticResource JetBrainsMono}"/>
|
|
|
|
<TextBlock Grid.Column="1" FontSize="12" Text="{Binding Author.Name}" Margin="8,0,0,0"/>
|
|
|
|
<TextBlock Grid.Column="2" FontSize="12" Text="{Binding SHA, Converter={x:Static c:StringConverters.ToShortSHA}}" Foreground="DarkOrange" Margin="8,0,0,0" FontFamily="{StaticResource JetBrainsMono}"/>
|
|
|
|
<TextBlock Grid.Column="3" FontSize="12" Text="{Binding AuthorTimeShortStr}" Foreground="{DynamicResource Brush.FG2}" Margin="8,0,0,0" FontFamily="{StaticResource JetBrainsMono}"/>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<TextBlock Grid.Row="1" Text="{Binding Subject}" FontSize="12" VerticalAlignment="Bottom"/>
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</DataTemplate>
|
|
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
|
|
</DataGridTemplateColumn>
|
|
|
|
</DataGrid.Columns>
|
|
|
|
</DataGrid>
|
|
|
|
|
|
|
|
<Path Grid.Row="1"
|
|
|
|
HorizontalAlignment="Center" VerticalAlignment="Center"
|
|
|
|
Width="48" Height="48"
|
|
|
|
Data="{StaticResource Icons.Empty}"
|
|
|
|
Fill="{DynamicResource Brush.FG2}"
|
|
|
|
IsVisible="{Binding SearchedCommits.Count, Converter={x:Static c:IntConverters.IsZero}}"/>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<GridSplitter Grid.Column="1"
|
|
|
|
Width="1" MinWidth=".5"
|
|
|
|
HorizontalAlignment="Center" VerticalAlignment="Stretch"
|
|
|
|
Background="{DynamicResource Brush.Border0}"/>
|
|
|
|
|
|
|
|
<!-- Right -->
|
|
|
|
<Grid Grid.Column="2" RowDefinitions="Auto,*">
|
|
|
|
<Grid Height="26" Grid.Row="0" ColumnDefinitions="*,Auto,Auto,Auto" Background="{DynamicResource Brush.Conflict}" IsVisible="{Binding IsConflictBarVisible}">
|
|
|
|
<TextBlock Grid.Column="0" Margin="8,0" FontWeight="Bold" Foreground="{DynamicResource Brush.FG3}" Text="{DynamicResource Text.Conflict.Tip}"/>
|
|
|
|
<Button Grid.Column="1" Classes="flat" FontWeight="Regular" Content="{DynamicResource Text.Repository.Resolve}" Height="20" Padding="8,0" Margin="4,0" Command="{Binding GotoResolve}">
|
|
|
|
<Button.IsVisible>
|
|
|
|
<Binding Path="SelectedViewIndex" Converter="{x:Static c:IntConverters.NotEqual}" ConverterParameter="{v:Int 1}"/>
|
|
|
|
</Button.IsVisible>
|
|
|
|
</Button>
|
|
|
|
<Button Grid.Column="2" Classes="flat primary" FontWeight="Regular" Content="{DynamicResource Text.Repository.Continue}" Height="20" Padding="8,0" Margin="4,0" Command="{Binding ContinueMerge}" IsVisible="{Binding !HasUnsolvedConflict}"/>
|
|
|
|
<Button Grid.Column="3" Classes="flat" FontWeight="Regular" Content="{DynamicResource Text.Repository.Abort}" Height="20" Padding="8,0" Margin="4,0" Command="{Binding AbortMerge}"/>
|
|
|
|
</Grid>
|
|
|
|
|
|
|
|
<ContentControl Grid.Row="1" Content="{Binding SelectedView}">
|
|
|
|
<ContentControl.DataTemplates>
|
|
|
|
<DataTemplate DataType="vm:Histories">
|
|
|
|
<v:Histories/>
|
|
|
|
</DataTemplate>
|
|
|
|
|
|
|
|
<DataTemplate DataType="vm:WorkingCopy">
|
|
|
|
<v:WorkingCopy/>
|
|
|
|
</DataTemplate>
|
|
|
|
|
|
|
|
<DataTemplate DataType="vm:StashesPage">
|
|
|
|
<v:StashesPage/>
|
|
|
|
</DataTemplate>
|
|
|
|
</ContentControl.DataTemplates>
|
|
|
|
</ContentControl>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|