Как перемещаться вперед и назад по странице справки, используя ожидающие реакции discord.js

#javascript #node.js #discord #discord.js

Вопрос:

Это мой пример кода:

 const Discord = require('discord.js')
module.exports = {
    name: 'help',
    description: 'help',
    execute(message, args) { 
        const embed = new Discord.MessageEmbed()
            .setTitle('Page One')
            .setDescription('This is page one')
        message.channel.send(embed).then((msg) => {  
            msg.react('⬅️')
            msg.react('➡️')
 
            const filter = (reaction, user) => {
                return ['⬅️', '➡️'].includes(reaction.emoji.name) amp;amp; user.id === message.author.id;
            };

            msg.awaitReactions(filter, { max: 1, time: 60000, errors: ['time'] })
                .then(collected => {
                    const reaction = collected.first()

                    if (reaction.emoji.name === '⬅️') {

                        message.channel.send(embed)
                    } 
                    else {
                        const secEmbed = new Discord.MessageEmbed()
                            .setTitle('Help')
                            .setDescription('This is help page 2')
                        msg.edit(secEmbed);
                    }
                }) 
        })
    }
} 
 

Это работает, но когда я пытаюсь переместить его назад на предыдущую страницу после того, как я перешел на вторую страницу, эта штука перестает работать…. Я имел в виду, что тогда страницы встраивания не будут перемещаться вперед или назад. Есть ли в любом случае способ решить эту проблему? Спасибо.

Ответ №1:

Вы можете просто позвонить msg.awaitReactions() еще раз; оберните его в функцию, чтобы упростить повторение сбора реакций.

С помощью msg.awaitReactions() :

 message.channel.send(embed).then((msg) => {
  msg.react("⬅️");
  msg.react("➡️");

  function handleReactions() {
    const filter = (reaction, user) => {
      return ['⬅️', '➡️'].includes(reaction.emoji.name) amp;amp; user.id === message.author.id;
    };

    msg.awaitReactions(filter, {max: 1, time: 60000, errors: ["time"]})
      .then((collected) => {
        const reaction = collected.first();
        const name = reaction.emoji.name;
        if (name === "⬅️") {
          // edit page a certain way
          handleReactions();
        } else if (name === "➡️") {
          // edit page another way
          handleReactions();
        }
      });
  }
  handleReactions();

});
 

Другим способом было бы прослушивание событий реакции:

 message.channel.send(embed).then((msg) => {
  msg.react("⬅️");
  msg.react("➡️");

  // handles reactions
  function handleReaction(reaction, user) {
    // ignore the reaction if the reaction is on a different message
    if (reaction.message.id !== msg.id amp;amp; user.id === message.author.id) {return;}

    const name = reaction.emoji.name;
    if (name === "⬅️") {
      // move page a certain way
    } else if (name === "➡️") {
      // move page another way
    }
    
  }

  // add a listener for message reactions
  message.client.on("messageReactionAdd", handleReaction);

  // wait a specific amount of time to stop listening
  setTimeout(() => {
    // remove the listener
    message.client.off("messageReactionAdd", handleReaction);
  }, 60000); // 60 seconds

  /*
    You could add functions to reset the timeout after each reaction as well.
  */

});