@namespace Oqtane.Modules.Admin.UserProfile @inherits ModuleBase @inject NavigationManager NavigationManager @inject IUserService UserService @inject IProfileService ProfileService @inject ISettingService SettingService @inject INotificationService NotificationService @if (PageState.User != null && profiles != null) {
@if (photofileid != -1) { @displayname } else {
} @foreach (Profile profile in profiles) { var p = profile; if (p.Category != category) { category = p.Category; } }
@p.Category



@if (filter == "to") {
    From Subject Received
@(context.FromUser == null ? "System" : context.FromUser.DisplayName) @context.Subject @context.CreatedOn @(context.Body.Length > 100 ? context.Body.Substring(0,100) : context.Body)
} else {
    To Subject Sent
@(context.ToUser == null ? context.ToEmail : context.ToUser.DisplayName) @context.Subject @context.CreatedOn @(context.Body.Length > 100 ? context.Body.Substring(0,100) : context.Body)
}

} @code { private string username = string.Empty; private string password = string.Empty; private string confirm = string.Empty; private string email = string.Empty; private string displayname = string.Empty; private FileManager filemanager; private int photofileid = -1; private List profiles; private Dictionary settings; private string category = string.Empty; private string filter = "to"; private List notifications; public override SecurityAccessLevel SecurityAccessLevel => SecurityAccessLevel.View; protected override async Task OnInitializedAsync() { try { if (PageState.User != null) { username = PageState.User.Username; email = PageState.User.Email; displayname = PageState.User.DisplayName; if (PageState.User.PhotoFileId != null) { photofileid = PageState.User.PhotoFileId.Value; } profiles = await ProfileService.GetProfilesAsync(ModuleState.SiteId); settings = await SettingService.GetUserSettingsAsync(PageState.User.UserId); await LoadNotificationsAsync(); } else { AddModuleMessage("Current User Is Not Logged In", MessageType.Warning); } } catch (Exception ex) { await logger.LogError(ex, "Error Loading User Profile {Error}", ex.Message); AddModuleMessage("Error Loading User Profile", MessageType.Error); } } private async Task LoadNotificationsAsync() { notifications = await NotificationService.GetNotificationsAsync(PageState.Site.SiteId, filter, PageState.User.UserId); notifications = notifications.Where(item => item.DeletedBy != PageState.User.Username).ToList(); } private string GetProfileValue(string SettingName, string DefaultValue) => SettingService.GetSetting(settings, SettingName, DefaultValue); private async Task Save() { try { if (username != string.Empty && email != string.Empty) { if (password == confirm) { var user = PageState.User; user.Username = username; user.Password = password; user.Email = email; user.DisplayName = (displayname == string.Empty ? username : displayname); user.PhotoFileId = null; photofileid = filemanager.GetFileId(); if (photofileid != -1) { user.PhotoFileId = photofileid; } await UserService.UpdateUserAsync(user); await SettingService.UpdateUserSettingsAsync(settings, PageState.User.UserId); await logger.LogInformation("User Profile Saved"); } else { AddModuleMessage("Passwords Entered Do Not Match", MessageType.Warning); } } else { AddModuleMessage("You Must Provide A Username and Email Address", MessageType.Warning); } } catch (Exception ex) { await logger.LogError(ex, "Error Saving User Profile {Error}", ex.Message); AddModuleMessage("Error Saving User Profile", MessageType.Error); } } private void Cancel() { NavigationManager.NavigateTo(NavigateUrl(string.Empty)); } private void ProfileChanged(ChangeEventArgs e, string SettingName) { var value = (string)e.Value; settings = SettingService.SetSetting(settings, SettingName, value); } private async Task Delete(Notification Notification) { try { if (!Notification.IsDeleted) { Notification.IsDeleted = true; await NotificationService.UpdateNotificationAsync(Notification); } else { await NotificationService.DeleteNotificationAsync(Notification.NotificationId); } await logger.LogInformation("Notification Deleted {Notification}", Notification); await LoadNotificationsAsync(); StateHasChanged(); } catch (Exception ex) { await logger.LogError(ex, "Error Deleting Notification {Notification} {Error}", Notification, ex.Message); AddModuleMessage(ex.Message, MessageType.Error); } } private async void FilterChanged(ChangeEventArgs e) { filter = (string)e.Value; await LoadNotificationsAsync(); StateHasChanged(); } }