aboutsummaryrefslogtreecommitdiff
path: root/src/commands/leveling/leaderboard.ts
blob: 3f7fac80c843abf6f0b84923c81c2927a7f08924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { BushCommand, BushMessage, BushSlashMessage, ButtonPaginator, Level } from '@lib';
import { MessageEmbed } from 'discord.js';

export default class LeaderboardCommand extends BushCommand {
	public constructor() {
		super('leaderboard', {
			aliases: ['leaderboard', 'lb'],
			category: 'leveling',
			description: {
				content: 'Allows you to see the users with the highest levels in the server.',
				usage: 'leaderboard [page]',
				examples: ['leaderboard 5']
			},
			args: [
				{
					id: 'page',
					type: 'integer',
					prompt: {
						start: 'What would you like to set your first argument to be?',
						retry: '{error} Pick a valid argument.',
						optional: true
					}
				}
			],
			slash: true,
			slashOptions: [
				{
					name: 'page',
					description: 'What would you like to set your first argument to be?',
					type: 'INTEGER',
					required: false
				}
			],
			channel: 'guild',
			clientPermissions: (m) => util.clientSendAndPermCheck(m),
			userPermissions: []
		});
	}

	public override async exec(message: BushMessage | BushSlashMessage, args: { page: number }): Promise<unknown> {
		if (!message.guild) return await message.util.reply(`${util.emojis.error} This command can only be run in a server.`);
		if (!(await message.guild.hasFeature('leveling')))
			return await message.util.reply(
				`${util.emojis.error} This command can only be run in servers with the leveling feature enabled.${
					message.member?.permissions.has('MANAGE_GUILD')
						? ` You can toggle features using the \`${util.prefix(message)}features\` command.`
						: ''
				}`
			);

		const ranks = (await Level.findAll({ where: { guild: message.guild.id } })).sort((a, b) => b.xp - a.xp);
		const mappedRanks = ranks.map(
			(val, index) => `\`${index + 1}\` <@${val.user}> - Level ${val.level} (${val.xp.toLocaleString()} xp)`
		);
		const chunked = util.chunk(mappedRanks, 25);
		const embeds = chunked.map((c) =>
			new MessageEmbed().setTitle(`${message.guild!.name}'s Leaderboard`).setDescription(c.join('\n'))
		);
		return await ButtonPaginator.send(message, embeds, undefined, true, args?.page ?? undefined);
	}
}