-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
improve event handler state references #2818
Merged
picklelo
merged 1 commit into
reflex-dev:main
from
benedikt-bartscher:event-handler-state-refs
Mar 11, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
import json | ||
import os | ||
import re | ||
import sys | ||
from typing import TYPE_CHECKING, Any, List, Union | ||
|
||
from reflex import constants | ||
|
@@ -470,18 +469,18 @@ def get_event_handler_parts(handler: EventHandler) -> tuple[str, str]: | |
if len(parts) == 1: | ||
return ("", parts[-1]) | ||
|
||
# Get the state and the function name. | ||
state_name, name = parts[-2:] | ||
# Get the state full name | ||
state_full_name = handler.state_full_name | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is nicer, good call |
||
|
||
# Construct the full event handler name. | ||
try: | ||
# Try to get the state from the module. | ||
state = vars(sys.modules[handler.fn.__module__])[state_name] | ||
except Exception: | ||
# If the state isn't in the module, just return the function name. | ||
# Get the function name | ||
name = parts[-1] | ||
|
||
from reflex.state import State | ||
|
||
if state_full_name == "state" and name not in State.__dict__: | ||
return ("", to_snake_case(handler.fn.__qualname__)) | ||
|
||
return (state.get_full_name(), name) | ||
return (state_full_name, name) | ||
|
||
|
||
def format_event_handler(handler: EventHandler) -> str: | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Empty