1 |
rakinar2 |
577 |
/** |
2 |
|
|
* This file is part of SudoBot. |
3 |
|
|
* |
4 |
|
|
* Copyright (C) 2021-2023 OSN Developers. |
5 |
|
|
* |
6 |
|
|
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
|
|
* under the terms of the GNU Affero General Public License as published by |
8 |
|
|
* the Free Software Foundation, either version 3 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* SudoBot is distributed in the hope that it will be useful, but |
12 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU Affero General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU Affero General Public License |
17 |
|
|
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
|
|
import { EmbedBuilder, User, time } from "discord.js"; |
21 |
|
|
import Command, { AnyCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
|
import Pagination from "../../utils/Pagination"; |
23 |
|
|
|
24 |
|
|
export default class ReminderListCommand extends Command { |
25 |
|
|
public readonly name = "reminder__list"; |
26 |
|
|
public readonly validationRules: ValidationRule[] = []; |
27 |
|
|
public readonly aliases = ["rlist"]; |
28 |
|
|
|
29 |
|
|
public readonly description = "Lists the queued reminders for the user who runs this command."; |
30 |
|
|
|
31 |
|
|
async execute(message: CommandMessage, context: AnyCommandContext): Promise<CommandReturn> { |
32 |
|
|
await this.deferIfInteraction(message); |
33 |
|
|
|
34 |
|
|
const queues = this.client.queueManager.queues |
35 |
|
|
.filter(queue => queue.options.name === "ReminderQueue" && queue.options.userId === message.member!.user!.id) |
36 |
|
|
.toJSON(); |
37 |
|
|
|
38 |
|
|
const paginator = new Pagination(queues, { |
39 |
|
|
channelId: message.channelId!, |
40 |
|
|
client: this.client, |
41 |
|
|
guildId: message.guildId!, |
42 |
|
|
limit: 10, |
43 |
|
|
userId: message.member?.user.id, |
44 |
|
|
timeout: 180_000, |
45 |
|
|
embedBuilder({ data, currentPage, maxPages }) { |
46 |
|
|
let description = ""; |
47 |
|
|
|
48 |
|
|
for (const queue of data) { |
49 |
|
|
const content = queue.options.args[1]; |
50 |
|
|
description += `**#${queue.id}**: ${content == "" ? "*No message*" : content} (${time( |
51 |
|
|
queue.options.willRunAt, |
52 |
|
|
"R" |
53 |
|
|
)})\n`; |
54 |
|
|
} |
55 |
|
|
|
56 |
|
|
description = description == "" ? "*No reminder found.*" : description; |
57 |
|
|
|
58 |
|
|
return new EmbedBuilder({ |
59 |
|
|
title: "Reminders", |
60 |
|
|
author: { |
61 |
|
|
name: message.member!.user.username, |
62 |
|
|
icon_url: (message.member!.user as User)?.displayAvatarURL?.() ?? undefined |
63 |
|
|
}, |
64 |
|
|
description, |
65 |
|
|
color: 0x007bff, |
66 |
|
|
footer: { |
67 |
|
|
text: `Page ${currentPage} of ${maxPages} • ${queues.length} reminders total` |
68 |
|
|
}, |
69 |
|
|
timestamp: new Date().toISOString() |
70 |
|
|
}); |
71 |
|
|
} |
72 |
|
|
}); |
73 |
|
|
|
74 |
|
|
const reply = await this.deferredReply(message, await paginator.getMessageOptions()); |
75 |
|
|
await paginator.start(reply!); |
76 |
|
|
} |
77 |
|
|
} |