using System.Collections.Generic; using System.Threading.Tasks; using DSharpPlus.Entities; using DSharpPlus.Interactivity; using DSharpPlus.Interactivity.Extensions; using DSharpPlus.SlashCommands; using DSharpPlus.SlashCommands.Attributes; namespace SupportChild.Commands; public class ListAssignedCommand : ApplicationCommandModule { [SlashRequireGuild] [SlashCommand("listassigned", "Lists tickets assigned to a user.")] public async Task OnExecute(InteractionContext command, [Option("User", "(Optional) User to list tickets for.")] DiscordUser user = null) { DiscordUser listUser = user == null ? command.User : user; if (!Database.TryGetAssignedTickets(listUser.Id, out List assignedTickets)) { await command.CreateResponseAsync(new DiscordEmbedBuilder { Color = DiscordColor.Red, Description = "User does not have any assigned tickets." }); return; } List listItems = new List(); foreach (Database.Ticket ticket in assignedTickets) { listItems.Add("**" + ticket.DiscordRelativeTime() + ":** <#" + ticket.channelID + "> by <@" + ticket.creatorID + ">\n"); } List embeds = new List(); foreach (string message in Utilities.ParseListIntoMessages(listItems)) { embeds.Add(new DiscordEmbedBuilder { Title = "Assigned tickets: ", Color = DiscordColor.Green, Description = message }); } // Add the footers for (int i = 0; i < embeds.Count; i++) { embeds[i].Footer = new DiscordEmbedBuilder.EmbedFooter { Text = $"Page {i + 1} / {embeds.Count}" }; } List listPages = new List(); foreach (DiscordEmbedBuilder embed in embeds) { listPages.Add(new Page("", embed)); } await command.Interaction.SendPaginatedResponseAsync(true, command.User, listPages); } }