675f04afec
This commit introduces the CalendarService, which provides methods for retrieving all calendar items and upcoming events. The service is integrated into various components, including the Calendar and Home pages, enhancing the calendar functionality by allowing users to view upcoming events and meeting histories. Additionally, the Index.razor component is updated to parse query parameters for date selection, improving user experience. The layout of the MeetingHistoryDetailDialog and SaveMeetingHistoryDialog components is also refined for better organization and responsiveness. These changes collectively enhance the calendar feature and improve the overall user interface in managing events and meetings.
42 lines
2.3 KiB
Plaintext
42 lines
2.3 KiB
Plaintext
@using WebApp.Models
|
|
@using WebApp.Authentication
|
|
@inject IConfiguration Configuration
|
|
|
|
<MudPaper Width="250px" Class="d-inline-flex py-3" Elevation="0">
|
|
<MudNavMenu Class="mud-width-full">
|
|
<MudLink Typo="Typo.h6" Href="/" Class="px-4">TSA Chapter Organizer</MudLink>
|
|
<MudText Typo="Typo.body2" Class="px-4 mud-text-secondary">@Configuration["ChapterSettings:Name"]</MudText>
|
|
<MudDivider Class="my-2"/>
|
|
|
|
<MudNavGroup Title="Scheduling" Icon="@Icons.Material.Filled.CalendarMonth" Expanded="true">
|
|
<MudNavLink Href="/meeting-schedule/" Icon="@AppIcons.Scheduler">Meeting Schedule</MudNavLink>
|
|
<MudNavLink Href="/calendar/" Icon="@AppIcons.EventCalendar">Event Calendar</MudNavLink>
|
|
</MudNavGroup>
|
|
|
|
<MudNavGroup Title="Teams & Registration" Icon="@Icons.Material.Outlined.Groups" Expanded="true">
|
|
<MudNavLink Href="/teams" Match="NavLinkMatch.All" Icon="@AppIcons.Teams">Teams</MudNavLink>
|
|
<MudNavLink Href="/students/teams" Icon="@AppIcons.Registration">Registration</MudNavLink>
|
|
</MudNavGroup>
|
|
|
|
<MudNavGroup Title="Chapter Data" Icon="@Icons.Material.Filled.Storage" Expanded="false">
|
|
<MudNavLink Href="/students" Icon="@Icons.Material.Filled.People">Students</MudNavLink>
|
|
<MudNavLink Href="/events" Icon="@AppIcons.Events">Events</MudNavLink>
|
|
</MudNavGroup>
|
|
|
|
<MudNavGroup Title="Team Building" Icon="@Icons.Material.Filled.GroupAdd" Expanded="false">
|
|
<MudNavLink Href="/students/event-ranking" Icon="@AppIcons.EventRank">Event Ranking</MudNavLink>
|
|
<MudNavLink Href="/teams/assignment" Icon="@AppIcons.TeamAssignment">Team Assignment</MudNavLink>
|
|
</MudNavGroup>
|
|
|
|
<MudNavGroup Title="Tools" Icon="@Icons.Material.Filled.Build" Expanded="false">
|
|
<MudNavLink Href="/notes" Icon="@Icons.Material.Filled.Note">Notes</MudNavLink>
|
|
</MudNavGroup>
|
|
|
|
<AuthorizeView Roles="Administrator">
|
|
<MudDivider Class="my-2"/>
|
|
<MudNavLink Href="/settings/chapter" Icon="@Icons.Material.Filled.School">Chapter Settings</MudNavLink>
|
|
<MudNavLink Href="/settings/validation" Icon="@Icons.Material.Filled.Tune">Validation Settings</MudNavLink>
|
|
</AuthorizeView>
|
|
</MudNavMenu>
|
|
</MudPaper>
|