From 1a1c8e71fcd14858f595029f089b2d4a00202b32 Mon Sep 17 00:00:00 2001
From: ogi <Administrator@S-OGI-PC>
Date: Fri, 05 Dec 2025 09:24:16 +0900
Subject: [PATCH] プロジェクトファイルを追加。

---
 HotelPms.Client.Blazor/Pages/Applications/Chat/ChatUsers.razor |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/HotelPms.Client.Blazor/Pages/Applications/Chat/ChatUsers.razor b/HotelPms.Client.Blazor/Pages/Applications/Chat/ChatUsers.razor
new file mode 100644
index 0000000..0f2d86e
--- /dev/null
+++ b/HotelPms.Client.Blazor/Pages/Applications/Chat/ChatUsers.razor
@@ -0,0 +1,22 @@
+
+<MudList Clickable="true">
+    <MudListSubheader Class="ml-n2 mb-n4"><b>CORE TEAM - 2</b></MudListSubheader>
+    @foreach (var user in chatUsers.Where(x => x.UserRoleColor == Colors.DeepPurple.Accent4))
+    {
+        <User UserName="@user.UserName" UserRoleColor="@user.UserRoleColor" OnlineStatus="@user.OnlineStatus" ListeningToSpotify="@user.Spotify" AvatarUrl="@user.AvatarUrl" />
+    }
+    <MudListSubheader Class="ml-n2 mt-4 mb-n4"><b>CONTRIBUTION TEAM - 5</b></MudListSubheader>
+    @foreach (var user in chatUsers.Where(x => x.UserRoleColor == Colors.Red.Accent3))
+    {
+        <User UserName="@user.UserName" UserRoleColor="@user.UserRoleColor" OnlineStatus="@user.OnlineStatus" ListeningToSpotify="@user.Spotify" AvatarUrl="@user.AvatarUrl" AvatarColor="@user.AvatarColor" />
+    }
+    <MudListSubheader Class="ml-n2 mt-4 mb-n4"><b>ONLINE - 5</b></MudListSubheader>
+    @foreach (var user in chatUsers.Where(x => x.UserRoleColor == Colors.BlueGrey.Lighten1))
+    {
+        <User UserName="@user.UserName" UserRoleColor="@user.UserRoleColor" OnlineStatus="@user.OnlineStatus" ListeningToSpotify="@user.Spotify" AvatarUrl="@user.AvatarUrl" AvatarColor="@user.AvatarColor" />
+    }
+</MudList>
+
+@code {
+    [Parameter] public ChatUser[] chatUsers { get; set; }
+}

--
Gitblit v1.10.0