mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
* Swap bootstrap asset files * Update themes and color definitions * Move general bootstrap customizations * Theme updates Theme updates * Remove BuildBundlerMinifier This lead to an error, because BuildBundlerMinifier and BundlerMinifier.Core seem to conflict here. Details: https://stackoverflow.com/a/61119586 * Rewplace btn-block class with w-100 * Update badge classes * Remove old font family head variable * Update margin classes * Cleanups * Update float classes * Update text classes * Update padding classes * Update border classes * UPdate dropdown classes * Update select classes * Update neutral custom props * Update bootstrap and customizations * Update ChromeDriver; disable smooth scroll https://github.com/SeleniumHQ/selenium/issues/8295 * Improve alert messages * Improve bootstrap customizations * Disable reduced motion See also 7358282f * Update Bootstrap data attributes * Update file inputs * Update input groups * Replace deprecated jumbotron class * Update variables; re-add negative margin util classes * Update cards * Update form labels * Debug alerts * Fix aria-labelledby associations * Dropdown-related test fixes * Fix CanUseWebhooks test * Test fixes * Nav updates * Fix nav usage in wallet send and payouts * Update alert and modal close buttons * Re-add backdrop properties * Upgrade Bootstrap to v5 final * Update screen reader classes * Update font-weight classes * Update monospace font classes * Update accordians * Update close icon usage * Cleanup * Update scripts and style integrations * Update input group texts * Update LN node setup page * Update more form control classes * Update inline forms * Add js specific test * Upgrade Vue.js * Remove unused JS * Upgrade Bootstrap to v5.0.1 * Try container related test updates * Separate jQuery bundle * Remove jQuery from LND seed backup page * Remove unused code * Refactor email autofill js * Refactor camera scanner JS * Re-add tests * Re-add BuildBundlerMinifier * Do not minify bundles containing Bootstrap Details https://github.com/madskristensen/BundlerMinifier/issues/558 * Update bundles * Cleanup JS test * Cleanup tests involving dropdowns * Cleanup tests involving collapses * Cleanup locale additions in ConfigureCore * Cleanup bundles * Remove duplicate status message * Cleanup formatting * Fix missing validation scripts * Remove unused unminified Bootstrap js files * Fix classic theme * Fix Casa theme * Fix PoS validation
86 lines
2.8 KiB
Text
86 lines
2.8 KiB
Text
@model BasePagingViewModel
|
||
|
||
@{
|
||
var pageSizeOptions = new [] { 50, 100, 250, 500 };
|
||
}
|
||
|
||
@if (Model.Total > pageSizeOptions.Min())
|
||
{
|
||
<nav aria-label="..." class="w-100">
|
||
@if (Model.Total > Model.Count)
|
||
{
|
||
<ul class="pagination float-start">
|
||
<li class="page-item @(Model.Skip == 0 ? "disabled" : null)">
|
||
<a class="page-link" tabindex="-1" href="@NavigatePages(-1, Model.Count)">«</a>
|
||
</li>
|
||
<li class="page-item disabled">
|
||
@if (Model.Total <= Model.Count)
|
||
{
|
||
<span class="page-link">
|
||
1–@Model.Total
|
||
</span>
|
||
}
|
||
else
|
||
{
|
||
<span class="page-link">
|
||
@(Model.Skip + 1)–@(Model.Skip + Model.Count), Total: @Model.Total
|
||
</span>
|
||
}
|
||
</li>
|
||
<li class="page-item @(Model.Total > (Model.Skip + Model.Count) ? null : "disabled")">
|
||
<a class="page-link" href="@NavigatePages(1, Model.Count)">»</a>
|
||
</li>
|
||
</ul>
|
||
}
|
||
|
||
@if (Model.Total >= pageSizeOptions.Min())
|
||
{
|
||
<ul class="pagination float-end">
|
||
<li class="page-item disabled">
|
||
<span class="page-link">Page Size:</span>
|
||
</li>
|
||
@foreach (int pageSize in pageSizeOptions)
|
||
{
|
||
if (Model.Total >= pageSize)
|
||
{
|
||
<li class="page-item @(Model.Count == pageSize ? "active" : null)">
|
||
<a class="page-link" href="@NavigatePages(0, pageSize)">@pageSize</a>
|
||
</li>
|
||
}
|
||
}
|
||
</ul>
|
||
}
|
||
</nav>
|
||
}
|
||
@{
|
||
string NavigatePages(int prevNext, int count)
|
||
{
|
||
var skip = Model.Skip;
|
||
if (prevNext == -1)
|
||
{
|
||
skip = Math.Max(0, Model.Skip - Model.Count);
|
||
}
|
||
else if (prevNext == 1)
|
||
{
|
||
skip = Model.Skip + count;
|
||
}
|
||
|
||
var query = new Dictionary<string, object>
|
||
{
|
||
{ "searchTerm", Model.SearchTerm },
|
||
{ "timezoneOffset", Model.TimezoneOffset },
|
||
{ "skip", skip },
|
||
{ "count", count }
|
||
};
|
||
|
||
if (Model.PaginationQuery != null)
|
||
{
|
||
// merge both, prefering the `query` properties in case of duplicate keys
|
||
query = query.Concat(Model.PaginationQuery)
|
||
.GroupBy(e => e.Key)
|
||
.ToDictionary(g => g.Key, g => g.First().Value);
|
||
}
|
||
|
||
return Url.Action(null, query);
|
||
}
|
||
}
|