-
{AUTHOR_ICON[msg.author_type] || "👤"}
-
{msg.author_slug}
-
·
-
{new Date(msg.created_at).toLocaleString("ru-RU", { hour: "2-digit", minute: "2-digit" })}
+ const renderMessage = (msg: Message) => {
+ const bgStyle =
+ msg.author_type === "system"
+ ? { backgroundColor: "rgba(161, 120, 0, 0.2)", borderRadius: 6, padding: "4px 8px" }
+ : msg.author_type === "agent"
+ ? { backgroundColor: "rgba(0, 120, 60, 0.2)", borderRadius: 6, padding: "4px 8px" }
+ : undefined;
+ return (
+
+
+ {AUTHOR_ICON[msg.author_type] || "👤"}
+ {msg.author_slug}
+ ·
+ {new Date(msg.created_at).toLocaleString("ru-RU", { hour: "2-digit", minute: "2-digit" })}
+
+
{msg.content}
-
{msg.content}
-