mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
79 lines
3.3 KiB
C#
79 lines
3.3 KiB
C#
/******************************************************************************
|
|
// Canary Islands Computer Museum Website
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : ManageNavPages.cs
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// --[ Description ] ----------------------------------------------------------
|
|
//
|
|
// ASP.NET Identify management
|
|
//
|
|
// --[ License ] --------------------------------------------------------------
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright © 2003-2018 Natalia Portillo
|
|
*******************************************************************************/
|
|
|
|
using System;
|
|
using System.IO;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
namespace cicm_web.Areas.Identity.Pages.Account.Manage
|
|
{
|
|
public static class ManageNavPages
|
|
{
|
|
public static string Index => "Index";
|
|
|
|
public static string ChangePassword => "ChangePassword";
|
|
|
|
public static string DownloadPersonalData => "DownloadPersonalData";
|
|
|
|
public static string DeletePersonalData => "DeletePersonalData";
|
|
|
|
public static string ExternalLogins => "ExternalLogins";
|
|
|
|
public static string PersonalData => "PersonalData";
|
|
|
|
public static string TwoFactorAuthentication => "TwoFactorAuthentication";
|
|
|
|
public static string IndexNavClass(ViewContext viewContext) => PageNavClass(viewContext, Index);
|
|
|
|
public static string ChangePasswordNavClass(ViewContext viewContext) =>
|
|
PageNavClass(viewContext, ChangePassword);
|
|
|
|
public static string DownloadPersonalDataNavClass(ViewContext viewContext) =>
|
|
PageNavClass(viewContext, DownloadPersonalData);
|
|
|
|
public static string DeletePersonalDataNavClass(ViewContext viewContext) =>
|
|
PageNavClass(viewContext, DeletePersonalData);
|
|
|
|
public static string ExternalLoginsNavClass(ViewContext viewContext) =>
|
|
PageNavClass(viewContext, ExternalLogins);
|
|
|
|
public static string PersonalDataNavClass(ViewContext viewContext) => PageNavClass(viewContext, PersonalData);
|
|
|
|
public static string TwoFactorAuthenticationNavClass(ViewContext viewContext) =>
|
|
PageNavClass(viewContext, TwoFactorAuthentication);
|
|
|
|
public static string PageNavClass(ViewContext viewContext, string page)
|
|
{
|
|
string activePage = viewContext.ViewData["ActivePage"] as string ??
|
|
Path.GetFileNameWithoutExtension(viewContext.ActionDescriptor.DisplayName);
|
|
return string.Equals(activePage, page, StringComparison.OrdinalIgnoreCase) ? "active" : null;
|
|
}
|
|
}
|
|
} |