 d48dcaf555
			
		
	
	d48dcaf555
	
	
	
		
			
			minor refactoring add mouseover in main ui fix icon font issues fix uploads/downloads icon alignment fix code dupe use fixed width icon handle, update deps Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Dalamud.Interface;
 | |
| using Dalamud.Interface.Utility;
 | |
| using Dalamud.Interface.Utility.Raii;
 | |
| using ImGuiNET;
 | |
| using MareSynchronos.Services;
 | |
| using MareSynchronos.Services.Mediator;
 | |
| using Microsoft.Extensions.Logging;
 | |
| using System.Numerics;
 | |
| 
 | |
| namespace MareSynchronos.UI.Components.Popup;
 | |
| 
 | |
| public class PopupHandler : WindowMediatorSubscriberBase
 | |
| {
 | |
|     protected bool _openPopup = false;
 | |
|     private readonly HashSet<IPopupHandler> _handlers;
 | |
|     private readonly UiSharedService _uiSharedService;
 | |
|     private IPopupHandler? _currentHandler = null;
 | |
| 
 | |
|     public PopupHandler(ILogger<PopupHandler> logger, MareMediator mediator, IEnumerable<IPopupHandler> popupHandlers,
 | |
|         PerformanceCollectorService performanceCollectorService, UiSharedService uiSharedService)
 | |
|         : base(logger, mediator, "MarePopupHandler", performanceCollectorService)
 | |
|     {
 | |
|         Flags = ImGuiWindowFlags.NoBringToFrontOnFocus
 | |
|           | ImGuiWindowFlags.NoDecoration
 | |
|           | ImGuiWindowFlags.NoInputs
 | |
|           | ImGuiWindowFlags.NoSavedSettings
 | |
|           | ImGuiWindowFlags.NoBackground
 | |
|           | ImGuiWindowFlags.NoMove
 | |
|           | ImGuiWindowFlags.NoNav
 | |
|           | ImGuiWindowFlags.NoTitleBar
 | |
|           | ImGuiWindowFlags.NoFocusOnAppearing;
 | |
| 
 | |
|         IsOpen = true;
 | |
| 
 | |
|         _handlers = popupHandlers.ToHashSet();
 | |
| 
 | |
|         Mediator.Subscribe<OpenReportPopupMessage>(this, (msg) =>
 | |
|         {
 | |
|             _openPopup = true;
 | |
|             _currentHandler = _handlers.OfType<ReportPopupHandler>().Single();
 | |
|             ((ReportPopupHandler)_currentHandler).Open(msg);
 | |
|             IsOpen = true;
 | |
|         });
 | |
| 
 | |
|         Mediator.Subscribe<OpenBanUserPopupMessage>(this, (msg) =>
 | |
|         {
 | |
|             _openPopup = true;
 | |
|             _currentHandler = _handlers.OfType<BanUserPopupHandler>().Single();
 | |
|             ((BanUserPopupHandler)_currentHandler).Open(msg);
 | |
|             IsOpen = true;
 | |
|         });
 | |
|         _uiSharedService = uiSharedService;
 | |
|     }
 | |
| 
 | |
|     protected override void DrawInternal()
 | |
|     {
 | |
|         if (_currentHandler == null) return;
 | |
| 
 | |
|         if (_openPopup)
 | |
|         {
 | |
|             ImGui.OpenPopup(WindowName);
 | |
|             _openPopup = false;
 | |
|         }
 | |
| 
 | |
|         var viewportSize = ImGui.GetWindowViewport().Size;
 | |
|         ImGui.SetNextWindowSize(_currentHandler!.PopupSize * ImGuiHelpers.GlobalScale);
 | |
|         ImGui.SetNextWindowPos(viewportSize / 2, ImGuiCond.Always, new Vector2(0.5f));
 | |
|         using var popup = ImRaii.Popup(WindowName, ImGuiWindowFlags.Modal);
 | |
|         if (!popup) return;
 | |
|         _currentHandler.DrawContent();
 | |
|         if (_currentHandler.ShowClose)
 | |
|         {
 | |
|             ImGui.Separator();
 | |
|             if (_uiSharedService.IconTextButton(FontAwesomeIcon.Times, "Close"))
 | |
|             {
 | |
|                 ImGui.CloseCurrentPopup();
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| } |