Files
marechai/Marechai/Pages/Admin/News.razor

94 lines
3.1 KiB
Plaintext
Raw Normal View History

2020-05-24 17:39:37 +01:00
@{
/******************************************************************************
2020-02-10 01:52:56 +00: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/>.
//
// ----------------------------------------------------------------------------
2020-02-10 03:05:39 +00:00
// Copyright © 2003-2020 Natalia Portillo
*******************************************************************************/
}
2020-05-24 17:39:37 +01:00
@page "/admin/news"
@using Marechai.Database.Models
2020-05-24 17:39:37 +01:00
@inherits OwningComponentBase<NewsService>
@inject IStringLocalizer<NewsService> L
@inject Microsoft.AspNetCore.Identity.UserManager<ApplicationUser> UserManager
@inject AuthenticationStateProvider AuthenticationStateProvider
2020-05-24 17:39:37 +01:00
@attribute [Authorize(Roles = "UberAdmin, Admin")]
<h3>@L["News"]</h3>
@if (_news is null)
{
<p>@L["Loading..."]</p>
return;
}
<table class="table">
<thead>
<tr>
<th>
2020-05-24 17:39:37 +01:00
@L["Date"]
</th>
<th>
2020-05-24 17:39:37 +01:00
@L["Type"]
</th>
<th>
2020-05-24 17:39:37 +01:00
@L["Affected ID"]
</th>
<th></th>
</tr>
</thead>
<tbody>
2020-05-24 17:39:37 +01:00
@foreach (var item in _news)
{
<tr>
<td>
2020-05-24 17:39:37 +01:00
@item.Timestamp
</td>
<td>
2020-05-24 17:39:37 +01:00
@item.Type
</td>
<td>
2020-05-24 17:39:37 +01:00
@item.AffectedId
</td>
<td>
2020-05-24 20:36:56 +01:00
<Button Color="Color.Danger" Clicked="() => {ShowModal(item.Id);}">@L["Delete"]</Button>
</td>
</tr>
}
</tbody>
2020-05-24 17:39:37 +01:00
</table>
2020-05-24 20:36:56 +01:00
<Modal @ref="_frmDelete" IsCentered="true" Closing="@ModalClosing">
<ModalBackdrop/>
<ModalContent Centered="true">
<ModalHeader>
<ModalTitle>@L["Delete news"]</ModalTitle>
2020-05-24 20:36:56 +01:00
<CloseButton Clicked="@HideModal"/>
</ModalHeader>
<ModalBody>
<Text>@string.Format(@L["Are you sure you want to delete the news type {0} from {1} that affect artifact ID {2}?"], _currentNews?.Type, _currentNews?.Timestamp, _currentNews?.AffectedId)</Text>
</ModalBody>
<ModalFooter>
<Button Color="Color.Primary" Clicked="@HideModal" Disabled="@_deleteInProgress">@L["Cancel"]</Button>
<Button Color="Color.Danger" Clicked="@ConfirmDelete" Disabled="@_deleteInProgress">@L["Delete"]</Button>
2020-05-24 20:36:56 +01:00
</ModalFooter>
</ModalContent>
</Modal>