diff --git a/ObservatoryCore/PluginManagement/PluginCore.cs b/ObservatoryCore/PluginManagement/PluginCore.cs index 10443cc..3fa0637 100644 --- a/ObservatoryCore/PluginManagement/PluginCore.cs +++ b/ObservatoryCore/PluginManagement/PluginCore.cs @@ -105,21 +105,28 @@ namespace Observatory.PluginManagement //Hacky removal of original empty object if one was used to populate columns if (worker.PluginUI.DataGrid.Count == 2) { - bool allNull = true; - Type itemType = worker.PluginUI.DataGrid[0].GetType(); - foreach (var property in itemType.GetProperties()) - { - if (property.GetValue(worker.PluginUI.DataGrid[0], null) != null) - { - allNull = false; - break; - } - } - - if (allNull) + if (FirstRowIsAllNull(worker)) worker.PluginUI.DataGrid.RemoveAt(0); } + }); + } + /// + /// Adds multiple items to the datagrid on UI thread to ensure visual update. + /// + /// + /// + public void AddGridItems(IObservatoryWorker worker, IEnumerable items) + { + Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() => + { + var cleanEmptyRow = worker.PluginUI.DataGrid.Count == 1 && FirstRowIsAllNull(worker) && items.Count() > 0; + foreach (var item in items) + { + worker.PluginUI.DataGrid.Add(item); + } + if (cleanEmptyRow) + worker.PluginUI.DataGrid.RemoveAt(0); }); } @@ -175,5 +182,21 @@ namespace Observatory.PluginManagement { NativePopup.CloseAll(); } + + private static bool FirstRowIsAllNull(IObservatoryWorker worker) + { + bool allNull = true; + Type itemType = worker.PluginUI.DataGrid[0].GetType(); + foreach (var property in itemType.GetProperties()) + { + if (property.GetValue(worker.PluginUI.DataGrid[0], null) != null) + { + allNull = false; + break; + } + } + + return allNull; + } } } diff --git a/ObservatoryFramework/Interfaces.cs b/ObservatoryFramework/Interfaces.cs index c50d05d..3a1a73b 100644 --- a/ObservatoryFramework/Interfaces.cs +++ b/ObservatoryFramework/Interfaces.cs @@ -156,6 +156,13 @@ namespace Observatory.Framework.Interfaces /// Grid item to be added. Object type should match original template item used to create the grid. public void AddGridItem(IObservatoryWorker worker, object item); + /// + /// Add multiple items to the bottom of the basic UI grid. + /// + /// Reference to the calling plugin's worker interface. + /// Grid items to be added. Object types should match original template item used to create the grid. + public void AddGridItems(IObservatoryWorker worker, IEnumerable items); + /// /// Clears basic UI grid, removing all items. ///