pull/826/head
Oleksii Holub 3 years ago
parent e29f08264c
commit aea96d5eba

@ -136,8 +136,7 @@ public class DashboardViewModel : PropertyChangedBase
!IsBusy && !IsBusy &&
_discord is not null && _discord is not null &&
SelectedGuild is not null && SelectedGuild is not null &&
SelectedChannels is not null && SelectedChannels?.Any() is true;
SelectedChannels.Any();
public async void ExportChannels() public async void ExportChannels()
{ {

@ -21,12 +21,11 @@ public class ExportSetupViewModel : DialogScreen
public IReadOnlyList<Channel>? Channels { get; set; } public IReadOnlyList<Channel>? Channels { get; set; }
public bool IsSingleChannel => Channels is null || Channels.Count == 1; public bool IsSingleChannel => Channels?.Count == 1;
public string? OutputPath { get; set; } public string? OutputPath { get; set; }
public IReadOnlyList<ExportFormat> AvailableFormats => public IReadOnlyList<ExportFormat> AvailableFormats { get; } = Enum.GetValues<ExportFormat>();
Enum.GetValues(typeof(ExportFormat)).Cast<ExportFormat>().ToArray();
public ExportFormat SelectedFormat { get; set; } public ExportFormat SelectedFormat { get; set; }
@ -96,12 +95,11 @@ public class ExportSetupViewModel : DialogScreen
_settingsService.LastShouldDownloadMedia = ShouldDownloadMedia; _settingsService.LastShouldDownloadMedia = ShouldDownloadMedia;
// If single channel - prompt file path // If single channel - prompt file path
if (Channels is not null && IsSingleChannel) if (IsSingleChannel)
{ {
var channel = Channels.Single();
var defaultFileName = ExportRequest.GetDefaultOutputFileName( var defaultFileName = ExportRequest.GetDefaultOutputFileName(
Guild!, Guild!,
channel, Channels!.Single(),
SelectedFormat, SelectedFormat,
After?.Pipe(Snowflake.FromDate), After?.Pipe(Snowflake.FromDate),
Before?.Pipe(Snowflake.FromDate) Before?.Pipe(Snowflake.FromDate)

Loading…
Cancel
Save