Structuring a Large App
So your Reflex app is getting large? Here's some advice on how to lay it out.
Masen Furer
·
First Steps
Reflex makes it easy to create a simple Web UI running from a single Python file:
Hello Reflex! 👋
However, as the app grows, keeping everything in a single module can quickly become messy and unmanageable.
Because a Reflex app is just a Python project, it can be organized into modules
and packages (directory with __init__.py
) and imported like any other Python objects.
What Makes a Reflex App?
When executing reflex init
or reflex run
, the framework will import two modules automatically.
Config:
Reflex first looks for an rxconfig.py
in the current working directory and
imports it. At minimum, it defines a module-level global named config
as
an instance of rx.Config
, of which the only required setting is app_name
.
App Module:
After loading the config, Reflex imports the main app module based on the
app_name
, which defines a module-level global named app
as an instance
of rx.App
.
If the app_name is example_big_app
, then the main module would be
example_big_app/example_big_app.py
.
The main app module is responsible for importing all other modules that make up the
app and defining app = rx.App()
. All other modules containing pages, state,
and models MUST be imported (directly or indirectly) by the main app module
for Reflex to include them in the compiled output.
Breaking the App into Smaller Pieces
The key to good organization as the app grows is to break down all parts of the app into smaller, more manageable modules, and organize them into logical packages that avoid circular dependencies.
Pages
Pages Package:
All complex apps will have multiple pages, so it is recommended to create example_big_app/pages
as a package.
This package contains one module per page in the app. If a particular page depends on the state, the substate should
be defined in the same module as the page. The page-returning function should be decorated with rx.page()
to have it added as a route in the app.
Templating:
Most apps consist of a common page layout and structure which wraps the content for each page. It is helpful to define that layout in a separate module so it can be easily shared when constructing pages.
In a Reflex app, any common frontend UI elements can be factored out as a function that returns a component. If a function accepts a function that returns a component, it can be used as a decorator as seen below.
The @template
decorator should appear below the @rx.page
decorator and above the page-returning function.
State Management
Most pages will use State in some capacity. You should avoid adding vars to a
shared state that will only be used in a single page. Instead, define a new
subclass of rx.State
and keep it in the same module as the page.
Accessing other States
As of Reflex 0.4.3, any event handler can get access to an instance of any other
substate via the get_state
API. From a practical perspective, this means that
state can be split up into smaller pieces without requiring a complex
inheritance hierarchy to share access to other states.
In previous releases, if an app wanted to store settings in SettingsState
with
a page or component for modifying them, any other state with an event handler
that needed to access those settings would have to inherit from SettingsState
,
even if the other state was mostly orthogonal. The other state would also now
always have to load the settings, even for event handlers that didn't need to
access them.
A better strategy is to load the desired state on demand from only the event handler which needs access to the substate.
A Settings Component:
A Post Page:
This page loads the SettingsState
to determine how many posts to display per page
and how often to refresh.
Common State:
Common states and substates that are shared by multiple pages or components should be implemented in a separate module to avoid circular imports. This module should not import other modules in the app.
Component Reusability
The primary mechanism for reusing components in Reflex is to define a function that returns the component, then simply call it where that functionality is needed.
Component functions typically should not take any State classes as arguments, but prefer to import the needed state and access the vars on the class directly.
example_big_app/components
This package contains reusable parts of the app, for example headers, footers, and menus. If a particular component requires state, the substate may be defined in the same module for locality. Any substate defined in a component module should only contain fields and event handlers pertaining to that individual component.
Database Models:
I prefer to implement all database models in a single file to make it easier to
define relationships and understand the entire schema. However, if the schema is
very large, it might make sense to have a models
package with individual
models defined in their own modules. At any rate, defining the models separately
allows any page or component to import and use them without circular imports.
Top-level Package:
This is a great place to import all state, models, and pages that should be part of the app. Typically, components and helpers do not need to imported, because they will be imported by pages that use them (or they would be unused).
If any pages are not imported here, they will not be compiled as part of the app.
example_big_app/example_big_app.py
This is the main app module. Since everything else is defined in other modules, this file becomes very simple.
File Management
There are two categories of non-code assets (media, fonts, stylesheets, documents) typically used in a Reflex app.
assets
The assets
directory is used for static files that should be accessible
relative to the root of the frontend (default port 3000). When an app is deployed in
production mode, changes to the assets directory will NOT be available at runtime!
When referencing an asset, always prefer to use a leading forward slash, so the asset can be resolved regardless of the page route where it may appear.
uploaded_files
If an app needs to make files available dynamically at runtime, it is
recommended to set the target directory via REFLEX_UPLOADED_FILES_DIR
environment variable (default ./uploaded_files
), write files relative to the
path returned by rx.get_upload_dir()
, and create working links via
rx.get_upload_url(relative_path)
.
Uploaded files are served from the backend (default port 8000) via
/_upload/<relative_path>
Putting it all together
Based on the previous discussion, we recommend a project layout that might look like this.
Takeaways
- Like any other Python project, split up the app into modules and packages to keep the codebase organized and manageable.
- Using smaller modules and packages makes it easier to reuse components and state across the app without introducing circular dependencies.
- Create individual functions to encapsulate units of functionality and reuse them where needed.
Thanks for using Reflex. Feel free to reach out to the team on Discord if you have further questions.