Add view for PCMCIA.

This commit is contained in:
2025-09-12 01:05:50 +01:00
parent dab352aeb5
commit 22f6eef44f
3 changed files with 159 additions and 0 deletions

View File

@@ -35,6 +35,9 @@
<NavLink class="nav-link" href="/admin/partitions">
Partitions
</NavLink>
<NavLink class="nav-link" href="/admin/pcmcia">
PCMCIA
</NavLink>
<NavLink class="nav-link" href="/admin/usb/products">
USB Products
</NavLink>

View File

@@ -0,0 +1,88 @@
@page "/admin/pcmcia"
@using Pcmcia = Aaru.CommonTypes.Metadata.Pcmcia
@attribute [Authorize]
@layout AdminLayout
@rendermode InteractiveServer
@inject Microsoft.EntityFrameworkCore.IDbContextFactory<DbContext> DbContextFactory
<PageTitle>PCMCIA</PageTitle>
@if(!_initialized)
{
<div class="stats-section">
<h1 style="color: red; align-content: center; padding: 2rem">Loading...</h1>
</div>
return;
}
<section class="stats-section">
<table class="table table-dark table-striped table-bordered mt-4 mb-4">
<thead class="thead-dark">
<tr>
<th class="fw-bold bg-secondary text-light">
@DisplayNameHelper.GetDisplayName(typeof(Pcmcia), nameof(Pcmcia.CIS))
</th>
<th class="fw-bold bg-secondary text-light">
@DisplayNameHelper.GetDisplayName(typeof(Pcmcia), nameof(Pcmcia.Compliance))
</th>
<th class="fw-bold bg-secondary text-light">
@DisplayNameHelper.GetDisplayName(typeof(Media), nameof(Pcmcia.ManufacturerCode))
</th>
<th class="fw-bold bg-secondary text-light">
@DisplayNameHelper.GetDisplayName(typeof(Pcmcia), nameof(Pcmcia.CardCode))
</th>
<th class="fw-bold bg-secondary text-light">
@DisplayNameHelper.GetDisplayName(typeof(Pcmcia), nameof(Pcmcia.Manufacturer))
</th>
<th class="fw-bold bg-secondary text-light">
@DisplayNameHelper.GetDisplayName(typeof(Pcmcia), nameof(Pcmcia.ProductName))
</th>
<th class="fw-bold bg-secondary text-light">
Actions
</th>
</tr>
</thead>
<tbody>
@foreach(Pcmcia item in _items)
{
<tr>
<td>
@item.CIS
</td>
<td>
@item.Compliance
</td>
<td>
@item.ManufacturerCode
</td>
<td>
@item.CardCode
</td>
<td>
@item.Manufacturer
</td>
<td>
@item.ProductName
</td>
<td>
<button class="btn btn-danger btn-sm" @onclick="async () => await ShowDeleteModal(item.Id)">
<i class="bi bi-trash"></i> Delete
</button>
</td>
</tr>
}
</tbody>
</table>
</section>
<BlazorBootstrap.Modal @ref="_deleteModal" Title="Delete Version" Size="ModalSize.Small">
<BodyTemplate>
<div class="text-danger">Are you sure you want to delete this PCMCIA?</div>
</BodyTemplate>
<FooterTemplate>
<button class="btn btn-secondary" @onclick="HideDeleteModal">Cancel</button>
<button class="btn btn-danger" @onclick="ConfirmDelete">Delete</button>
</FooterTemplate>
</BlazorBootstrap.Modal>

View File

@@ -0,0 +1,68 @@
using BlazorBootstrap;
using Microsoft.EntityFrameworkCore;
using DbContext = Aaru.Server.Database.DbContext;
namespace Aaru.Server.Components.Admin.Pages.Pcmcia;
public partial class View
{
private int _deleteId;
private Modal? _deleteModal;
bool _initialized;
List<CommonTypes.Metadata.Pcmcia> _items;
/// <inheritdoc />
protected override async Task OnInitializedAsync()
{
await base.OnInitializedAsync();
StateHasChanged();
await using DbContext ctx = await DbContextFactory.CreateDbContextAsync();
_items = await ctx.Pcmcia.ToListAsync();
_initialized = true;
StateHasChanged();
}
private async Task ShowDeleteModal(int id)
{
_deleteId = id;
if(_deleteModal != null) await _deleteModal.ShowAsync();
}
private async Task HideDeleteModal()
{
if(_deleteModal != null) await _deleteModal.HideAsync();
}
private async Task ConfirmDelete()
{
await DeleteVersionAsync(_deleteId);
await HideDeleteModal();
await RefreshItemsAsync();
}
private async Task DeleteVersionAsync(int id)
{
await using DbContext ctx = await DbContextFactory.CreateDbContextAsync();
CommonTypes.Metadata.Pcmcia? pcmcia = await ctx.Pcmcia.FindAsync(id);
if(pcmcia is not null)
{
ctx.Pcmcia.Remove(pcmcia);
await ctx.SaveChangesAsync();
}
}
private async Task RefreshItemsAsync()
{
await using DbContext ctx = await DbContextFactory.CreateDbContextAsync();
_items = await ctx.Pcmcia.ToListAsync();
StateHasChanged();
}
}