mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
55 lines
No EOL
1.5 KiB
JavaScript
55 lines
No EOL
1.5 KiB
JavaScript
const { SlashCommandBuilder } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand"),
|
|
i18next = require("i18next"),
|
|
autoUpdateDocs = require("../../helpers/autoUpdateDocs");
|
|
|
|
class Reload extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/JaBa")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("reload")
|
|
.setDescription(client.translate("owner/reload:DESCRIPTION"))
|
|
.setDMPermission(true)
|
|
.addStringOption(option => option.setName("command")
|
|
.setDescription(client.translate("common:COMMAND"))
|
|
.setRequired(true)),
|
|
aliases: [],
|
|
dirname: __dirname,
|
|
ownerOnly: true,
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
*/
|
|
async onLoad() {
|
|
//...
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
* @param {Object} data
|
|
*/
|
|
async execute(client, interaction) {
|
|
const command = interaction.options.getString("command");
|
|
const cmd = client.commands.get(command);
|
|
if (!cmd) return interaction.error("owner/reload:NOT_FOUND", { command }, { ephemeral: true });
|
|
|
|
await client.unloadCommand(`../commands/${cmd.category}`, cmd.command.name);
|
|
await client.loadCommand(`../commands/${cmd.category}`, cmd.command.name);
|
|
|
|
i18next.reloadResources(["ru-RU", "uk-UA"]);
|
|
autoUpdateDocs.update(client);
|
|
|
|
interaction.success("owner/reload:SUCCESS", {
|
|
command: cmd.command.name,
|
|
}, { ephemeral: true });
|
|
}
|
|
}
|
|
|
|
module.exports = Reload; |