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 { stripIndent } from 'common-tags';
import { ApplicationCommandOptionType } from 'discord-api-types';
import { Message } from 'discord.js';
import { BushCommand } from '../../lib/extensions/BushCommand';
import { BushInteractionMessage } from '../../lib/extensions/BushInteractionMessage';
import { SlashCommandOption } from '../../lib/extensions/Util';
export default class ReloadCommand extends BushCommand {
constructor() {
super('reload', {
aliases: ['reload'],
category: 'dev',
description: {
content: 'Reloads the bot',
usage: 'reload',
examples: ['reload']
},
args: [
{
id: 'fast',
match: 'flag',
flag: '--fast'
}
],
ownerOnly: true,
typing: true,
slashCommandOptions: [
{
type: ApplicationCommandOptionType.BOOLEAN,
name: 'fast',
description: 'Wheather to use esbuild for fast compiling or not',
required: false
}
]
});
}
private async getResponse(fast: boolean): Promise<string> {
try {
const s = new Date();
await this.client.util.shell(`yarn build-${fast ? 'esbuild' : 'tsc'}`);
this.client.commandHandler.reloadAll();
this.client.listenerHandler.reloadAll();
this.client.inhibitorHandler.reloadAll();
return `🔁 Successfully reloaded! (${new Date().getTime() - s.getTime()}ms)`;
} catch (e) {
return stripIndent`
An error occured while reloading:
${await this.client.util.haste(e.stack)}
`;
}
}
public async exec(message: Message, { fast }: { fast: boolean }): Promise<void> {
await message.util.send(await this.getResponse(fast));
}
public async execSlash(message: BushInteractionMessage, { fast }: { fast: SlashCommandOption<boolean> }): Promise<void> {
await message.interaction.reply(await this.getResponse(fast?.value));
}
}
|