8149680487
TaxBaik CI/CD / build-and-deploy (push) Successful in 48s
**Implementation:** - InquiryBrowserClient: HTTP API client interface * GetPagedAsync(page, pageSize): Fetch inquiries * GetByIdAsync(id): Fetch single inquiry * UpdateStatusAsync(id, status): Change status - Program.cs: Register InquiryBrowserClient * AddHttpClient with TokenRefreshHandler - InquiryTable.razor: Refactored * Before: @inject InquiryService (direct service call) * After: @inject IInquiryBrowserClient (API call) * Status labels: Use InquiryStatusMapper * API calls via client instead of service **Status:** - Blog page: ✅ Already API-First (ApiClient) - Inquiry table: ✅ API-First (IInquiryBrowserClient) - Inquiry detail: ⏳ Pending (needs additional API endpoints) * UpdateAdminMemoAsync * LinkClientAsync * ConvertToClientAsync **SOLID Applied:** ✓ S (Single Responsibility): InquiryBrowserClient handles only Inquiry API calls ✓ D (Dependency Inversion): Blazor depends on IInquiryBrowserClient abstraction ✓ O (Open/Closed): Client can be extended without Blazor changes Next: Implement remaining API endpoints for InquiryDetail refactoring Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
86 lines
2.5 KiB
Plaintext
86 lines
2.5 KiB
Plaintext
@using TaxBaik.Web.Services
|
|
@inject IInquiryBrowserClient InquiryClient
|
|
|
|
<MudSimpleTable Striped="true" Dense="true" Class="admin-table mt-4">
|
|
<thead>
|
|
<tr>
|
|
<th>이름</th>
|
|
<th>전화</th>
|
|
<th>분야</th>
|
|
<th>상태</th>
|
|
<th>메시지</th>
|
|
<th>날짜</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var inquiry in filteredInquiries)
|
|
{
|
|
<tr>
|
|
<td>@inquiry.Name</td>
|
|
<td>@inquiry.Phone</td>
|
|
<td>@inquiry.ServiceType</td>
|
|
<td>
|
|
<MudChip Size="Size.Small" Color="@GetStatusColor(inquiry.Status)">
|
|
@GetStatusLabel(inquiry.Status)
|
|
</MudChip>
|
|
</td>
|
|
<td>@GetPreview(inquiry.Message)</td>
|
|
<td>@inquiry.CreatedAt.ToString("yyyy-MM-dd")</td>
|
|
<td>
|
|
<MudButton Size="Size.Small" Variant="Variant.Outlined" Color="Color.Primary"
|
|
Href="@($"/taxbaik/admin/inquiries/{inquiry.Id}")">문의 내용 확인</MudButton>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</MudSimpleTable>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string Status { get; set; } = "";
|
|
|
|
private List<Domain.Entities.Inquiry> inquiries = [];
|
|
private List<Domain.Entities.Inquiry> filteredInquiries = [];
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
var (items, _) = await InquiryClient.GetPagedAsync(1, 100);
|
|
inquiries = items.ToList();
|
|
FilterInquiries();
|
|
}
|
|
|
|
private void FilterInquiries()
|
|
{
|
|
filteredInquiries = string.IsNullOrEmpty(Status)
|
|
? inquiries
|
|
: inquiries.Where(x => x.Status == Status).ToList();
|
|
}
|
|
|
|
private static string GetPreview(string message)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(message))
|
|
return "-";
|
|
|
|
var trimmed = message.Trim();
|
|
return trimmed.Length <= 30 ? trimmed : $"{trimmed[..30]}...";
|
|
}
|
|
|
|
private static Color GetStatusColor(string status) => status switch
|
|
{
|
|
"new" => Color.Warning,
|
|
"consulting" => Color.Info,
|
|
"contracted" => Color.Success,
|
|
"rejected" => Color.Error,
|
|
"closed" => Color.Dark,
|
|
_ => Color.Default
|
|
};
|
|
|
|
private static string GetStatusLabel(string status) => InquiryStatusMapper.Labels.GetValueOrDefault(status, status);
|
|
|
|
protected override async Task OnParametersSetAsync()
|
|
{
|
|
FilterInquiries();
|
|
}
|
|
}
|