Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] Add a decorator to handle message components #322

Open
AnInternetTroll opened this issue Aug 11, 2022 · 0 comments
Open
Labels
enhancement ✨ New feature or request

Comments

@AnInternetTroll
Copy link

What do you want to request?
A decorator to react to message component events, such as a button being pressed

Do you have any solutions?
I think right now the way to do this is

client.on("interaction", (e) => {
	if (e.isMessageComponent()) {
		handleComponent(e);
	}
})

But this isn't pretty and does not work too well with ApplicationCommandsModule.

Do you have anything to tell us about your request?
Other events, such as slash commands and autocomplete have their own decorators that work wonderfully (@slash and @autocomplete)

@AnInternetTroll AnInternetTroll added the enhancement ✨ New feature or request label Aug 11, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement ✨ New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant