Dysta / disnake-ext-components

An extension for disnake aimed at making component interactions with listeners somewhat less cumbersome.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

disnake-ext-components

An extension for disnake aimed at making component interactions with listeners somewhat less cumbersome.
Requires disnake version 2.5.0 or above.

Key Features

  • Smoothly integrates with disnake,
  • Use an intuitive disnake slash-command-like syntax to create stateful persistent components,
  • custom_id matching, conversion, and creation are automated for you,
  • Allows you to implement custom regex for your listeners if you need more customized behavior.

Installing

Python 3.8 or higher is required

To install the extension, run the following command in your command prompt:

# Linux/macOS
python3 -m pip install -U git+https://github.com/Chromosomologist/disnake-ext-components

# Windows
py -3 -m pip install -U git+https://github.com/Chromosomologist/disnake-ext-components

I will hopefully get it on PyPI soon-ish, but for now you'll have to install from github (which requires git to be installed on your pc).
It will be installed to your existing disnake installation as an extension. From there, it can be imported as:

from disnake.ext import components

Example

Inside a cog

import disnake
from disnake.ext import commands, components


class MyCog(commands.Cog):

    def __init__(self, bot: commands.Bot):
        self.bot = bot

    @components.component_listener()
    async def secret_listener(self, inter: disnake.MessageInteraction, *, secret: str, author: disnake.Member):
        await inter.response.send_message(f"You found {author.mention}'s secret message: '{secret}'!")

    @commands.slash_command()
    async def make_secret(self, inter: disnake.CommandInteraction, secret: str):
        """Store a secret message in a button!"""
        await ctx.send(
            "Press this button to reveal the secret!",
            components=disnake.ui.Button(
                label="Reveal secret...",
                custom_id=self.secret_listener.create_custom_id(secret=secret, author=inter.author),
                # e.g. "secret_listener:extreme secrecy right here:872576125384147005"
            )
        )


def setup(bot: commands.Bot):
    bot.add_cog(MyCog(bot))

This example is complete and should run as-is when loaded into a bot.

Outside a cog

import disnake
from disnake.ext import commands, components


bot = disnake.Bot(commands.when_mentioned)

@components.component_listener(bot=bot)
async def secret_listener(inter: disnake.MessageInteraction, *, secret: str, author: disnake.Member):
    await inter.response.send_message(f"You found {author.mention}'s secret message: '{secret}'!")

@commands.slash_command()
async def make_secret(inter: disnake.CommandInteraction, secret: str):
    """Store a secret message in a button!"""
    await ctx.send(
        "Press this button to reveal the secret!",
        components=disnake.ui.Button(
            label="Reveal secret...",
            custom_id=secret_listener.create_custom_id(secret=secret, author=inter.author),
        )
    )

This example is complete and should run as-is.

For more examples, see the examples folder.

To-Do

  • PyPI release,
  • Contribution guidelines,
  • Support some sort of dependency injection.

Contributing

Any contributions are welcome, feel free to open an issue or pull request if you'd like to see something added. Contribution guidelines will come soon, and hopefully I'll figure out how to do some simple CI to automatic black/pyright/mypy up and running.

About

An extension for disnake aimed at making component interactions with listeners somewhat less cumbersome.

License:MIT License


Languages

Language:Python 100.0%