* add new labels and buttons for records stantion console * add fingerprint fields for server * set buttons and updates for fingerPrints filters * set fingerprints filters * final set for finger prints filters * add new trhaslates for station records computer * some fix for the PR * refactor server side station record console system * add message for filters * add tranlates * add new ui with several filters * updetes prints with server side logic * resolve conflicts with DNA * resolve conflicts with DNA * deleted unused variable and rename some fields * added description for new state * added select for filter * set multiplay filters for the console * added new translates * add class filters & fixed issue with reset line edit * fix dublicate with set the selectId for option button * fixed review notes * fixed review notes forget changet fix name * add event TextEntered for better usability * fixed review notes 3 * fixed formating in xaml * fixed array with _filterTypes * fixed ui and made it in minimalistic style * fixed generalstationRecordFilter class, move method * delete margin after line edit * fix placeholder for lineEdit * fix placeholder for lineEdit, the review note * Revert "fixed generalstationRecordFilter class, move method" This reverts commit 1b35c6ac44e7dafe9a1f0560eb177152b822f20b. * impliment short swith in method IsSkippedRecord * fixed review notes, remaked method IsSkipped and fix casing * fixed the review note about check null record name
205 lines
6.3 KiB
C#
205 lines
6.3 KiB
C#
using System.Linq;
|
|
using Content.Shared.StationRecords;
|
|
using Robust.Client.AutoGenerated;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Client.UserInterface.CustomControls;
|
|
using Robust.Client.UserInterface.XAML;
|
|
|
|
namespace Content.Client.StationRecords;
|
|
|
|
[GenerateTypedNameReferences]
|
|
public sealed partial class GeneralStationRecordConsoleWindow : DefaultWindow
|
|
{
|
|
public Action<StationRecordKey?>? OnKeySelected;
|
|
|
|
public Action<GeneralStationRecordFilterType, string>? OnFiltersChanged;
|
|
|
|
private bool _isPopulating;
|
|
|
|
private GeneralStationRecordFilterType _currentFilterType;
|
|
|
|
public GeneralStationRecordConsoleWindow()
|
|
{
|
|
RobustXamlLoader.Load(this);
|
|
|
|
_currentFilterType = GeneralStationRecordFilterType.Name;
|
|
|
|
foreach (var item in Enum.GetValues<GeneralStationRecordFilterType>())
|
|
{
|
|
StationRecordsFilterType.AddItem(GetTypeFilterLocals(item), (int)item);
|
|
}
|
|
|
|
RecordListing.OnItemSelected += args =>
|
|
{
|
|
if (_isPopulating || RecordListing[args.ItemIndex].Metadata is not StationRecordKey cast)
|
|
{
|
|
return;
|
|
}
|
|
|
|
OnKeySelected?.Invoke(cast);
|
|
};
|
|
|
|
RecordListing.OnItemDeselected += _ =>
|
|
{
|
|
if (!_isPopulating)
|
|
OnKeySelected?.Invoke(null);
|
|
};
|
|
|
|
StationRecordsFilterType.OnItemSelected += eventArgs =>
|
|
{
|
|
var type = (GeneralStationRecordFilterType)eventArgs.Id;
|
|
|
|
if (_currentFilterType != type)
|
|
{
|
|
_currentFilterType = type;
|
|
FilterListingOfRecords();
|
|
}
|
|
};
|
|
|
|
StationRecordsFiltersValue.OnTextEntered += args =>
|
|
{
|
|
FilterListingOfRecords(args.Text);
|
|
};
|
|
|
|
StationRecordsFilters.OnPressed += _ =>
|
|
{
|
|
FilterListingOfRecords(StationRecordsFiltersValue.Text);
|
|
};
|
|
|
|
StationRecordsFiltersReset.OnPressed += _ =>
|
|
{
|
|
StationRecordsFiltersValue.Text = "";
|
|
FilterListingOfRecords();
|
|
};
|
|
}
|
|
|
|
public void UpdateState(GeneralStationRecordConsoleState state)
|
|
{
|
|
if (state.Filter != null)
|
|
{
|
|
if (state.Filter.Type != _currentFilterType)
|
|
{
|
|
_currentFilterType = state.Filter.Type;
|
|
}
|
|
|
|
if (state.Filter.Value != StationRecordsFiltersValue.Text)
|
|
{
|
|
StationRecordsFiltersValue.Text = state.Filter.Value;
|
|
}
|
|
}
|
|
|
|
StationRecordsFilterType.SelectId((int)_currentFilterType);
|
|
|
|
if (state.RecordListing == null)
|
|
{
|
|
RecordListingStatus.Visible = true;
|
|
RecordListing.Visible = false;
|
|
RecordListingStatus.Text = Loc.GetString("general-station-record-console-empty-state");
|
|
RecordContainer.Visible = false;
|
|
RecordContainerStatus.Visible = false;
|
|
return;
|
|
}
|
|
|
|
RecordListingStatus.Visible = false;
|
|
RecordListing.Visible = true;
|
|
RecordContainer.Visible = true;
|
|
|
|
PopulateRecordListing(state.RecordListing!, state.SelectedKey);
|
|
|
|
RecordContainerStatus.Visible = state.Record == null;
|
|
|
|
if (state.Record != null)
|
|
{
|
|
RecordContainerStatus.Visible = state.SelectedKey == null;
|
|
RecordContainerStatus.Text = state.SelectedKey == null
|
|
? Loc.GetString("general-station-record-console-no-record-found")
|
|
: Loc.GetString("general-station-record-console-select-record-info");
|
|
PopulateRecordContainer(state.Record);
|
|
}
|
|
else
|
|
{
|
|
RecordContainer.DisposeAllChildren();
|
|
RecordContainer.RemoveAllChildren();
|
|
}
|
|
}
|
|
private void PopulateRecordListing(Dictionary<StationRecordKey, string> listing, StationRecordKey? selected)
|
|
{
|
|
RecordListing.Clear();
|
|
RecordListing.ClearSelected();
|
|
|
|
_isPopulating = true;
|
|
|
|
foreach (var (key, name) in listing)
|
|
{
|
|
var item = RecordListing.AddItem(name);
|
|
item.Metadata = key;
|
|
if (selected != null && key.ID == selected.Value.ID)
|
|
{
|
|
item.Selected = true;
|
|
}
|
|
}
|
|
_isPopulating = false;
|
|
|
|
RecordListing.SortItemsByText();
|
|
}
|
|
|
|
private void PopulateRecordContainer(GeneralStationRecord record)
|
|
{
|
|
RecordContainer.DisposeAllChildren();
|
|
RecordContainer.RemoveAllChildren();
|
|
// sure
|
|
var recordControls = new Control[]
|
|
{
|
|
new Label()
|
|
{
|
|
Text = record.Name,
|
|
StyleClasses = { "LabelBig" }
|
|
},
|
|
new Label()
|
|
{
|
|
Text = Loc.GetString("general-station-record-console-record-age", ("age", record.Age.ToString()))
|
|
|
|
},
|
|
new Label()
|
|
{
|
|
Text = Loc.GetString("general-station-record-console-record-title", ("job", Loc.GetString(record.JobTitle)))
|
|
},
|
|
new Label()
|
|
{
|
|
Text = Loc.GetString("general-station-record-console-record-species", ("species", record.Species))
|
|
},
|
|
new Label()
|
|
{
|
|
Text = Loc.GetString("general-station-record-console-record-gender", ("gender", record.Gender.ToString()))
|
|
},
|
|
new Label()
|
|
{
|
|
Text = Loc.GetString("general-station-record-console-record-fingerprint", ("fingerprint", record.Fingerprint ?? Loc.GetString("generic-not-available-shorthand")))
|
|
},
|
|
new Label()
|
|
{
|
|
Text = Loc.GetString("general-station-record-console-record-dna", ("dna", record.DNA ?? Loc.GetString("generic-not-available-shorthand")))
|
|
}
|
|
};
|
|
|
|
foreach (var control in recordControls)
|
|
{
|
|
RecordContainer.AddChild(control);
|
|
}
|
|
}
|
|
|
|
private void FilterListingOfRecords(string text = "")
|
|
{
|
|
if (!_isPopulating)
|
|
{
|
|
OnFiltersChanged?.Invoke(_currentFilterType, text);
|
|
}
|
|
}
|
|
|
|
private string GetTypeFilterLocals(GeneralStationRecordFilterType type)
|
|
{
|
|
return Loc.GetString($"general-station-record-{type.ToString().ToLower()}-filter");
|
|
}
|
|
}
|