117 lines
3.9 KiB
Plaintext
117 lines
3.9 KiB
Plaintext
@page "/utilities"
|
|
@using Indotalent.Features.Utilities.BookingGroup.Components
|
|
@using Indotalent.Features.Utilities.BookingManager.Components
|
|
@using Indotalent.Features.Utilities.BookingResource.Components
|
|
@using Indotalent.Features.Utilities.BookingScheduler.Components
|
|
@using Indotalent.Features.Utilities.ProgramManager.Components
|
|
@using Indotalent.Features.Utilities.ProgramResource.Components
|
|
@using Indotalent.Features.Utilities.Todo.Components
|
|
@using Microsoft.AspNetCore.Authorization
|
|
@using Indotalent.Infrastructure.Authorization.Identity
|
|
@using MudBlazor
|
|
@inject NavigationManager NavigationManager
|
|
|
|
|
|
@attribute [Authorize(Roles = $"{ApplicationRoles.Admin},{ApplicationRoles.Member}")]
|
|
|
|
<style>
|
|
.clean-white-tabs .mud-tabs-toolbar {
|
|
background-color: white !important;
|
|
border-bottom: 2px solid #DCEBFA;
|
|
border-radius: 4px !important;
|
|
}
|
|
|
|
.clean-white-tabs .mud-tab {
|
|
color: #94a3b8 !important;
|
|
text-transform: none;
|
|
font-weight: 500;
|
|
min-width: 160px;
|
|
border-radius: 4px !important;
|
|
}
|
|
|
|
.clean-white-tabs .mud-tab-active {
|
|
color: var(--mud-palette-primary) !important;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.clean-white-tabs .mud-tabs-slider {
|
|
background-color: var(--mud-palette-primary) !important;
|
|
height: 3px !important;
|
|
bottom: 0;
|
|
}
|
|
</style>
|
|
|
|
<MudContainer MaxWidth="MaxWidth.ExtraLarge" Class="mt-2 mb-8">
|
|
<div class="clean-white-tabs">
|
|
<MudTabs Elevation="0"
|
|
ActivePanelIndex="@_activeTabIndex"
|
|
ActivePanelIndexChanged="OnTabChanged"
|
|
ApplyEffectsToContainer="true"
|
|
TabPanelsClass="pt-4"
|
|
ScrollButtons="ScrollButtons.Always">
|
|
|
|
<MudTabPanel Text="Booking Group" Icon="@Icons.Material.Outlined.Workspaces">
|
|
<BookingGroupPage />
|
|
</MudTabPanel>
|
|
|
|
<MudTabPanel Text="Booking Resource" Icon="@Icons.Material.Outlined.Construction">
|
|
<BookingResourcePage />
|
|
</MudTabPanel>
|
|
|
|
<MudTabPanel Text="Booking Manager" Icon="@Icons.Material.Outlined.SettingsSuggest">
|
|
<BookingManagerPage />
|
|
</MudTabPanel>
|
|
|
|
<MudTabPanel Text="Scheduler" Icon="@Icons.Material.Outlined.CalendarMonth">
|
|
<BookingSchedulerPage />
|
|
</MudTabPanel>
|
|
|
|
<MudTabPanel Text="Prog Resource" Icon="@Icons.Material.Outlined.Source">
|
|
<ProgramResourcePage />
|
|
</MudTabPanel>
|
|
|
|
<MudTabPanel Text="Prog Manager" Icon="@Icons.Material.Outlined.AccountTree">
|
|
<ProgramManagerPage />
|
|
</MudTabPanel>
|
|
|
|
<MudTabPanel Text="To-Do List" Icon="@Icons.Material.Outlined.PlaylistAddCheck">
|
|
<TodoPage />
|
|
</MudTabPanel>
|
|
|
|
</MudTabs>
|
|
</div>
|
|
</MudContainer>
|
|
|
|
@code {
|
|
private int _activeTabIndex = 0;
|
|
|
|
private readonly Dictionary<int, string> _tabMapping = new()
|
|
{
|
|
{ 0, "booking-group" },
|
|
{ 1, "booking-resource" },
|
|
{ 2, "booking-manager" },
|
|
{ 3, "scheduler" },
|
|
{ 4, "prog-resource" },
|
|
{ 5, "prog-manager" },
|
|
{ 6, "todo" }
|
|
};
|
|
|
|
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($"/utilities?tab={tabName ?? "booking-group"}", replace: false);
|
|
}
|
|
} |