mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
211 lines
7.4 KiB
JavaScript
211 lines
7.4 KiB
JavaScript
const { SlashCommandBuilder, EmbedBuilder, ActionRowBuilder, StringSelectMenuBuilder, StringSelectMenuOptionBuilder, ButtonBuilder, ButtonStyle } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Queue extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/JaBa")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("queue")
|
|
.setDescription(client.translate("music/queue:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("music/queue:DESCRIPTION", null, "uk-UA"),
|
|
ru: client.translate("music/queue:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setDMPermission(false),
|
|
aliases: [],
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
*/
|
|
async onLoad(client) {
|
|
client.on("interactionCreate", async interaction => {
|
|
if (!interaction.isButton()) return;
|
|
|
|
if (interaction.customId.startsWith("queue_")) {
|
|
const queue = client.player.nodes.get(interaction.guildId);
|
|
if (!queue) return interaction.error("music/play:NOT_PLAYING");
|
|
|
|
const { embeds, size } = generateQueueEmbeds(client, interaction, queue);
|
|
|
|
let currentPage = Number(interaction.message.content.match(/\d+/g)[0]) - 1 ?? 0;
|
|
|
|
const row = new ActionRowBuilder().addComponents(
|
|
new ButtonBuilder().setCustomId("queue_prev_page").setStyle(ButtonStyle.Primary).setEmoji("⬅️"),
|
|
new ButtonBuilder().setCustomId("queue_next_page").setStyle(ButtonStyle.Primary).setEmoji("➡️"),
|
|
new ButtonBuilder().setCustomId("queue_jump_page").setStyle(ButtonStyle.Secondary).setEmoji("↗️"),
|
|
new ButtonBuilder().setCustomId("queue_stop").setStyle(ButtonStyle.Danger).setEmoji("⏹️"),
|
|
);
|
|
|
|
if (interaction.customId === "queue_prev_page") {
|
|
await interaction.deferUpdate();
|
|
|
|
if (currentPage !== 0) {
|
|
--currentPage;
|
|
|
|
interaction.editReply({
|
|
content: `${interaction.translate("common:PAGE")}: **${currentPage + 1}**/**${size}**`,
|
|
embeds: [embeds[currentPage]],
|
|
components: [row],
|
|
});
|
|
}
|
|
} else if (interaction.customId === "queue_next_page") {
|
|
await interaction.deferUpdate();
|
|
|
|
if (currentPage < size - 1) {
|
|
currentPage++;
|
|
|
|
interaction.editReply({
|
|
content: `${interaction.translate("common:PAGE")}: **${currentPage + 1}**/**${size}**`,
|
|
embeds: [embeds[currentPage]],
|
|
components: [row],
|
|
});
|
|
}
|
|
} else if (interaction.customId === "queue_jump_page") {
|
|
await interaction.deferUpdate();
|
|
|
|
const selectMenu = new StringSelectMenuBuilder()
|
|
.setCustomId("queue_select")
|
|
.setPlaceholder(interaction.translate("common:NOTHING_SELECTED"));
|
|
|
|
for (let i = 0; i < size; i++) {
|
|
selectMenu.addOptions(
|
|
new StringSelectMenuOptionBuilder()
|
|
.setLabel(`${i + 1}`)
|
|
.setValue(`${i}`),
|
|
);
|
|
}
|
|
|
|
const selectRow = new ActionRowBuilder().addComponents(selectMenu),
|
|
msg = await interaction.followUp({
|
|
components: [selectRow],
|
|
ephemeral: true,
|
|
});
|
|
|
|
const filter = i => i.user.id === interaction.user.id,
|
|
collected = await msg.awaitMessageComponent({ filter, time: 10 * 1000 }),
|
|
page = Number(collected.values[0]);
|
|
|
|
await collected.deferUpdate();
|
|
|
|
return interaction.editReply({
|
|
content: `${interaction.translate("common:PAGE")}: **${page + 1}**/**${size}**`,
|
|
embeds: [embeds[page]],
|
|
components: [row],
|
|
});
|
|
} else if (interaction.customId === "queue_stop") {
|
|
await interaction.deferUpdate();
|
|
|
|
row.components.forEach(component => {
|
|
component.setDisabled(true);
|
|
});
|
|
|
|
return interaction.editReply({
|
|
components: [row],
|
|
});
|
|
}
|
|
}
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
* @param {Object} data
|
|
*/
|
|
async execute(client, interaction) {
|
|
const queue = client.player.nodes.get(interaction.guildId);
|
|
if (!queue) return interaction.error("music/play:NOT_PLAYING");
|
|
|
|
const { embeds, size } = generateQueueEmbeds(client, interaction, queue),
|
|
row = new ActionRowBuilder().addComponents(
|
|
new ButtonBuilder().setCustomId("queue_prev_page").setStyle(ButtonStyle.Primary).setEmoji("⬅️"),
|
|
new ButtonBuilder().setCustomId("queue_next_page").setStyle(ButtonStyle.Primary).setEmoji("➡️"),
|
|
new ButtonBuilder().setCustomId("queue_jump_page").setStyle(ButtonStyle.Secondary).setEmoji("↗️"),
|
|
new ButtonBuilder().setCustomId("queue_stop").setStyle(ButtonStyle.Danger).setEmoji("⏹️"),
|
|
);
|
|
|
|
if (interaction.customId) return await interaction.followUp({
|
|
content: `${interaction.translate("common:PAGE")}: **1**/**${size}**`,
|
|
embeds: [embeds[0]],
|
|
components: [row],
|
|
});
|
|
|
|
await interaction.reply({
|
|
content: `${interaction.translate("common:PAGE")}: **1**/**${size}**`,
|
|
embeds: [embeds[0]],
|
|
components: [row],
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
* @param {import("discord-player").GuildQueue} queue
|
|
* @returns
|
|
*/
|
|
function generateQueueEmbeds(client, interaction, queue) {
|
|
const embeds = [],
|
|
currentTrack = queue.currentTrack,
|
|
translated = {
|
|
"AUTOPLAY": interaction.translate("music/nowplaying:AUTOPLAY"),
|
|
"QUEUE": interaction.translate("music/nowplaying:QUEUE"),
|
|
"TRACK": interaction.translate("music/nowplaying:TRACK"),
|
|
"OFF": interaction.translate("common:DISABLED"),
|
|
"0": interaction.translate("common:DISABLED"),
|
|
};
|
|
|
|
let k = 10;
|
|
|
|
if (!queue.tracks.size) {
|
|
const embed = new EmbedBuilder()
|
|
.setTitle(interaction.translate("music/nowplaying:CURRENTLY_PLAYING"))
|
|
.setThumbnail(currentTrack.thumbnail)
|
|
.setColor(interaction.client.config.embed.color)
|
|
.setDescription(
|
|
`${interaction.translate("music/nowplaying:REPEAT")}: \`${translated[queue.repeatMode]}\`\n${
|
|
currentTrack.url.startsWith("./clips") ? `${currentTrack.title} (clips)` : `[${currentTrack.title}](${currentTrack.url})`
|
|
}\n> ${interaction.translate("music/queue:ADDED")} ${currentTrack.requestedBy}\n\n**${interaction.translate("music/queue:NEXT")}**\n${interaction.translate("music/queue:NO_QUEUE")}`,
|
|
)
|
|
.setTimestamp();
|
|
embeds.push(embed);
|
|
|
|
return { embeds: embeds, size: embeds.length };
|
|
}
|
|
|
|
for (let i = 0; i < queue.getSize(); i += 10) {
|
|
const current = queue.tracks.toArray().slice(i, k);
|
|
let j = i;
|
|
k += 10;
|
|
|
|
const info = current.map(track => `${++j}. ${track.url.startsWith("./clips") ? `${track.title} (clips)` : `[${track.title}](${track.url})`}\n> ${interaction.translate("music/queue:ADDED")} ${track.requestedBy}`).join("\n");
|
|
|
|
const embed = new EmbedBuilder()
|
|
.setTitle(interaction.translate("music/nowplaying:CURRENTLY_PLAYING"))
|
|
.setThumbnail(currentTrack.thumbnail)
|
|
.setColor(interaction.client.config.embed.color)
|
|
.setDescription(
|
|
`${interaction.translate("music/nowplaying:REPEAT")}: \`${translated[queue.repeatMode]}\`\n${
|
|
currentTrack.url.startsWith("./clips") ? `${currentTrack.title} (clips)` : `[${currentTrack.title}](${currentTrack.url})`
|
|
}\n * ${interaction.translate("music/queue:ADDED")} ${
|
|
currentTrack.requestedBy
|
|
}\n\n**${interaction.translate("music/queue:NEXT")}**\n${info}`,
|
|
)
|
|
.setFooter(client.config.embed.footer)
|
|
.setTimestamp();
|
|
embeds.push(embed);
|
|
}
|
|
|
|
return { embeds: embeds, size: embeds.length };
|
|
}
|
|
|
|
module.exports = Queue;
|