2.4.0 • Published 3 years ago

reaction-core v2.4.0

Weekly downloads
86
License
MIT
Repository
github
Last release
3 years ago

reaction-core

This is an NPM module that allows you to create snazzy little menus on your bot's messages using reactions. Note that currently only default Discord emotes will work.

Now with support for custom emoji! You must provide only the numerical part of the emoji ID as the Button's emoji in order for this to work.

Development

Currently reaction-core is being maintained by Discord user Mundane#9887. There is still some additional functionality to add, and suggestions and bug reports are welcome and encouraged.

Basic Usage

See example.js for the complete code.

Firstly, grab the module and make a handler. The handler will handle all the incoming emoji reactions, as well as save and load past menus.

const RC = require('reaction-core')
const handler = new RC.Handler()

Secondly, handle reactions being made:

client.on('messageReactionAdd', (messageReaction, user) => handler.handle(messageReaction, user))

That's all you have to do to ensure all your menus will function correctly. To actually make a menu, a few more steps are needed.

A menu is basically a message with a collection of emoji that execute specific callbacks, known as buttons. One menu can have up to 20 buttons; this is Discord's limit of the amount of reactions you can have on one message. You could, however, have a button that changes all the buttons (changing page, if you like), effectively making the limit useless. Below is example code for creating a simple menu that just changes the colour of the embed of the menu. There are endless possibilities to what it can actually do - some uses I know of are a jukebox and a user moderation menu where each button is a different moderation action. The code for the buttons is in exButtons.js, so that only code relevant to the module is in the main example file.

Note that in the following code, I use an array of object literals as my buttons. reaction-core also exports a Button class that can be used to create buttons.

First, let's create the menu, passing it the text to display and it's buttons.

let changeColour = new RC.Menu(example.embed, example.buttons, example.options)

The options object currently owner supports setting an 'owner', whereby the specified user is the only one who can interact with the menu, specified by ID. An example options object is

{
  owner: '216399535390326794'
}

Next, register the menu to the handler.

handler.addMenus(changeColour)

Like the previous code, you can specify an infinite number of menus at once.

Finally, send the menu. You can do this however you want; I did it in an example command ran by doing rc!test:

client.on('message', message => {
  if (!message.author.bot && message.content === 'rc!test') {
    message.channel.sendMenu(changeColour)
  }
})

And that's it! The menu will get sent, and clicking the buttons changes the colour of the embed. example.js will compile and run if you give it a valid bot token at the bottom of the file.

To-Do:

  • Better error-checking and reporting.
  • Finish this list.
2.4.0

3 years ago

2.3.1

3 years ago

2.3.0

5 years ago

2.2.0

5 years ago

2.1.0

6 years ago

2.0.6

6 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.2.0

6 years ago

1.1.6

7 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago