mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Manipulating active notifications must be done on the Avalonia UI thread. UpdateNotification and CloseNotification were not properly doing this. Any plugin attempting to use persistent notifications would have encountered these errors. NOTE: There is not yet hooks for cleaning up persistent/infinite timeout notifications when the APP is closed.
72 lines
2.2 KiB
C#
72 lines
2.2 KiB
C#
using Observatory.Framework;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Observatory.UI.Views;
|
|
using Observatory.UI.ViewModels;
|
|
|
|
namespace Observatory.NativeNotification
|
|
{
|
|
public class NativePopup
|
|
{
|
|
// TODO: This needs to be cleaned up when the app is closed.
|
|
private Dictionary<Guid, NotificationView> notifications;
|
|
|
|
public NativePopup()
|
|
{
|
|
notifications = new();
|
|
}
|
|
|
|
public Guid InvokeNativeNotification(NotificationArgs notificationArgs)
|
|
{
|
|
var notificationGuid = Guid.NewGuid();
|
|
Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() =>
|
|
{
|
|
var notifyWindow = new NotificationView(notificationGuid) { DataContext = new NotificationViewModel(notificationArgs) };
|
|
notifyWindow.Closed += NotifyWindow_Closed;
|
|
|
|
foreach (var notification in notifications)
|
|
{
|
|
notification.Value.AdjustOffset(true);
|
|
}
|
|
|
|
notifications.Add(notificationGuid, notifyWindow);
|
|
notifyWindow.Show();
|
|
});
|
|
|
|
return notificationGuid;
|
|
}
|
|
|
|
private void NotifyWindow_Closed(object sender, EventArgs e)
|
|
{
|
|
var currentNotification = (NotificationView)sender;
|
|
|
|
if (notifications.ContainsKey(currentNotification.Guid))
|
|
{
|
|
notifications.Remove(currentNotification.Guid);
|
|
}
|
|
}
|
|
|
|
public void CloseNotification(Guid guid)
|
|
{
|
|
if (notifications.ContainsKey(guid))
|
|
{
|
|
Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() =>
|
|
{
|
|
notifications[guid].Close();
|
|
});
|
|
}
|
|
}
|
|
|
|
public void UpdateNotification(Guid guid, NotificationArgs notificationArgs)
|
|
{
|
|
if (notifications.ContainsKey(guid))
|
|
{
|
|
Avalonia.Threading.Dispatcher.UIThread.InvokeAsync(() =>
|
|
{
|
|
notifications[guid].DataContext = new NotificationViewModel(notificationArgs);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|