2020-06-07 17:52:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
2020-06-04 11:21:47 +00:00
|
|
|
|
|
|
|
|
|
using DSharpPlus.Entities;
|
|
|
|
|
|
2020-06-06 23:30:19 +00:00
|
|
|
|
using PluralKit.Core;
|
|
|
|
|
|
2020-06-04 11:21:47 +00:00
|
|
|
|
namespace PluralKit.Bot
|
|
|
|
|
{
|
|
|
|
|
public class ShortRenderer: IListRenderer
|
|
|
|
|
{
|
|
|
|
|
public int MembersPerPage => 25;
|
|
|
|
|
|
2020-06-06 23:30:19 +00:00
|
|
|
|
public void RenderPage(DiscordEmbedBuilder eb, PKSystem system, IEnumerable<PKListMember> members)
|
2020-06-04 11:21:47 +00:00
|
|
|
|
{
|
2020-06-06 23:30:19 +00:00
|
|
|
|
string RenderLine(PKListMember m)
|
2020-06-04 11:21:47 +00:00
|
|
|
|
{
|
|
|
|
|
if (m.HasProxyTags)
|
|
|
|
|
{
|
|
|
|
|
var proxyTagsString = m.ProxyTagsString().SanitizeMentions();
|
|
|
|
|
if (proxyTagsString.Length > 100) // arbitrary threshold for now, tweak?
|
|
|
|
|
proxyTagsString = "tags too long, see member card";
|
|
|
|
|
|
|
|
|
|
return $"[`{m.Hid}`] **{m.Name.SanitizeMentions()}** *({proxyTagsString})*";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $"[`{m.Hid}`] **{m.Name.SanitizeMentions()}**";
|
2020-06-06 23:30:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-07 17:52:05 +00:00
|
|
|
|
var buf = new StringBuilder();
|
|
|
|
|
var chunks = new List<string>();
|
|
|
|
|
|
|
|
|
|
// Split the list into properly-sized chunks
|
|
|
|
|
foreach (var m in members)
|
|
|
|
|
{
|
|
|
|
|
var line = RenderLine(m);
|
|
|
|
|
|
|
|
|
|
// First chunk goes in description (2048 chars), rest go in embed values (1000 chars)
|
|
|
|
|
var lengthLimit = chunks.Count == 0 ? 2048 : 1000;
|
|
|
|
|
if (buf.Length + line.Length + 1 > lengthLimit)
|
|
|
|
|
{
|
|
|
|
|
chunks.Add(buf.ToString());
|
|
|
|
|
buf.Clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buf.Append(RenderLine(m));
|
|
|
|
|
buf.Append("\n");
|
|
|
|
|
}
|
|
|
|
|
chunks.Add(buf.ToString());
|
|
|
|
|
|
|
|
|
|
// Put the first chunk in the description, rest in blank-name embed fields
|
|
|
|
|
eb.Description = chunks[0];
|
|
|
|
|
for (var i = 1; i < chunks.Count; i++)
|
|
|
|
|
// Field name is Unicode zero-width space
|
|
|
|
|
eb.AddField("\u200B", chunks[i]);
|
2020-06-04 11:21:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|