mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
50 lines
1.4 KiB
C#
50 lines
1.4 KiB
C#
|
|
using System.Collections.Generic;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using Marechai.ViewModels;
|
||
|
|
using Microsoft.AspNetCore.Components;
|
||
|
|
|
||
|
|
namespace Marechai.Pages.Computers
|
||
|
|
{
|
||
|
|
public partial class Search
|
||
|
|
{
|
||
|
|
char? _character;
|
||
|
|
|
||
|
|
List<MachineViewModel> _computers;
|
||
|
|
[Parameter]
|
||
|
|
public int? Year { get; set; }
|
||
|
|
|
||
|
|
[Parameter]
|
||
|
|
public string StartingCharacter { get; set; }
|
||
|
|
|
||
|
|
protected override async Task OnInitializedAsync()
|
||
|
|
{
|
||
|
|
_character = null;
|
||
|
|
|
||
|
|
if(!string.IsNullOrWhiteSpace(StartingCharacter) &&
|
||
|
|
StartingCharacter.Length == 1)
|
||
|
|
{
|
||
|
|
_character = StartingCharacter[0];
|
||
|
|
|
||
|
|
// ToUpper()
|
||
|
|
if(_character >= 'a' &&
|
||
|
|
_character <= 'z')
|
||
|
|
_character -= (char)32;
|
||
|
|
|
||
|
|
// Check if not letter or number
|
||
|
|
if(_character < '0' ||
|
||
|
|
(_character > '9' && _character < 'A') ||
|
||
|
|
_character > 'Z')
|
||
|
|
_character = null;
|
||
|
|
}
|
||
|
|
|
||
|
|
if(_character.HasValue)
|
||
|
|
_computers = await Service.GetComputersByLetterAsync(_character.Value);
|
||
|
|
|
||
|
|
if(Year.HasValue &&
|
||
|
|
_computers is null)
|
||
|
|
_computers = await Service.GetComputersByYearAsync(Year.Value);
|
||
|
|
|
||
|
|
_computers ??= await Service.GetComputersAsync();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|