mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
84 lines
2.3 KiB
JavaScript
84 lines
2.3 KiB
JavaScript
const { SlashCommandBuilder, EmbedBuilder, parseEmoji } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Emoji extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/Client")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("emoji")
|
|
.setDescription(client.translate("general/emoji:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("general/emoji:DESCRIPTION", null, "uk-UA"),
|
|
ru: client.translate("general/emoji:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setDMPermission(true)
|
|
.addStringOption(option =>
|
|
option
|
|
.setName("emoji")
|
|
.setDescription(client.translate("common:EMOJI"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("commom:EMOJI", null, "uk-UA"),
|
|
ru: client.translate("common:EMOJI", null, "ru-RU"),
|
|
})
|
|
.setRequired(true),
|
|
),
|
|
aliases: [],
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/Client")} client
|
|
*/
|
|
async onLoad() {
|
|
//...
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/Client")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
* @param {Object} data
|
|
*/
|
|
async execute(client, interaction) {
|
|
const rawEmoji = interaction.options.getString("emoji");
|
|
const parsedEmoji = parseEmoji(rawEmoji);
|
|
|
|
const embed = new EmbedBuilder()
|
|
.setAuthor({
|
|
name: interaction.translate("general/emoji:TITLE", {
|
|
emoji: parsedEmoji.name,
|
|
}),
|
|
})
|
|
.setColor(client.config.embed.color)
|
|
.setFooter(client.config.embed.footer)
|
|
.addFields([
|
|
{
|
|
name: interaction.translate("common:NAME"),
|
|
value: parsedEmoji.name,
|
|
},
|
|
{
|
|
name: interaction.translate("general/emoji:ANIMATED"),
|
|
value: parsedEmoji.animated ? interaction.translate("common:YES") : interaction.translate("common:NO"),
|
|
},
|
|
{
|
|
name: interaction.translate("common:ID"),
|
|
value: parsedEmoji.id?.toString() || interaction.translate("general/emoji:STANDART"),
|
|
},
|
|
{
|
|
name: interaction.translate("general/emoji:LINK"),
|
|
value: `https://cdn.discordapp.com/emojis/${parsedEmoji.id}.${parsedEmoji.animated ? "gif" : "png"}`,
|
|
},
|
|
]);
|
|
|
|
interaction.reply({
|
|
embeds: [embed],
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = Emoji;
|