using Observatory.Framework; using Observatory.UI; using System; namespace Observatory.NativeNotification { public class NativePopup { private Dictionary notifications; public NativePopup() { notifications = new(); } public Guid InvokeNativeNotification(NotificationArgs notificationArgs) { var notificationGuid = Guid.NewGuid(); Application.OpenForms[0].Invoke(() => { var notification = new NotificationForm(notificationGuid, notificationArgs); notification.FormClosed += NotifyWindow_Closed; foreach(var notificationForm in notifications) { notificationForm.Value.AdjustOffset(true); } notifications.Add(notificationGuid, notification); notification.Show(); }); return notificationGuid; } private void NotifyWindow_Closed(object? sender, EventArgs e) { if (sender != null) { var currentNotification = (NotificationForm)sender; foreach (var notification in notifications.Where(n => n.Value.CreationTime < currentNotification.CreationTime)) { notification.Value.AdjustOffset(false); } if (notifications.ContainsKey(currentNotification.Guid)) { notifications.Remove(currentNotification.Guid); } } } public void CloseNotification(Guid guid) { if (notifications.ContainsKey(guid)) { notifications[guid].Close(); } } public void UpdateNotification(Guid guid, NotificationArgs notificationArgs) { if (notifications.ContainsKey(guid)) { notifications[guid].Update(notificationArgs); } } public void CloseAll() { foreach (var notification in notifications) { notification.Value?.Close(); } } } }