BililiveRecorder/BililiveRecorder.WPF/Pages/RoomListPage.xaml.cs

316 lines
11 KiB
C#
Raw Normal View History

2020-11-27 18:51:02 +08:00
using System;
2020-12-05 18:30:04 +08:00
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
2020-12-10 17:02:56 +08:00
using System.Diagnostics;
2020-11-27 18:51:02 +08:00
using System.Linq;
2020-12-05 18:30:04 +08:00
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
2020-11-27 18:51:02 +08:00
using BililiveRecorder.Core;
using BililiveRecorder.WPF.Controls;
2020-12-05 18:30:04 +08:00
using ModernWpf.Controls;
using NLog;
2020-11-27 18:51:02 +08:00
namespace BililiveRecorder.WPF.Pages
{
/// <summary>
/// Interaction logic for RoomList.xaml
/// </summary>
public partial class RoomListPage
{
2021-01-15 17:41:33 +08:00
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
2020-11-27 18:51:02 +08:00
private static readonly Regex RoomIdRegex
= new Regex(@"^(?:https?:\/\/)?live\.bilibili\.com\/(?:blanc\/|h5\/)?(\d*)(?:\?.*)?$",
RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.Compiled);
2021-01-15 17:41:33 +08:00
private readonly IRecordedRoom[] NullRoom = new IRecordedRoom[] { null };
private readonly KeyIndexMappingReadOnlyList NullRoomWithMapping;
2020-11-27 18:51:02 +08:00
public RoomListPage()
{
2021-01-15 17:41:33 +08:00
this.NullRoomWithMapping = new KeyIndexMappingReadOnlyList(this.NullRoom);
this.DataContextChanged += this.RoomListPage_DataContextChanged;
2021-01-01 14:46:27 +08:00
this.InitializeComponent();
2021-01-15 17:41:33 +08:00
}
2020-12-05 18:30:04 +08:00
2021-01-15 17:41:33 +08:00
private void RoomListPage_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e)
{
if (e.OldValue is INotifyCollectionChanged data_old) data_old.CollectionChanged -= this.DataSource_CollectionChanged;
if (e.NewValue is INotifyCollectionChanged data_new) data_new.CollectionChanged += this.DataSource_CollectionChanged;
this.ApplySort();
2020-12-05 18:30:04 +08:00
}
2021-01-15 17:41:33 +08:00
public static readonly DependencyProperty RoomListProperty =
DependencyProperty.Register(
nameof(RoomList),
typeof(object),
typeof(RoomListPage),
new PropertyMetadata(OnPropertyChanged));
public object RoomList
{
get => this.GetValue(RoomListProperty);
set => this.SetValue(RoomListProperty, value);
}
2020-12-05 18:30:04 +08:00
2021-01-15 17:41:33 +08:00
public static readonly DependencyProperty SortByProperty =
DependencyProperty.Register(
nameof(SortBy),
typeof(SortedBy),
typeof(RoomListPage),
new PropertyMetadata(OnPropertyChanged));
2020-12-05 18:30:04 +08:00
2021-01-15 17:41:33 +08:00
public SortedBy SortBy
2020-12-05 18:30:04 +08:00
{
2021-01-15 17:41:33 +08:00
get => (SortedBy)this.GetValue(SortByProperty);
2021-01-18 15:02:42 +08:00
set
2021-01-15 17:41:33 +08:00
{
2021-01-18 15:02:42 +08:00
this.SetValue(SortByProperty, value);
2021-01-15 17:41:33 +08:00
this.ApplySort();
}
}
2020-12-05 18:30:04 +08:00
2021-01-18 15:02:42 +08:00
private static void OnPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) => ((RoomListPage)d).PrivateOnPropertyChanged(e);
private void PrivateOnPropertyChanged(DependencyPropertyChangedEventArgs e) { }
2021-01-15 17:41:33 +08:00
private void DataSource_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e) => this.ApplySort();
private void ApplySort()
{
try
{
if (this.DataContext is not ICollection<IRecordedRoom> data)
{
this.RoomList = this.NullRoomWithMapping;
}
else
{
IEnumerable<IRecordedRoom> orderedData = this.SortBy switch
{
SortedBy.RoomId => data.OrderBy(x => x.ShortRoomId == 0 ? x.RoomId : x.ShortRoomId),
2021-01-18 15:02:42 +08:00
SortedBy.Status => from x in data orderby x.IsRecording descending, x.IsMonitoring descending, x.IsStreaming descending select x,
2021-01-15 17:41:33 +08:00
_ => data,
};
var result = new KeyIndexMappingReadOnlyList(orderedData.Concat(this.NullRoom).ToArray());
this.RoomList = result;
}
}
catch (Exception ex)
{
logger.Error(ex, "Error Sorting");
}
2020-11-27 18:51:02 +08:00
}
private async void RoomCard_DeleteRequested(object sender, EventArgs e)
{
2021-01-01 14:46:27 +08:00
if (this.DataContext is IRecorder rec && sender is IRecordedRoom room)
2020-11-27 18:51:02 +08:00
{
var dialog = new DeleteRoomConfirmDialog
{
DataContext = room
};
var result = await dialog.ShowAsync();
2021-01-15 17:41:33 +08:00
if (result == ContentDialogResult.Primary)
2020-11-27 18:51:02 +08:00
{
rec.RemoveRoom(room);
2020-12-05 18:30:04 +08:00
rec.SaveConfigToFile();
2020-11-27 18:51:02 +08:00
}
}
}
2021-01-01 14:46:27 +08:00
private async void RoomCard_ShowSettingsRequested(object sender, EventArgs e)
{
try
{
await new PerRoomSettingsDialog { DataContext = sender }.ShowAsync();
}
catch (Exception) { }
}
2020-11-27 18:51:02 +08:00
private async void AddRoomCard_AddRoomRequested(object sender, string e)
{
var input = e.Trim();
2021-01-01 14:46:27 +08:00
if (string.IsNullOrWhiteSpace(input) || this.DataContext is not IRecorder rec) return;
2020-11-27 18:51:02 +08:00
if (!int.TryParse(input, out var roomid))
{
var m = RoomIdRegex.Match(input);
if (m.Success && m.Groups.Count > 1 && int.TryParse(m.Groups[1].Value, out var result2))
{
roomid = result2;
}
else
{
2021-01-04 14:01:11 +08:00
await new AddRoomFailedDialog { DataContext = AddRoomFailedDialog.AddRoomFailedErrorText.InvalidInput }.ShowAsync();
2020-11-27 18:51:02 +08:00
return;
}
}
if (roomid < 0)
{
2021-01-04 14:01:11 +08:00
await new AddRoomFailedDialog { DataContext = AddRoomFailedDialog.AddRoomFailedErrorText.RoomIdNegative }.ShowAsync();
2020-11-27 18:51:02 +08:00
return;
}
else if (roomid == 0)
{
2021-01-04 14:01:11 +08:00
await new AddRoomFailedDialog { DataContext = AddRoomFailedDialog.AddRoomFailedErrorText.RoomIdZero }.ShowAsync();
2020-11-27 18:51:02 +08:00
return;
}
if (rec.Any(x => x.RoomId == roomid || x.ShortRoomId == roomid))
{
2021-01-04 14:01:11 +08:00
await new AddRoomFailedDialog { DataContext = AddRoomFailedDialog.AddRoomFailedErrorText.Duplicate }.ShowAsync();
2020-11-27 18:51:02 +08:00
return;
}
rec.AddRoom(roomid);
2020-12-05 18:30:04 +08:00
rec.SaveConfigToFile();
}
private async void MenuItem_EnableAutoRecAll_Click(object sender, RoutedEventArgs e)
{
2021-01-08 12:17:31 +08:00
if (this.DataContext is not IRecorder rec) return;
2020-12-05 18:30:04 +08:00
await Task.WhenAll(rec.ToList().Select(rr => Task.Run(() => rr.Start())));
rec.SaveConfigToFile();
}
private async void MenuItem_DisableAutoRecAll_Click(object sender, RoutedEventArgs e)
{
2021-01-08 12:17:31 +08:00
if (this.DataContext is not IRecorder rec) return;
2020-12-05 18:30:04 +08:00
await Task.WhenAll(rec.ToList().Select(rr => Task.Run(() => rr.Stop())));
rec.SaveConfigToFile();
}
2021-01-15 17:41:33 +08:00
private void MenuItem_SortBy_Click(object sender, RoutedEventArgs e) => this.SortBy = (SortedBy)((MenuItem)sender).Tag;
2020-12-05 18:30:04 +08:00
private void MenuItem_ShowLog_Click(object sender, RoutedEventArgs e)
{
2021-01-01 14:46:27 +08:00
this.Splitter.Visibility = Visibility.Visible;
this.LogElement.Visibility = Visibility.Visible;
this.RoomListRowDefinition.Height = new GridLength(1, GridUnitType.Star);
this.LogRowDefinition.Height = new GridLength(1, GridUnitType.Star);
2020-12-05 18:30:04 +08:00
}
private void MenuItem_HideLog_Click(object sender, RoutedEventArgs e)
{
2021-01-01 14:46:27 +08:00
this.Splitter.Visibility = Visibility.Collapsed;
this.LogElement.Visibility = Visibility.Collapsed;
this.RoomListRowDefinition.Height = new GridLength(1, GridUnitType.Star);
this.LogRowDefinition.Height = new GridLength(0);
2020-12-05 18:30:04 +08:00
}
2021-01-08 12:17:31 +08:00
private void Log_ScrollViewer_Loaded(object sender, RoutedEventArgs e) => (sender as ScrollViewer)?.ScrollToEnd();
2020-12-05 18:30:04 +08:00
private void TextBlock_Copy_MouseRightButtonUp(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
try
{
if (sender is TextBlock textBlock)
{
Clipboard.SetText(textBlock.Text);
}
}
catch (Exception)
{
}
2020-11-27 18:51:02 +08:00
}
2020-12-10 17:02:56 +08:00
private void MenuItem_OpenWorkDirectory_Click(object sender, RoutedEventArgs e)
{
try
{
2021-01-01 14:46:27 +08:00
if (this.DataContext is IRecorder rec)
Process.Start("explorer.exe", rec.Config.Global.WorkDirectory);
2020-12-10 17:02:56 +08:00
}
catch (Exception)
{
}
}
2021-01-08 18:54:50 +08:00
private void MenuItem_ShowHideTitleArea_Click(object sender, RoutedEventArgs e)
{
if (((MenuItem)sender).Tag is bool b && this.DataContext is IRecorder rec)
rec.Config.Global.WpfShowTitleAndArea = b;
}
2020-11-27 18:51:02 +08:00
}
2020-12-05 18:30:04 +08:00
2021-01-15 17:41:33 +08:00
public enum SortedBy
2020-12-05 18:30:04 +08:00
{
None = 0,
RoomId,
Status,
}
2021-01-15 17:41:33 +08:00
internal class KeyIndexMappingReadOnlyList : IReadOnlyList<IRecordedRoom>, IKeyIndexMapping
2020-12-05 18:30:04 +08:00
{
2021-01-15 17:41:33 +08:00
private readonly IReadOnlyList<IRecordedRoom> data;
2020-12-05 18:30:04 +08:00
2021-01-15 17:41:33 +08:00
public KeyIndexMappingReadOnlyList(IReadOnlyList<IRecordedRoom> data)
2020-12-05 18:30:04 +08:00
{
2021-01-15 17:41:33 +08:00
this.data = data;
2020-12-05 18:30:04 +08:00
}
2021-01-15 17:41:33 +08:00
public IRecordedRoom this[int index] => this.data[index];
2020-12-05 18:30:04 +08:00
2021-01-15 17:41:33 +08:00
public int Count => this.data.Count;
2020-12-05 18:30:04 +08:00
2021-01-15 17:41:33 +08:00
public IEnumerator<IRecordedRoom> GetEnumerator() => this.data.GetEnumerator();
IEnumerator IEnumerable.GetEnumerator() => ((IEnumerable)this.data).GetEnumerator();
2020-12-05 18:30:04 +08:00
#region IKeyIndexMapping
private int lastRequestedIndex = IndexNotFound;
private const int IndexNotFound = -1;
// When UniqueIDs are supported, the ItemsRepeater caches the unique ID for each item
// with the matching UIElement that represents the item. When a reset occurs the
// ItemsRepeater pairs up the already generated UIElements with items in the data
// source.
// ItemsRepeater uses IndexForUniqueId after a reset to probe the data and identify
// the new index of an item to use as the anchor. If that item no
// longer exists in the data source it may try using another cached unique ID until
// either a match is found or it determines that all the previously visible items
// no longer exist.
public int IndexFromKey(string uniqueId)
{
// We'll try to increase our odds of finding a match sooner by starting from the
// position that we know was last requested and search forward.
2021-01-01 14:46:27 +08:00
var start = this.lastRequestedIndex;
for (var i = start; i < this.Count; i++)
2020-12-05 18:30:04 +08:00
{
if ((this[i]?.Guid ?? Guid.Empty).Equals(uniqueId))
return i;
}
// Then try searching backward.
2021-01-01 14:46:27 +08:00
start = Math.Min(this.Count - 1, this.lastRequestedIndex);
2020-12-05 18:30:04 +08:00
for (var i = start; i >= 0; i--)
{
if ((this[i]?.Guid ?? Guid.Empty).Equals(uniqueId))
return i;
}
return IndexNotFound;
}
public string KeyFromIndex(int index)
{
var key = this[index]?.Guid ?? Guid.Empty;
2021-01-01 14:46:27 +08:00
this.lastRequestedIndex = index;
2020-12-05 18:30:04 +08:00
return key.ToString();
}
#endregion
}
2020-11-27 18:51:02 +08:00
}