enable minified state names by default in prod

This commit is contained in:
Benedikt Bartscher 2024-07-25 23:02:29 +02:00 committed by Masen Furer
parent 8fc8fd9ec7
commit 51aef9fd22
No known key found for this signature in database
GPG Key ID: B0008AD22B3B3A95

View File

@ -6,7 +6,7 @@ from enum import Enum
from types import SimpleNamespace
from reflex.base import Base
from reflex.constants import Dirs
from reflex.constants import ENV_MODE_ENV_VAR, Dirs, Env
from reflex.utils.imports import ImportVar
# The prefix used to create setters for state vars.
@ -15,6 +15,9 @@ SETTER_PREFIX = "set_"
# The file used to specify no compilation.
NOCOMPILE_FILE = "nocompile"
# The env var to toggle minification of states.
ENV_MINIFY_STATES = "REFLEX_MINIFY_STATES"
class Ext(SimpleNamespace):
"""Extension used in Reflex."""
@ -31,6 +34,20 @@ class Ext(SimpleNamespace):
EXE = ".exe"
def minify_states() -> bool:
"""Whether to minify states.
Returns:
True if states should be minified.
"""
env = os.environ.get(ENV_MINIFY_STATES, None)
if env is not None:
return env.lower() == "true"
# minify states in prod by default
return os.environ.get(ENV_MODE_ENV_VAR, "") == Env.PROD.value
class CompileVars(SimpleNamespace):
"""The variables used during compilation."""
@ -62,10 +79,10 @@ class CompileVars(SimpleNamespace):
CONNECT_ERROR = "connectErrors"
# The name of the function for converting a dict to an event.
TO_EVENT = "Event"
# The env var to toggle minification of states.
ENV_MINIFY_STATES = "REFLEX_MINIFY_STATES"
# Whether to minify states.
MINIFY_STATES = os.environ.get(ENV_MINIFY_STATES, False)
MINIFY_STATES = minify_states()
# The name of the OnLoadInternal state.
ON_LOAD_INTERNAL_STATE = (
"l" if MINIFY_STATES else "reflex___state____on_load_internal_state"