From 7f9e47edb6bea04a00012e004d65ca773738ac00 Mon Sep 17 00:00:00 2001 From: Shaun Walker Date: Wed, 23 Oct 2019 10:13:58 -0400 Subject: [PATCH] event log UI improvements --- Oqtane.Client/Modules/Admin/Logs/Detail.razor | 179 ++++++++++++++++++ Oqtane.Client/Modules/Admin/Logs/Index.razor | 70 ++++++- .../Services/Interfaces/ILogService.cs | 3 +- .../Services/Interfaces/IPageModuleService.cs | 1 + Oqtane.Client/Services/LogService.cs | 9 +- Oqtane.Client/Services/PageModuleService.cs | 5 + Oqtane.Server/Controllers/LogController.cs | 17 +- .../Controllers/PageModuleController.cs | 7 + Oqtane.Server/Controllers/TenantController.cs | 2 + .../Repository/Interfaces/ILogRepository.cs | 3 +- .../Interfaces/IPageModuleRepository.cs | 1 + Oqtane.Server/Repository/LogRepository.cs | 24 ++- .../Repository/PageModuleRepository.cs | 12 ++ 13 files changed, 314 insertions(+), 19 deletions(-) create mode 100644 Oqtane.Client/Modules/Admin/Logs/Detail.razor diff --git a/Oqtane.Client/Modules/Admin/Logs/Detail.razor b/Oqtane.Client/Modules/Admin/Logs/Detail.razor new file mode 100644 index 00000000..5ab4658f --- /dev/null +++ b/Oqtane.Client/Modules/Admin/Logs/Detail.razor @@ -0,0 +1,179 @@ +@namespace Oqtane.Modules.Admin.Logs +@inherits ModuleBase +@inject NavigationManager NavigationManager +@inject ILogService LogService +@inject IPageService PageService +@inject IPageModuleService PageModuleService +@inject IUserService UserService + + + + + + + + + + + + + + + @if (pagename != "") + { + + + + + } + @if (moduletitle != "") + { + + + + + } + @if (username != "") + { + + + + + } + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + +