30 lines
1001 B
Python
30 lines
1001 B
Python
import json
|
|
|
|
from fasthtml.xtend import Script
|
|
|
|
from myfasthtml.core.commands import BaseCommand
|
|
from myfasthtml.core.instances import MultipleInstance
|
|
|
|
|
|
class Mouse(MultipleInstance):
|
|
"""
|
|
Represents a mechanism to manage mouse event combinations and their associated commands.
|
|
|
|
This class is used to add, manage, and render mouse event sequences with corresponding
|
|
commands, providing a flexible way to handle mouse interactions programmatically.
|
|
"""
|
|
def __init__(self, parent, _id=None, combinations=None):
|
|
super().__init__(parent, _id=_id)
|
|
self.combinations = combinations or {}
|
|
|
|
def add(self, sequence: str, command: BaseCommand):
|
|
self.combinations[sequence] = command
|
|
return self
|
|
|
|
def render(self):
|
|
str_combinations = {sequence: command.get_htmx_params() for sequence, command in self.combinations.items()}
|
|
return Script(f"add_mouse_support('{self._parent.get_id()}', '{json.dumps(str_combinations)}')")
|
|
|
|
def __ft__(self):
|
|
return self.render()
|