Show last updated time on Inventory tab
This commit is contained in:
parent
9250044c60
commit
3ce9405ada
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Dalamud.NET.Sdk/9.0.2">
|
<Project Sdk="Dalamud.NET.Sdk/9.0.2">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>5.6</Version>
|
<Version>5.7</Version>
|
||||||
<OutputPath>dist</OutputPath>
|
<OutputPath>dist</OutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
@ -22,6 +22,7 @@ internal sealed class InventoryTab : ITab
|
|||||||
private readonly IPluginLog _pluginLog;
|
private readonly IPluginLog _pluginLog;
|
||||||
|
|
||||||
private List<TreeNode>? _listAsTrees;
|
private List<TreeNode>? _listAsTrees;
|
||||||
|
private DateTime? _lastUpdate;
|
||||||
|
|
||||||
public InventoryTab(Configuration configuration, AllaganToolsIpc allaganToolsIpc, GameCache gameCache,
|
public InventoryTab(Configuration configuration, AllaganToolsIpc allaganToolsIpc, GameCache gameCache,
|
||||||
IPluginLog pluginLog)
|
IPluginLog pluginLog)
|
||||||
@ -38,6 +39,7 @@ internal sealed class InventoryTab : ITab
|
|||||||
if (!tab)
|
if (!tab)
|
||||||
{
|
{
|
||||||
_listAsTrees = null;
|
_listAsTrees = null;
|
||||||
|
_lastUpdate = null;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -47,6 +49,16 @@ internal sealed class InventoryTab : ITab
|
|||||||
if (ImGuiComponents.IconButtonWithText(FontAwesomeIcon.Redo, "Refresh"))
|
if (ImGuiComponents.IconButtonWithText(FontAwesomeIcon.Redo, "Refresh"))
|
||||||
RefreshInventory();
|
RefreshInventory();
|
||||||
|
|
||||||
|
if (_lastUpdate != null)
|
||||||
|
{
|
||||||
|
string text = $"Last Update: {_lastUpdate:t}";
|
||||||
|
ImGui.SameLine();
|
||||||
|
|
||||||
|
ImGui.SameLine(ImGui.GetContentRegionAvail().X - ImGui.CalcTextSize(text).X + ImGui.GetCursorPosX());
|
||||||
|
ImGui.AlignTextToFramePadding();
|
||||||
|
ImGui.TextColored(ImGuiColors.DalamudGrey, text);
|
||||||
|
}
|
||||||
|
|
||||||
ImGui.Separator();
|
ImGui.Separator();
|
||||||
|
|
||||||
if (_listAsTrees == null || _listAsTrees.Count == 0)
|
if (_listAsTrees == null || _listAsTrees.Count == 0)
|
||||||
@ -167,6 +179,7 @@ internal sealed class InventoryTab : ITab
|
|||||||
}
|
}
|
||||||
|
|
||||||
_listAsTrees = listAsTrees;
|
_listAsTrees = listAsTrees;
|
||||||
|
_lastUpdate = DateTime.Now;
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user