mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
<!-- This is a semi-strict format, you can add/remove sections as needed but the order/format should be kept the same Remove these comments before submitting --> # Description This adds the Time Transfer Panel that Goobstation uses. This panel enables Admins to do Time Transfers without commands and makes their lives easier. This immediately has access to all playtime trackers and allows an Admin to Add Time and/or Set Time (overwriting the previous time) for any job role. It also enables extra strings since I ported from Wizden upstream as well, which can be seen in the commit history. A thing of note when testing this and using it in a server: the times **DO NOT UPDATE** for Client until your **RELOG**. This is how it works on Goobstation as well. The time adding process is faster and will be easier tool. This is tied to the AdminFlags.Admin so it can be customized on a per-server basis if a custom flag is added. --- # TODO - [x] Port Upstream Role Define. - [x] Port string extras for playtime commands. - [x] Port Time Transfer Panel - [x] Remove Overall (it just doesn't work on Goob either). --- <details><summary><h1>Media</h1></summary> <p>          </p> </details> --- # Changelog 🆑 ADMIN: - add: Add Time Transfer Panel --------- Co-authored-by: BombasterDS <115770678+BombasterDS@users.noreply.github.com> Co-authored-by: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Co-authored-by: flyingkarii <123355664+flyingkarii@users.noreply.github.com> (cherry picked from commit a05bbce7491677a27656fd67ee72fb8dbdb4c53c)
45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
using Content.Client.Eui;
|
|
using Content.Shared._Goobstation.Administration;
|
|
using Content.Shared.Eui;
|
|
|
|
namespace Content.Client._Goobstation.Administration.UI.TimeTransferPanel;
|
|
|
|
public sealed class TimeTransferPanelEui : BaseEui
|
|
{
|
|
public TimeTransferPanel TimeTransferPanel { get; }
|
|
|
|
public TimeTransferPanelEui()
|
|
{
|
|
TimeTransferPanel = new TimeTransferPanel();
|
|
TimeTransferPanel.OnTransferMessageSend += args => SendMessage(new TimeTransferEuiMessage(args.playerId, args.transferList, args.overwrite));
|
|
}
|
|
|
|
public override void Opened()
|
|
{
|
|
TimeTransferPanel.OpenCentered();
|
|
}
|
|
|
|
public override void Closed()
|
|
{
|
|
TimeTransferPanel.Close();
|
|
}
|
|
|
|
public override void HandleState(EuiStateBase state)
|
|
{
|
|
if (state is not TimeTransferPanelEuiState cast)
|
|
return;
|
|
|
|
TimeTransferPanel.UpdateFlag(cast.HasFlag);
|
|
}
|
|
|
|
public override void HandleMessage(EuiMessageBase msg)
|
|
{
|
|
base.HandleMessage(msg);
|
|
|
|
if (msg is not TimeTransferWarningEuiMessage warning)
|
|
return;
|
|
|
|
TimeTransferPanel.UpdateWarning(warning.Message, warning.WarningColor);
|
|
}
|
|
}
|