using System; using System.Diagnostics.CodeAnalysis; using System.Reflection; using Avalonia; using Avalonia.Controls; using Avalonia.Controls.Primitives; using Avalonia.Interactivity; using Avalonia.Styling; using Avalonia.Threading; using FluentAvalonia.UI.Controls; using StabilityMatrix.Avalonia.ViewModels; using StabilityMatrix.Avalonia.ViewModels.Dialogs; namespace StabilityMatrix.Avalonia.Controls; [SuppressMessage("ReSharper", "MemberCanBePrivate.Global")] [SuppressMessage("ReSharper", "PropertyCanBeMadeInitOnly.Global")] public class BetterContentDialog : ContentDialog { #region Reflection Shenanigans for setting content dialog result [NotNull] protected static readonly FieldInfo? ResultField = typeof(ContentDialog).GetField( "_result",BindingFlags.Instance | BindingFlags.NonPublic); protected ContentDialogResult Result { get => (ContentDialogResult) ResultField.GetValue(this)!; set => ResultField.SetValue(this, value); } [NotNull] protected static readonly MethodInfo? HideCoreMethod = typeof(ContentDialog).GetMethod( "HideCore", BindingFlags.Instance | BindingFlags.NonPublic); protected void HideCore() { HideCoreMethod.Invoke(this, null); } static BetterContentDialog() { if (ResultField is null) throw new NullReferenceException( "ResultField was not resolved"); if (HideCoreMethod is null) throw new NullReferenceException( "HideCoreMethod was not resolved"); } #endregion protected override Type StyleKeyOverride { get; } = typeof(ContentDialog); public static readonly StyledProperty IsFooterVisibleProperty = AvaloniaProperty.Register( "IsFooterVisible", true); public bool IsFooterVisible { get => GetValue(IsFooterVisibleProperty); set => SetValue(IsFooterVisibleProperty, value); } public static readonly StyledProperty ContentVerticalScrollBarVisibilityProperty = AvaloniaProperty.Register( "ContentScrollBarVisibility", ScrollBarVisibility.Auto); public ScrollBarVisibility ContentVerticalScrollBarVisibility { get => GetValue(ContentVerticalScrollBarVisibilityProperty); set => SetValue(ContentVerticalScrollBarVisibilityProperty, value); } public static readonly StyledProperty MaxDialogWidthProperty = AvaloniaProperty.Register( "MaxDialogWidth"); public double MaxDialogWidth { get => GetValue(MaxDialogWidthProperty); set => SetValue(MaxDialogWidthProperty, value); } public BetterContentDialog() { AddHandler(LoadedEvent, OnLoaded); } private void TryBindButtons() { if ((Content as Control)?.DataContext is not ContentDialogViewModelBase viewModel) return; viewModel.PrimaryButtonClick += OnDialogButtonClick; viewModel.SecondaryButtonClick += OnDialogButtonClick; viewModel.CloseButtonClick += OnDialogButtonClick; } protected void OnDialogButtonClick(object? sender, ContentDialogResult e) { Result = e; HideCore(); } protected override void OnDataContextChanged(EventArgs e) { base.OnDataContextChanged(e); TryBindButtons(); } private void OnLoaded(object? sender, RoutedEventArgs? e) { TryBindButtons(); // Find the named grid // https://github.com/amwx/FluentAvalonia/blob/master/src/FluentAvalonia/Styling/ // ControlThemes/FAControls/ContentDialogStyles.axaml#L96 var border = VisualChildren[0] as Border; var panel = border?.Child as Panel; var faBorder = panel?.Children[0] as FABorder; // Set widths if (MaxDialogWidth > 0) { faBorder!.MaxWidth = MaxDialogWidth; } var border2 = faBorder?.Child as Border; // Named Grid 'DialogSpace' if (border2?.Child is not Grid dialogSpaceGrid) throw new InvalidOperationException("Could not find DialogSpace grid"); var scrollViewer = dialogSpaceGrid.Children[0] as ScrollViewer; var actualBorder = dialogSpaceGrid.Children[1] as Border; // Get the parent border, which is what we want to hide if (scrollViewer is null || actualBorder is null) { throw new InvalidOperationException("Could not find parent border"); } var subBorder = scrollViewer.Content as Border; var subGrid = subBorder?.Child as Grid; if (subGrid is null) throw new InvalidOperationException("Could not find sub grid"); var contentControlTitle = subGrid.Children[0] as ContentControl; // Hide title if empty if (Title is null) { contentControlTitle!.IsVisible = false; } // Set footer and scrollbar visibility states actualBorder.IsVisible = IsFooterVisible; scrollViewer.VerticalScrollBarVisibility = ContentVerticalScrollBarVisibility; // Also call the vm's OnLoad if (Content is Control {DataContext: ViewModelBase viewModel}) { viewModel.OnLoaded(); Dispatcher.UIThread.InvokeAsync( async () => await viewModel.OnLoadedAsync()); } } }