mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Dashboard: Load Lightning balance async, display default currency * Simplify approach, improve views and scripts * Async tiles Async tiles * Add period for app sales * Fix missing keypad view sales * Fix after rebase * Fix awaited call * Fix build Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
69 lines
2.4 KiB
Text
69 lines
2.4 KiB
Text
@using BTCPayServer.Abstractions.Extensions
|
|
@model BTCPayServer.Components.StoreRecentTransactions.StoreRecentTransactionsViewModel
|
|
|
|
<div class="widget store-recent-transactions" id="StoreRecentTransactions-@Model.Store.Id">
|
|
<header>
|
|
<h3>Recent Transactions</h3>
|
|
@if (Model.Transactions.Any())
|
|
{
|
|
<a asp-controller="UIWallets" asp-action="WalletTransactions" asp-route-walletId="@Model.WalletId">View All</a>
|
|
}
|
|
</header>
|
|
@if (Model.InitialRendering)
|
|
{
|
|
<div class="loading d-flex justify-content-center p-3">
|
|
<div class="spinner-border text-light" role="status">
|
|
<span class="visually-hidden">Loading...</span>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
(async () => {
|
|
const url = @Safe.Json(Url.Action("RecentTransactions", "UIStores", new { storeId = Model.Store.Id, cryptoCode = Model.CryptoCode }));
|
|
const storeId = @Safe.Json(Model.Store.Id);
|
|
const response = await fetch(url);
|
|
if (response.ok) {
|
|
document.getElementById(`StoreRecentTransactions-${storeId}`).outerHTML = await response.text();
|
|
}
|
|
})();
|
|
</script>
|
|
}
|
|
else if (Model.Transactions.Any())
|
|
{
|
|
<table class="table table-hover mt-3 mb-0">
|
|
<thead>
|
|
<tr>
|
|
<th class="w-125px">Date</th>
|
|
<th>Transaction</th>
|
|
<th class="text-end">Amount</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var tx in Model.Transactions)
|
|
{
|
|
<tr>
|
|
<td>@tx.Timestamp.ToTimeAgo()</td>
|
|
<td>
|
|
<a href="@tx.Link" target="_blank" rel="noreferrer noopener" class="text-break">
|
|
@tx.Id
|
|
</a>
|
|
</td>
|
|
@if (tx.Positive)
|
|
{
|
|
<td class="text-end text-success">@tx.Balance</td>
|
|
}
|
|
else
|
|
{
|
|
<td class="text-end text-danger">@tx.Balance</td>
|
|
}
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
}
|
|
else
|
|
{
|
|
<p class="text-secondary mt-3 mb-0">
|
|
There are no recent transactions.
|
|
</p>
|
|
}
|
|
</div>
|