* add jwt expiry * start of 0.9 api impl * some stuff idk * some more impl * some cleanup * remove grouppair, add configuration, rework some pair drawing stuff * do some stuff * rework some ui * I don't even know anymore * add cancellationtoken * token bla * ui fixes etc * probably individual adding/removing now working fully as expected * add working report popup * I guess it's more syncshell shit or so * popup shit idk * work out most of the syncshell bullshit I guess * delete some old crap * are we actually getting closer to the end * update pair info stuff * more fixes/adjustments, idk * refactor some things * some rework * some more cleanup * cleanup * make menu buttons w i d e * better icon text buttons * add all syncshell folder and ordering fixes --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
100 lines
4.4 KiB
C#
100 lines
4.4 KiB
C#
using Dalamud.Interface;
|
|
using Dalamud.Interface.Components;
|
|
using Dalamud.Interface.Utility.Raii;
|
|
using ImGuiNET;
|
|
using MareSynchronos.API.Data.Extensions;
|
|
using MareSynchronos.API.Dto.Group;
|
|
using MareSynchronos.WebAPI;
|
|
using System.Numerics;
|
|
|
|
namespace MareSynchronos.UI.Components.Popup;
|
|
|
|
public class CreateSyncshellPopupHandler : IPopupHandler
|
|
{
|
|
private readonly ApiController _apiController;
|
|
private readonly UiSharedService _uiSharedService;
|
|
private bool _errorGroupCreate;
|
|
private GroupJoinDto? _lastCreatedGroup;
|
|
|
|
public CreateSyncshellPopupHandler(ApiController apiController, UiSharedService uiSharedService)
|
|
{
|
|
_apiController = apiController;
|
|
_uiSharedService = uiSharedService;
|
|
}
|
|
|
|
public Vector2 PopupSize => new(500, 300);
|
|
|
|
public void DrawContent()
|
|
{
|
|
using (ImRaii.PushFont(_uiSharedService.UidFont))
|
|
ImGui.TextUnformatted("Create new Syncshell");
|
|
|
|
if (_lastCreatedGroup == null)
|
|
{
|
|
if (UiSharedService.IconTextButton(FontAwesomeIcon.Plus, "Create Syncshell"))
|
|
{
|
|
try
|
|
{
|
|
_lastCreatedGroup = _apiController.GroupCreate().Result;
|
|
}
|
|
catch
|
|
{
|
|
_lastCreatedGroup = null;
|
|
_errorGroupCreate = true;
|
|
}
|
|
}
|
|
ImGui.SameLine();
|
|
}
|
|
|
|
ImGui.Separator();
|
|
|
|
if (_lastCreatedGroup == null)
|
|
{
|
|
UiSharedService.TextWrapped("Creating a new Syncshell with create it defaulting to your current preferred permissions for Syncshells." + Environment.NewLine +
|
|
"- You can own up to " + _apiController.ServerInfo.MaxGroupsCreatedByUser + " Syncshells on this server." + Environment.NewLine +
|
|
"- You can join up to " + _apiController.ServerInfo.MaxGroupsJoinedByUser + " Syncshells on this server (including your own)" + Environment.NewLine +
|
|
"- Syncshells on this server can have a maximum of " + _apiController.ServerInfo.MaxGroupUserCount + " users");
|
|
ImGui.Dummy(new(2f));
|
|
ImGui.TextUnformatted("Your current Syncshell preferred permissions are:");
|
|
ImGui.TextUnformatted("- Animations");
|
|
UiSharedService.BooleanToColoredIcon(!_apiController.DefaultPermissions!.DisableGroupAnimations);
|
|
ImGui.TextUnformatted("- Sounds");
|
|
UiSharedService.BooleanToColoredIcon(!_apiController.DefaultPermissions!.DisableGroupSounds);
|
|
ImGui.TextUnformatted("- VFX");
|
|
UiSharedService.BooleanToColoredIcon(!_apiController.DefaultPermissions!.DisableGroupVFX);
|
|
UiSharedService.TextWrapped("(Those preferred permissions can be changed anytime after Syncshell creation, your defaults can be changed anytime in the Mare Settings)");
|
|
}
|
|
else
|
|
{
|
|
_errorGroupCreate = false;
|
|
ImGui.TextUnformatted("Syncshell ID: " + _lastCreatedGroup.Group.GID);
|
|
ImGui.AlignTextToFramePadding();
|
|
ImGui.TextUnformatted("Syncshell Password: " + _lastCreatedGroup.Password);
|
|
ImGui.SameLine();
|
|
if (ImGuiComponents.IconButton(FontAwesomeIcon.Copy))
|
|
{
|
|
ImGui.SetClipboardText(_lastCreatedGroup.Password);
|
|
}
|
|
UiSharedService.TextWrapped("You can change the Syncshell password later at any time.");
|
|
ImGui.Separator();
|
|
UiSharedService.TextWrapped("These settings were set based on your preferred syncshell permissions:");
|
|
ImGui.Dummy(new(2f));
|
|
UiSharedService.TextWrapped("Suggest Animation sync:");
|
|
UiSharedService.BooleanToColoredIcon(!_lastCreatedGroup.GroupUserPreferredPermissions.IsDisableAnimations());
|
|
UiSharedService.TextWrapped("Suggest Sounds sync:");
|
|
UiSharedService.BooleanToColoredIcon(!_lastCreatedGroup.GroupUserPreferredPermissions.IsDisableSounds());
|
|
UiSharedService.TextWrapped("Suggest VFX sync:");
|
|
UiSharedService.BooleanToColoredIcon(!_lastCreatedGroup.GroupUserPreferredPermissions.IsDisableVFX());
|
|
}
|
|
|
|
if (_errorGroupCreate)
|
|
{
|
|
UiSharedService.ColorTextWrapped("Something went wrong during creation of a new Syncshell", new Vector4(1, 0, 0, 1));
|
|
}
|
|
}
|
|
|
|
public void Open()
|
|
{
|
|
_lastCreatedGroup = null;
|
|
}
|
|
} |