1 |
import DiscordClient from "../client/Client"; |
2 |
import MessageEmbed from "../client/MessageEmbed"; |
3 |
import { CommandHelpData } from "../types/CommandHelpData"; |
4 |
import Help from "../utils/Help"; |
5 |
import BaseCommand from "../utils/structures/BaseCommand"; |
6 |
|
7 |
export function getAllCommandData() { |
8 |
return Help; |
9 |
} |
10 |
|
11 |
export function findCommandData(callback: (data: CommandHelpData) => boolean) { |
12 |
return Help.find(callback); |
13 |
} |
14 |
|
15 |
export function renderCommandList(): string { |
16 |
let str = `Type \`${DiscordClient.client.config.get('prefix')}help <CommandName>\` for more information about a specific command.\n\n`; |
17 |
|
18 |
for (const cmd of Help) { |
19 |
str += `**${cmd.name}**\n${cmd.shortBrief}\n\n`; |
20 |
} |
21 |
|
22 |
return str; |
23 |
} |
24 |
|
25 |
export function renderCommandMeta(cmd: CommandHelpData | string, commandObj?: BaseCommand): MessageEmbed { |
26 |
let str = ''; |
27 |
const command = typeof cmd === 'string' ? findCommandData(c => c.name === cmd) : cmd; |
28 |
|
29 |
if (!command) |
30 |
throw new Error('Command not found: ' + cmd); |
31 |
|
32 |
const cmdObj = commandObj ?? DiscordClient.client.commands.get(command.name)!; |
33 |
|
34 |
str += `${command.description ?? command.shortBrief}\n\n`; |
35 |
str += `**Usage**\n\`${DiscordClient.client.config.get('prefix')}${command.name} ${command.structure}\`\n\n`; |
36 |
|
37 |
if (command.subcommands) { |
38 |
str += `**Subcommands**\n`; |
39 |
|
40 |
for (let key in command.subcommands) |
41 |
str += `\`${key}\` - ${command.subcommands[key]}\n` |
42 |
|
43 |
str += '\n\n'; |
44 |
} |
45 |
|
46 |
str += `**Examples**\n${command.example.replace(/\%\%/g, DiscordClient.client.config.get('prefix'))}\n\n`; |
47 |
str += `**Legacy Commands Support**\n${command.legacyCommand ? 'Available' : 'Not supported'}\n\n`; |
48 |
str += `**Slash Commands Support**\n${command.slashCommand ? 'Available' : 'Not supported'}\n\n`; |
49 |
str += `**Category**\n\`${cmdObj.getCategory()}\`\n\n`; |
50 |
str += `**Notes**\n${command.notes ?? '*No notes available*'}`; |
51 |
|
52 |
return new MessageEmbed({ |
53 |
author: { |
54 |
name: `${DiscordClient.client.config.get('prefix')}${command.name}` |
55 |
}, |
56 |
description: str |
57 |
}); |
58 |
} |