Update queue.js
This commit is contained in:
parent
cb9bf7d7a1
commit
ca3b6bcdd4
|
@ -8,6 +8,8 @@ module.exports = {
|
|||
const queue = getQueue(message.guild.id);
|
||||
const currentTrack = getCurrentTrack(message.guild.id);
|
||||
|
||||
const pageSize = 8;
|
||||
|
||||
const embed = new EmbedBuilder()
|
||||
.setColor('#0099ff')
|
||||
.setTitle('Current Queue');
|
||||
|
@ -18,16 +20,16 @@ module.exports = {
|
|||
: currentTrack.title;
|
||||
embed.addFields({
|
||||
name: 'Currently playing',
|
||||
value: `${currentTrackDisplay} \nRequested by: ${currentTrack.requester}`,
|
||||
value: `${currentTrackDisplay}\nRequested by: ${currentTrack.requester}`,
|
||||
inline: false
|
||||
});
|
||||
}
|
||||
|
||||
if (queue.length > 0) {
|
||||
const queueDisplay = queue.map((track, index) => {
|
||||
const queueDisplay = queue.slice(0, pageSize).map((track, index) => {
|
||||
const trackDisplay = track.url
|
||||
? `**${index + 1}.** [${track.title}](${track.url}) \nRequested by: ${track.requester}`
|
||||
: `**${index + 1}.** ${track.title} \nRequested by: ${track.requester}`;
|
||||
? `**${index + 1}.** [${track.title}](${track.url})\nRequested by: ${track.requester}`
|
||||
: `**${index + 1}.** ${track.title}\nRequested by: ${track.requester}`;
|
||||
return trackDisplay;
|
||||
}).join('\n\n');
|
||||
|
||||
|
@ -36,6 +38,10 @@ module.exports = {
|
|||
value: queueDisplay,
|
||||
inline: false
|
||||
});
|
||||
|
||||
if (queue.length > pageSize) {
|
||||
embed.setFooter({ text: `And ${queue.length - pageSize} more...` });
|
||||
}
|
||||
} else if (!currentTrack) {
|
||||
embed.setDescription('The queue is empty!');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue