Skip to main content

A py-cord extension for easy creation of reactive views

Reason this release was yanked:

I did bs

Project description

Pycord Reactive Views

Pycord Reactive Views is a powerful library that extends Pycord, bringing reactive programming to Discord bot development. It enables developers to create dynamic, responsive user interfaces for their bots with ease.

Color select example

Table of Contents

What is Reactivity?

Reactivity is a programming paradigm commonly used in front-end development. It allows for the creation of dynamic user interfaces that update in real-time based on changes in the underlying data. Pycord Reactive Views brings this powerful concept to Discord bot development.

In Pycord, reactivity is implemented through View classes. These classes are responsible for:

  • Rendering the user interface
  • Updating the UI in response to data changes
  • Handling user interactions

Features

  • Reactive Components: Create buttons, select menus, and other Discord components that automatically update based on your bot's state.
  • Declarative Syntax: Define your UI logic in a clear, declarative manner.
  • Easy Integration: Seamlessly integrates with existing Pycord projects.
  • Performance Optimized: Efficiently updates only the components that have changed.

Installation

To install Pycord Reactive Views, use pip:

pip install pycord-reactive-views

Ensure you have Pycord installed as well:

pip install py-cord

Quick Start

Here's a simple example of a reactive counter view:

from pycord_reactive_views import ReactiveView, ReactiveButton, ReactiveValue

class Counter(ReactiveView):
    def __init__(self):
        super().__init__()
        self.counter = 0
        self.counter_button = ReactiveButton(
            label=ReactiveValue(lambda: f"Count: {self.counter}", "Count: 0"),
            style=ReactiveValue(
                lambda: discord.ButtonStyle.primary if self.counter % 2 == 0 else discord.ButtonStyle.secondary,
                discord.ButtonStyle.primary,
            ),
        )
        self.reset_button = ReactiveButton(
            label="Reset",
            style=discord.ButtonStyle.danger,
            disabled=ReactiveValue(lambda: self.counter == 0, True),
        )
        self.counter_button.callback = self._increment
        self.reset_button.callback = self._reset
        self.add_item(self.counter_button)
        self.add_item(self.reset_button)

    async def _increment(self, interaction: discord.Interaction) -> None:
        await interaction.response.defer()
        self.counter += 1
        await self.update()

    async def _reset(self, interaction: discord.Interaction) -> None:
        await interaction.response.defer()
        self.counter = 0
        await self.update()

# Usage in your bot
@bot.command()
async def counter(ctx):
    view = Counter()
    await Counter().send(ctx)

Counter Example

This example demonstrates how to bind a button's label, style, and disabled state to functions that determine their values based on the current state of the counter.

Documentation

Comprehensive documentation is coming soon. In the meantime, please refer to the examples in the examples directory and the inline comments in the source code for guidance on using Pycord Reactive Views.

Examples

Check out the examples directory in our GitHub repository for more detailed examples of how to use Pycord Reactive Views in various scenarios.

Contributing

We welcome contributions to Pycord Reactive Views! If you'd like to contribute, please:

  1. Fork the repository
  2. Create a new branch for your feature or bug fix
  3. Make your changes and write tests if applicable
  4. Submit a pull request with a clear description of your changes

For major changes or feature requests, please open an issue first to discuss what you would like to change.

License

Pycord Reactive Views is licensed under the MIT License. See the LICENSE file for more information.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycord_reactive_views-1.0.3.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pycord_reactive_views-1.0.3-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file pycord_reactive_views-1.0.3.tar.gz.

File metadata

File hashes

Hashes for pycord_reactive_views-1.0.3.tar.gz
Algorithm Hash digest
SHA256 b80232f9427791dd41281a27c92617db2e2f0d1b812e300f50c8c76ac96aad21
MD5 901e36e6f0356ccf4628c6768ad20f4d
BLAKE2b-256 5173f86f646414f276937c8d36d1e4214d7cb908ec10707404718c6a71de99a3

See more details on using hashes here.

File details

Details for the file pycord_reactive_views-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for pycord_reactive_views-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6f44fab32db67997a5bf70db365ec379a062731ff591e01aef846d0862ed87d9
MD5 4b4eca60d0691502e5126fee102bd249
BLAKE2b-256 8435229c437ef01eb67dcd9f1f3c7d07376e0da22b204d4a0d94698572f7f4d3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page