mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-01 07:39:12 +00:00
387 lines
21 KiB
XML
387 lines
21 KiB
XML
<Window
|
|
x:Class="DiscordChatExporter.Gui.Views.RootView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:behaviors="clr-namespace:DiscordChatExporter.Gui.Behaviors"
|
|
xmlns:componentModel="clr-namespace:System.ComponentModel;assembly=WindowsBase"
|
|
xmlns:converters="clr-namespace:DiscordChatExporter.Gui.Converters"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:s="https://github.com/canton7/Stylet"
|
|
xmlns:viewModels="clr-namespace:DiscordChatExporter.Gui.ViewModels"
|
|
Width="600"
|
|
Height="550"
|
|
MinWidth="325"
|
|
d:DataContext="{d:DesignInstance Type=viewModels:RootViewModel}"
|
|
Background="{DynamicResource MaterialDesignPaper}"
|
|
FocusManager.FocusedElement="{Binding ElementName=TokenValueTextBox}"
|
|
Icon="/DiscordChatExporter;component/favicon.ico"
|
|
Style="{DynamicResource MaterialDesignRoot}"
|
|
WindowStartupLocation="CenterScreen"
|
|
mc:Ignorable="d">
|
|
<Window.TaskbarItemInfo>
|
|
<TaskbarItemInfo ProgressState="Normal" ProgressValue="{Binding ProgressManager.Progress}" />
|
|
</Window.TaskbarItemInfo>
|
|
<Window.Resources>
|
|
<CollectionViewSource x:Key="AvailableChannelsViewSource" Source="{Binding AvailableChannels, Mode=OneWay}">
|
|
<CollectionViewSource.GroupDescriptions>
|
|
<PropertyGroupDescription PropertyName="Category.Name" />
|
|
</CollectionViewSource.GroupDescriptions>
|
|
<CollectionViewSource.SortDescriptions>
|
|
<componentModel:SortDescription Direction="Ascending" PropertyName="Position" />
|
|
<componentModel:SortDescription Direction="Ascending" PropertyName="Name" />
|
|
</CollectionViewSource.SortDescriptions>
|
|
</CollectionViewSource>
|
|
</Window.Resources>
|
|
|
|
<materialDesign:DialogHost SnackbarMessageQueue="{Binding Notifications}" Style="{DynamicResource MaterialDesignEmbeddedDialogHost}">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Toolbar -->
|
|
<Grid Grid.Row="0" Background="{DynamicResource MaterialDesignDarkBackground}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Token and pull data button -->
|
|
<materialDesign:Card
|
|
Grid.Row="0"
|
|
Grid.Column="0"
|
|
Margin="12,12,0,12">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Token type -->
|
|
<ToggleButton
|
|
Grid.Column="0"
|
|
Margin="6"
|
|
IsChecked="{Binding IsBotToken}"
|
|
Style="{StaticResource MaterialDesignFlatActionToggleButton}"
|
|
ToolTip="Switch between user token and bot token">
|
|
<ToggleButton.Content>
|
|
<materialDesign:PackIcon
|
|
Width="24"
|
|
Height="24"
|
|
Kind="Account" />
|
|
</ToggleButton.Content>
|
|
<materialDesign:ToggleButtonAssist.OnContent>
|
|
<materialDesign:PackIcon
|
|
Width="24"
|
|
Height="24"
|
|
Kind="Robot" />
|
|
</materialDesign:ToggleButtonAssist.OnContent>
|
|
</ToggleButton>
|
|
|
|
<!-- Token value -->
|
|
<TextBox
|
|
x:Name="TokenValueTextBox"
|
|
Grid.Column="1"
|
|
Margin="2,6,6,7"
|
|
VerticalAlignment="Bottom"
|
|
materialDesign:HintAssist.Hint="Token"
|
|
materialDesign:TextFieldAssist.DecorationVisibility="Hidden"
|
|
materialDesign:TextFieldAssist.TextBoxViewMargin="0,0,2,0"
|
|
BorderThickness="0"
|
|
FontSize="16"
|
|
Text="{Binding TokenValue, UpdateSourceTrigger=PropertyChanged}" />
|
|
|
|
<!-- Pull data button -->
|
|
<Button
|
|
Grid.Column="2"
|
|
Margin="0,6,6,6"
|
|
Padding="4"
|
|
Command="{s:Action PopulateGuildsAndChannels}"
|
|
IsDefault="True"
|
|
Style="{DynamicResource MaterialDesignFlatButton}"
|
|
ToolTip="Pull available guilds and channels (Enter)">
|
|
<materialDesign:PackIcon
|
|
Width="24"
|
|
Height="24"
|
|
Kind="ArrowRight" />
|
|
</Button>
|
|
</Grid>
|
|
</materialDesign:Card>
|
|
|
|
<!-- Settings button -->
|
|
<Button
|
|
Grid.Column="1"
|
|
Margin="6"
|
|
Padding="4"
|
|
Command="{s:Action ShowSettings}"
|
|
Foreground="{DynamicResource MaterialDesignDarkForeground}"
|
|
Style="{DynamicResource MaterialDesignFlatButton}"
|
|
ToolTip="Settings">
|
|
<Button.Resources>
|
|
<SolidColorBrush x:Key="MaterialDesignFlatButtonClick" Color="#4C4C4C" />
|
|
</Button.Resources>
|
|
<materialDesign:PackIcon
|
|
Width="24"
|
|
Height="24"
|
|
Kind="Settings" />
|
|
</Button>
|
|
</Grid>
|
|
|
|
<!-- Progress bar -->
|
|
<ProgressBar
|
|
Grid.Row="1"
|
|
Background="{DynamicResource MaterialDesignDarkBackground}"
|
|
IsIndeterminate="{Binding IsProgressIndeterminate}"
|
|
Value="{Binding ProgressManager.Progress, Mode=OneWay}" />
|
|
|
|
<!-- Content -->
|
|
<Grid
|
|
Grid.Row="2"
|
|
Background="{DynamicResource MaterialDesignCardBackground}"
|
|
IsEnabled="{Binding IsBusy, Converter={x:Static converters:InverseBoolConverter.Instance}}">
|
|
<Grid.Resources>
|
|
<Style TargetType="TextBlock">
|
|
<Setter Property="FontWeight" Value="Light" />
|
|
</Style>
|
|
</Grid.Resources>
|
|
<!-- Placeholder / usage instructions -->
|
|
<Grid Margin="32,32,8,8" Visibility="{Binding AvailableGuilds, Converter={x:Static s:BoolToVisibilityConverter.InverseInstance}}">
|
|
<!-- For user token -->
|
|
<StackPanel Visibility="{Binding IsBotToken, Converter={x:Static s:BoolToVisibilityConverter.InverseInstance}}">
|
|
<TextBlock FontSize="18" Text="Please provide your user token to authorize" />
|
|
<TextBlock Margin="8,8,0,0" FontSize="14">
|
|
<Run Text="1. Open Discord" />
|
|
<LineBreak />
|
|
<Run Text="2. Press" />
|
|
<Run FontWeight="SemiBold" Text="Ctrl+Shift+I" />
|
|
<Run Text="to show developer tools" />
|
|
<LineBreak />
|
|
<Run Text="3. Navigate to the" />
|
|
<Run FontWeight="SemiBold" Text="Application" />
|
|
<Run Text="tab" />
|
|
<LineBreak />
|
|
<Run Text="4. Select" />
|
|
<Run FontWeight="SemiBold" Text="Local Storage" />
|
|
<Run Text=">" />
|
|
<Run FontWeight="SemiBold" Text="https://discord.com" />
|
|
<Run Text="on the left" />
|
|
<LineBreak />
|
|
<Run Text="5. Press" />
|
|
<Run FontWeight="SemiBold" Text="Ctrl+R" />
|
|
<Run Text="to reload" />
|
|
<LineBreak />
|
|
<Run Text="6. Find" />
|
|
<Run FontWeight="SemiBold" Text="token" />
|
|
<Run Text="at the bottom and copy the value" />
|
|
</TextBlock>
|
|
<TextBlock Margin="0,24,0,0" FontSize="14">
|
|
<Run Text="Automating user accounts is technically against TOS, use at your own risk." />
|
|
<LineBreak />
|
|
<Run Text="To authorize using bot token instead, click" />
|
|
<InlineUIContainer>
|
|
<materialDesign:PackIcon
|
|
Margin="1,0,0,-3"
|
|
Foreground="{DynamicResource PrimaryHueMidBrush}"
|
|
Kind="Account" />
|
|
</InlineUIContainer>
|
|
<Run Text="in the text box above." />
|
|
</TextBlock>
|
|
<TextBlock Margin="0,24,0,0" FontSize="14">
|
|
<Run Text="For more information, check out the" />
|
|
<Hyperlink Command="{s:Action ShowHelp}">wiki</Hyperlink><Run Text="." />
|
|
</TextBlock>
|
|
</StackPanel>
|
|
|
|
<!-- For bot token -->
|
|
<StackPanel Visibility="{Binding IsBotToken, Converter={x:Static s:BoolToVisibilityConverter.Instance}}">
|
|
<TextBlock
|
|
FontSize="18"
|
|
FontWeight="Light"
|
|
Text="Please provide your bot token to authorize" />
|
|
<TextBlock
|
|
Margin="8,8,0,0"
|
|
FontSize="14"
|
|
FontWeight="Light">
|
|
<Run Text="1. Open Discord developer portal" />
|
|
<LineBreak />
|
|
<Run Text="2. Open your application's settings" />
|
|
<LineBreak />
|
|
<Run Text="3. Navigate to the" />
|
|
<Run FontWeight="SemiBold" Text="Bot" />
|
|
<Run Text="section on the left" />
|
|
<LineBreak />
|
|
<Run Text="4. Under" />
|
|
<Run FontWeight="SemiBold" Text="Token" />
|
|
<Run Text="click" />
|
|
<Run FontWeight="SemiBold" Text="Copy" />
|
|
</TextBlock>
|
|
<TextBlock Margin="0,24,0,0" FontSize="14">
|
|
<Run Text="To authorize using user token instead, click" />
|
|
<InlineUIContainer>
|
|
<materialDesign:PackIcon
|
|
Margin="1,0,0,-1"
|
|
Foreground="{DynamicResource PrimaryHueMidBrush}"
|
|
Kind="Robot" />
|
|
</InlineUIContainer>
|
|
<Run Text="in the text box above." />
|
|
</TextBlock>
|
|
<TextBlock Margin="0,24,0,0" FontSize="14">
|
|
<Run Text="For more information, check out the" />
|
|
<Hyperlink Command="{s:Action ShowHelp}">wiki</Hyperlink><Run Text="." />
|
|
</TextBlock>
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
<!-- Guilds and channels -->
|
|
<Grid Background="{DynamicResource MaterialDesignCardBackground}" Visibility="{Binding AvailableGuilds, Converter={x:Static s:BoolToVisibilityConverter.Instance}}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Guilds -->
|
|
<Border
|
|
Grid.Column="0"
|
|
BorderBrush="{DynamicResource MaterialDesignDivider}"
|
|
BorderThickness="0,0,1,0">
|
|
<ListBox
|
|
ItemsSource="{Binding AvailableGuilds}"
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden"
|
|
SelectedItem="{Binding SelectedGuild}"
|
|
SelectionMode="Single">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid
|
|
Margin="-8"
|
|
Background="Transparent"
|
|
Cursor="Hand"
|
|
ToolTip="{Binding Name}">
|
|
<!-- Guild icon placeholder -->
|
|
<Ellipse
|
|
Width="48"
|
|
Height="48"
|
|
Margin="12,4,12,4"
|
|
Fill="{DynamicResource MaterialDesignDivider}" />
|
|
|
|
<!-- Guild icon -->
|
|
<Ellipse
|
|
Width="48"
|
|
Height="48"
|
|
Margin="12,4,12,4"
|
|
Stroke="{DynamicResource MaterialDesignDivider}"
|
|
StrokeThickness="1">
|
|
<Ellipse.Fill>
|
|
<ImageBrush ImageSource="{Binding IconUrl}" />
|
|
</Ellipse.Fill>
|
|
</Ellipse>
|
|
</Grid>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
</Border>
|
|
|
|
<!-- Channels -->
|
|
<Border Grid.Column="1">
|
|
<ListBox
|
|
HorizontalContentAlignment="Stretch"
|
|
ItemsSource="{Binding Source={StaticResource AvailableChannelsViewSource}}"
|
|
SelectionMode="Extended"
|
|
TextSearch.TextPath="Model.Name"
|
|
VirtualizingPanel.IsVirtualizingWhenGrouping="True">
|
|
<i:Interaction.Behaviors>
|
|
<behaviors:ChannelMultiSelectionListBoxBehavior SelectedItems="{Binding SelectedChannels}" />
|
|
</i:Interaction.Behaviors>
|
|
<ListBox.GroupStyle>
|
|
<GroupStyle>
|
|
<GroupStyle.ContainerStyle>
|
|
<Style TargetType="{x:Type GroupItem}">
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate d:DataContext="{x:Type CollectionViewGroup}">
|
|
<Expander
|
|
Margin="0"
|
|
Padding="0"
|
|
Background="Transparent"
|
|
BorderBrush="{DynamicResource MaterialDesignDivider}"
|
|
BorderThickness="0,0,0,1"
|
|
Header="{Binding Name}"
|
|
IsExpanded="False">
|
|
<ItemsPresenter />
|
|
</Expander>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</GroupStyle.ContainerStyle>
|
|
</GroupStyle>
|
|
</ListBox.GroupStyle>
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid Margin="-8" Background="Transparent">
|
|
<Grid.InputBindings>
|
|
<MouseBinding Command="{s:Action ExportChannels}" MouseAction="LeftDoubleClick" />
|
|
</Grid.InputBindings>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Channel icon -->
|
|
<materialDesign:PackIcon
|
|
Grid.Column="0"
|
|
Margin="16,7,0,6"
|
|
VerticalAlignment="Center"
|
|
Kind="Pound" />
|
|
|
|
<!-- Channel name -->
|
|
<TextBlock
|
|
Grid.Column="1"
|
|
Margin="3,8,8,8"
|
|
VerticalAlignment="Center"
|
|
FontSize="14"
|
|
Text="{Binding Name, Mode=OneWay}" />
|
|
|
|
<!-- Is selected checkmark -->
|
|
<materialDesign:PackIcon
|
|
Grid.Column="2"
|
|
Width="24"
|
|
Height="24"
|
|
Margin="8,0"
|
|
VerticalAlignment="Center"
|
|
Kind="Check"
|
|
Visibility="{Binding IsSelected, RelativeSource={RelativeSource AncestorType={x:Type ListBoxItem}}, Converter={x:Static s:BoolToVisibilityConverter.Instance}, Mode=OneWay}" />
|
|
</Grid>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
</Border>
|
|
</Grid>
|
|
|
|
<!-- Export button -->
|
|
<Button
|
|
Margin="32,24"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Bottom"
|
|
Command="{s:Action ExportChannels}"
|
|
Style="{StaticResource MaterialDesignFloatingActionAccentButton}"
|
|
Visibility="{Binding CanExportChannels, Converter={x:Static s:BoolToVisibilityConverter.Instance}}">
|
|
<materialDesign:PackIcon
|
|
Width="32"
|
|
Height="32"
|
|
Kind="Download" />
|
|
</Button>
|
|
|
|
<!-- Notifications snackbar -->
|
|
<materialDesign:Snackbar MessageQueue="{Binding Notifications}" />
|
|
</Grid>
|
|
</Grid>
|
|
</materialDesign:DialogHost>
|
|
</Window> |