Make event data
a Python object that allows for deeply nested access via dot notation
#1288
Replies: 3 comments 6 replies
-
@Archmonger Curious if you have any thoughts on this. I'd love to possibly make this the next PR if we can come to an agreement on if/how it should be done. |
Beta Was this translation helpful? Give feedback.
-
Related issue: #1143 I'll be getting off work late today so I might have to write up my thoughts on this tomorrow. As a summary, we probably can't directly use munch and we'll need to create our own light wrapper (similar to |
Beta Was this translation helpful? Give feedback.
-
On a different note, I'm glad you brought this up. This is one of the three things I've been wanting merged prior to v2. |
Beta Was this translation helpful? Give feedback.
-
I'm never a fan of having to write my event handlers in ReactPy, since the provided
data
args are returned as dictionaries that must be accessed with brackets and quoted key names. Like so:It would be awesome to have those events converted to an object that allows for full access to all of the theoretically infinitely-nested dictionary properties, just like in JavaScript. Like so:
I already implemented this locally as a quick prototype using munch by editing the to_event_handler_function of /src/reactpy/core/events.py like so:
I found out about
munch
from this stackoverflow thread. There are some responses that warn of the costly time overhead thatmunch
adds - not to mention dependency overhead. It'd probably be simple enough to create a custom class that could also handle commonly expected cases, such as keys with dashes (e.g.aria-label
) by converting the dashes to underscores for the dot accessor (e.g.e.aria_label
). These solutions of course allow for the standard dictionary access, so have full backwards compatability.Any thoughts or concerns?
Beta Was this translation helpful? Give feedback.
All reactions