mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 18:51:18 +01:00
33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
|
|
|
namespace BTCPayServer.Views.Stores
|
|
{
|
|
public static class StoreNavPages
|
|
{
|
|
public static string ActivePageKey => "ActivePage";
|
|
public static string Index => "Index";
|
|
|
|
|
|
public static string Tokens => "Tokens";
|
|
public static string Wallet => "Wallet";
|
|
|
|
public static string TokensNavClass(ViewContext viewContext) => PageNavClass(viewContext, Tokens);
|
|
public static string WalletNavClass(ViewContext viewContext) => PageNavClass(viewContext, Wallet);
|
|
|
|
public static string IndexNavClass(ViewContext viewContext) => PageNavClass(viewContext, Index);
|
|
|
|
public static string PageNavClass(ViewContext viewContext, string page)
|
|
{
|
|
var activePage = viewContext.ViewData["ActivePage"] as string;
|
|
return string.Equals(activePage, page, StringComparison.OrdinalIgnoreCase) ? "active" : null;
|
|
}
|
|
|
|
public static void AddActivePage(this ViewDataDictionary viewData, string activePage) => viewData[ActivePageKey] = activePage;
|
|
}
|
|
}
|