- added search box for vending machine ui. WARNING! needs refactoring. or not

This commit is contained in:
Іван Оніщенко
2024-12-14 02:06:20 +03:00
parent ef466ba89a
commit 7eea717fe5
3 changed files with 39 additions and 8 deletions

View File

@@ -15,10 +15,11 @@ namespace Content.Client.VendingMachines
[ViewVariables]
private List<int> _cachedFilteredIndex = new();
private VendingMachineComponent component = new();//WD edit
public VendingMachineBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey)
{
}
protected override void Open()
{
base.Open();
@@ -26,7 +27,7 @@ namespace Content.Client.VendingMachines
var vendingMachineSys = EntMan.System<VendingMachineSystem>();
// WD EDIT START
var component = EntMan.GetComponent<VendingMachineComponent>(Owner);
component = EntMan.GetComponent<VendingMachineComponent>(Owner);
_cachedInventory = vendingMachineSys.GetAllInventory(Owner, component);
_menu = new VendingMenu { Title = EntMan.GetComponent<MetaDataComponent>(Owner).EntityName };
@@ -34,6 +35,7 @@ namespace Content.Client.VendingMachines
_menu.OnClose += Close;
_menu.OnItemSelected += OnItemSelected;
_menu.OnWithdraw += SendMessage;
_menu.SearchBar.OnTextChanged += UpdateFilter;
// WD EDIT END
_menu.Populate(_cachedInventory, component.PriceMultiplier, component.Credits);
@@ -41,6 +43,24 @@ namespace Content.Client.VendingMachines
_menu.OpenCenteredLeft();
}
// WD EDIT START
private void UpdateFilter(Robust.Client.UserInterface.Controls.LineEdit.LineEditEventArgs obj)
{
if (_menu != null)
{
_menu.filter = obj.Text;
_menu.Populate(_cachedInventory, component.PriceMultiplier, component.Credits);
}
}
// WD EDIT END
protected override void UpdateState(BoundUserInterfaceState state)
{
base.UpdateState(state);
@@ -84,7 +104,7 @@ namespace Content.Client.VendingMachines
private void OnSearchChanged(string? filter)
{
//_menu?.Populate(_cachedInventory, out _cachedFilteredIndex, filter);
//_menu?.filter = (filter ?? "");
}
}
}