Files
marechai/Marechai/Pages/Computers/Search.razor

78 lines
2.5 KiB
Plaintext
Raw Normal View History

2020-05-22 02:44:24 +01:00
@{
2020-12-20 21:34:13 +00:00
/******************************************************************************
2020-05-22 02:44:24 +01:00
// MARECHAI: Master repository of computing history artifacts information
// ----------------------------------------------------------------------------
//
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// --[ License ] --------------------------------------------------------------
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright © 2003-2020 Natalia Portillo
*******************************************************************************/
}
@page "/computers/all"
@page "/computers/year/{Year:int}"
@page "/computers/{StartingCharacter}"
@inherits OwningComponentBase<ComputersService>
@inject IStringLocalizer<ComputersService> L
2020-12-20 21:34:13 +00:00
@if(_computers is null)
2020-05-22 02:44:24 +01:00
{
<p align="center">@L["Loading..."]</p>
return;
2020-05-22 02:44:24 +01:00
}
<p>@L["Search results:"]</p>
<p align="center">
2020-12-20 21:34:13 +00:00
@if(_character.HasValue)
2020-05-22 02:44:24 +01:00
{
<b>@string.Format(L["Computers starting with {0}"], _character)</b>
<br />
}
2020-12-20 21:34:13 +00:00
else if(Year.HasValue)
2020-05-22 02:44:24 +01:00
{
<b>@string.Format(L["Computers introduced in {0}"], Year)</b>
<br />
}
2020-12-20 21:34:13 +00:00
@if(_computers?.Count > 0)
2020-05-22 02:44:24 +01:00
{
<p>
@string.Format(L["{0} computers found in the database."], _computers.Count)
<br />
2020-12-20 21:34:13 +00:00
@foreach(var computer in _computers)
2020-05-22 02:44:24 +01:00
{
<a href="/machine/@computer.Id">
2020-12-20 21:34:13 +00:00
@computer.Company @computer.Name
</a>
2020-05-22 02:44:24 +01:00
<br />
}
</p>
}
else
{
2020-12-20 21:34:13 +00:00
@if(_character.HasValue)
2020-05-22 02:44:24 +01:00
{
<p>@L["There are no computers found in the database that start with this letter."]</p>
}
2020-12-20 21:34:13 +00:00
else if(Year.HasValue)
2020-05-22 02:44:24 +01:00
{
<p>@L["There are no computers found introduced this year."]</p>
}
}
2020-12-20 21:34:13 +00:00
</p>