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

feat: add reacton use_event hook in ipyvue instead of reacton #83

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions ipyvue/hooks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
from typing import Any, Callable, cast

import ipyvue

import reacton as react
from reacton.core import get_render_context


def use_event(
el: react.core.Element, event_and_modifiers, callback: Callable[[Any], Any]
):
# to avoid add_event_handler having a stale reference to callback
callback_ref = react.use_ref(callback)
callback_ref.current = callback

def add_event_handler():
vue_widget = cast(ipyvue.VueWidget, react.core.get_widget(el))
# we are basically copying the logic from
# reacton.core._event_handler_exception_wrapper
rc = get_render_context()
context = rc.context
assert context is not None

def handler(*args):
try:
callback_ref.current(*args)
except Exception as e:
assert context is not None
# because widgets don't have a context, but are a child of a component
# we add it to exceptions_children, not exception_self
# this allows a component to catch the exception of a direct child
context.exceptions_children.append(e)
rc.force_update()

vue_widget.on_event(event_and_modifiers, handler)

def cleanup():
vue_widget.on_event(event_and_modifiers, handler, remove=True)

return cleanup

react.use_effect(add_event_handler, [event_and_modifiers])