| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using Robust.Client.AutoGenerated;
- using Robust.Client.UserInterface;
- using Robust.Client.UserInterface.XAML;
- namespace Content.Client.MassMedia.Ui;
- [GenerateTypedNameReferences]
- public sealed partial class NewsArticleCard : Control
- {
- private string? _authorMarkup;
- private TimeSpan? _publicationTime;
- public Action? OnDeletePressed;
- public int ArtcileNumber;
- public string? Title
- {
- get => TitleLabel.Text;
- set => TitleLabel.Text = value?.Length <= 30 ? value : $"{value?[..30]}...";
- }
- public string? Author
- {
- get => _authorMarkup;
- set
- {
- _authorMarkup = value;
- AuthorLabel.Text = _authorMarkup ?? "";
- }
- }
- public TimeSpan? PublicationTime
- {
- get => _publicationTime;
- set
- {
- _publicationTime = value;
- PublishTimeLabel.Text = value?.ToString(@"hh\:mm\:ss") ?? "";
- }
- }
- public NewsArticleCard()
- {
- RobustXamlLoader.Load(this);
- DeleteButton.OnPressed += _ => OnDeletePressed?.Invoke();
- }
- }
|