From b992d20da79b9de020d629bf9574abefff9c4b12 Mon Sep 17 00:00:00 2001 From: Rory& Date: Wed, 20 Mar 2024 12:00:54 +0100 Subject: New messagebuilder stuff, table-based help command --- LibMatrix/Helpers/MessageBuilder.cs | 37 +++++++++++++++++++--- LibMatrix/Helpers/SyncHelper.cs | 2 -- .../Homeservers/AuthenticatedHomeserverGeneric.cs | 2 -- LibMatrix/Homeservers/FederationClient.cs | 5 --- LibMatrix/Homeservers/RemoteHomeServer.cs | 1 - LibMatrix/Responses/CreateRoomRequest.cs | 1 - LibMatrix/RoomTypes/SpaceRoom.cs | 1 - LibMatrix/StateEvent.cs | 2 -- 8 files changed, 32 insertions(+), 19 deletions(-) (limited to 'LibMatrix') diff --git a/LibMatrix/Helpers/MessageBuilder.cs b/LibMatrix/Helpers/MessageBuilder.cs index 0753aca..d897078 100644 --- a/LibMatrix/Helpers/MessageBuilder.cs +++ b/LibMatrix/Helpers/MessageBuilder.cs @@ -1,4 +1,3 @@ -using ArcaneLibs; using LibMatrix.EventTypes.Spec; namespace LibMatrix.Helpers; @@ -50,7 +49,7 @@ public class MessageBuilder(string msgType = "m.text", string format = "org.matr Content.FormattedBody += ""; return this; } - + public MessageBuilder WithCustomEmoji(string mxcUri, string name) { Content.Body += $"{{{name}}}"; Content.FormattedBody += $"\"{name}\""; @@ -72,23 +71,51 @@ public class MessageBuilder(string msgType = "m.text", string format = "org.matr // } return this; } - + public MessageBuilder WithCodeBlock(string code, string language = "plaintext") { Content.Body += code; Content.FormattedBody += $"
{code}
"; return this; } - + public MessageBuilder WithCollapsibleSection(string title, string body) { Content.Body += body; Content.FormattedBody += $"
{title}{body}
"; return this; } - + public MessageBuilder WithCollapsibleSection(string title, Action bodyBuilder) { Content.FormattedBody += $"
{title}"; bodyBuilder(this); Content.FormattedBody += "
"; return this; } + + public MessageBuilder WithTable(Action tableBuilder) { + var tb = new TableBuilder(this); + this.WithHtmlTag("table", msb => tableBuilder(tb)); + return this; + } + + public class TableBuilder(MessageBuilder msb) { + public TableBuilder WithTitle(string title, int colspan) { + msb.Content.Body += title + "\n"; + msb.Content.FormattedBody += $"{title}"; + return this; + } + + public TableBuilder WithRow(Action rowBuilder) { + var rb = new RowBuilder(msb); + msb.WithHtmlTag("tr", msb => rowBuilder(rb)).WithBody("\n"); + return this; + } + + public class RowBuilder(MessageBuilder msb) { + public RowBuilder WithCell(string content, Dictionary? attributes = null) { + msb.Content.Body += content + "\n"; + msb.Content.FormattedBody += $"{content}\t"; + return this; + } + } + } } \ No newline at end of file diff --git a/LibMatrix/Helpers/SyncHelper.cs b/LibMatrix/Helpers/SyncHelper.cs index e696b70..1833bd0 100644 --- a/LibMatrix/Helpers/SyncHelper.cs +++ b/LibMatrix/Helpers/SyncHelper.cs @@ -1,7 +1,5 @@ using System.Diagnostics; using System.Net.Http.Json; -using System.Text.Json; -using System.Text.Json.Serialization; using ArcaneLibs.Extensions; using LibMatrix.Filters; using LibMatrix.Homeservers; diff --git a/LibMatrix/Homeservers/AuthenticatedHomeserverGeneric.cs b/LibMatrix/Homeservers/AuthenticatedHomeserverGeneric.cs index 4f3bb41..727c0ea 100644 --- a/LibMatrix/Homeservers/AuthenticatedHomeserverGeneric.cs +++ b/LibMatrix/Homeservers/AuthenticatedHomeserverGeneric.cs @@ -1,7 +1,5 @@ -using System.Diagnostics.CodeAnalysis; using System.Net.Http.Headers; using System.Net.Http.Json; -using System.Runtime.CompilerServices; using System.Text.Json; using System.Text.Json.Nodes; using System.Text.Json.Serialization; diff --git a/LibMatrix/Homeservers/FederationClient.cs b/LibMatrix/Homeservers/FederationClient.cs index 288b6b5..3926b29 100644 --- a/LibMatrix/Homeservers/FederationClient.cs +++ b/LibMatrix/Homeservers/FederationClient.cs @@ -1,10 +1,5 @@ -using System.Net.Http.Json; -using System.Text.Json; using System.Text.Json.Serialization; -using System.Web; -using ArcaneLibs.Extensions; using LibMatrix.Extensions; -using LibMatrix.Responses; using LibMatrix.Services; namespace LibMatrix.Homeservers; diff --git a/LibMatrix/Homeservers/RemoteHomeServer.cs b/LibMatrix/Homeservers/RemoteHomeServer.cs index 422a8a9..8cd7ad7 100644 --- a/LibMatrix/Homeservers/RemoteHomeServer.cs +++ b/LibMatrix/Homeservers/RemoteHomeServer.cs @@ -1,5 +1,4 @@ using System.Net.Http.Json; -using System.Runtime.CompilerServices; using System.Text.Json; using System.Text.Json.Serialization; using System.Web; diff --git a/LibMatrix/Responses/CreateRoomRequest.cs b/LibMatrix/Responses/CreateRoomRequest.cs index ee4317e..6f47183 100644 --- a/LibMatrix/Responses/CreateRoomRequest.cs +++ b/LibMatrix/Responses/CreateRoomRequest.cs @@ -5,7 +5,6 @@ using System.Text.RegularExpressions; using LibMatrix.EventTypes; using LibMatrix.EventTypes.Spec.State; using LibMatrix.Homeservers; -using LibMatrix.Interfaces; namespace LibMatrix.Responses; diff --git a/LibMatrix/RoomTypes/SpaceRoom.cs b/LibMatrix/RoomTypes/SpaceRoom.cs index 49e751d..b40ccc6 100644 --- a/LibMatrix/RoomTypes/SpaceRoom.cs +++ b/LibMatrix/RoomTypes/SpaceRoom.cs @@ -1,6 +1,5 @@ using ArcaneLibs.Extensions; using LibMatrix.Homeservers; -using Microsoft.Extensions.Logging; namespace LibMatrix.RoomTypes; diff --git a/LibMatrix/StateEvent.cs b/LibMatrix/StateEvent.cs index 541fb78..d9d0f4e 100644 --- a/LibMatrix/StateEvent.cs +++ b/LibMatrix/StateEvent.cs @@ -1,6 +1,4 @@ using System.Collections.Frozen; -using System.Collections.Immutable; -using System.ComponentModel.DataAnnotations; using System.Diagnostics.CodeAnalysis; using System.Reflection; using System.Text.Json; -- cgit 1.4.1