@page "/inventory" @using Indotalent.Features.Inventory.MovementReport.Components @using Indotalent.Features.Inventory.NegativeAdjustment.Components @using Indotalent.Features.Inventory.PositiveAdjustment.Components @using Indotalent.Features.Inventory.Product.Components @using Indotalent.Features.Inventory.ProductGroup.Components @using Indotalent.Features.Inventory.Scrapping.Components @using Indotalent.Features.Inventory.StockCount.Components @using Indotalent.Features.Inventory.StockReport.Components @using Indotalent.Features.Inventory.TransactionReport.Components @using Indotalent.Features.Inventory.TransferIn.Components @using Indotalent.Features.Inventory.TransferOut.Components @using Indotalent.Features.Inventory.UnitMeasure.Components @using Indotalent.Features.Inventory.Warehouse.Components @using Microsoft.AspNetCore.Authorization @using Indotalent.Infrastructure.Authorization.Identity @using MudBlazor @inject NavigationManager NavigationManager @attribute [Authorize(Roles = $"{ApplicationRoles.Admin},{ApplicationRoles.Member}")]
@code { private int _activeTabIndex = 0; private readonly Dictionary _tabMapping = new() { { 0, "unit-measure" }, { 1, "product-group" }, { 2, "product" }, { 3, "warehouse" }, { 4, "transfer-out" }, { 5, "transfer-in" }, { 6, "pos-adj" }, { 7, "neg-adj" }, { 8, "scrapping" }, { 9, "stock-count" }, { 10, "report-trans" }, { 11, "report-stock" }, { 12, "report-movement" } }; protected override void OnInitialized() { var uri = NavigationManager.ToAbsoluteUri(NavigationManager.Uri); if (Microsoft.AspNetCore.WebUtilities.QueryHelpers.ParseQuery(uri.Query).TryGetValue("tab", out var tabValue)) { var tabStr = tabValue.ToString().ToLower(); var match = _tabMapping.FirstOrDefault(x => x.Value == tabStr); _activeTabIndex = match.Value != null ? match.Key : 0; } } private void OnTabChanged(int index) { _activeTabIndex = index; _tabMapping.TryGetValue(index, out var tabName); NavigationManager.NavigateTo($"/inventory?tab={tabName ?? "unit-measure"}", replace: false); } }