reflex/pynecone/app.py
Nikhil Rao 29e37350e5
Add basic unit tests (#7)
* Unit tests for components, state, and utils
2022-11-20 14:34:25 -08:00

345 lines
10 KiB
Python

"""The main Pynecone app."""
import os
import re
from typing import Any, Callable, Coroutine, Dict, List, Optional, Tuple, Type, Union
import fastapi
from fastapi.middleware import cors
from pynecone import constants, utils
from pynecone.base import Base
from pynecone.compiler import compiler
from pynecone.compiler import utils as compiler_utils
from pynecone.components.component import Component, ComponentStyle
from pynecone.event import Event
from pynecone.middleware import HydrateMiddleware, Middleware
from pynecone.model import Model
from pynecone.state import DefaultState, Delta, State, StateManager, StateUpdate
# Define custom types.
ComponentCallable = Callable[[], Component]
Reducer = Callable[[Event], Coroutine[Any, Any, StateUpdate]]
class App(Base):
"""A Pynecone application."""
# A map from a page route to the component to render.
pages: Dict[str, Component] = {}
# A list of URLs to stylesheets to include in the app.
stylesheets: List[str] = []
# The backend API object.
api: fastapi.FastAPI = None # type: ignore
# The state class to use for the app.
state: Type[State] = DefaultState
# Class to manage many client states.
state_manager: StateManager = StateManager()
# The styling to apply to each component.
style: ComponentStyle = {}
# Middleware to add to the app.
middleware: List[Middleware] = []
def __init__(self, *args, **kwargs):
"""Initialize the app.
Args:
*args: Args to initialize the app with.
**kwargs: Kwargs to initialize the app with.
"""
super().__init__(*args, **kwargs)
# Add middleware.
self.middleware.append(HydrateMiddleware())
# Set up the state manager.
self.state_manager.set(state=self.state)
# Set up the API.
self.api = fastapi.FastAPI()
self.add_cors()
self.add_default_endpoints()
def __repr__(self) -> str:
"""Get the string representation of the app.
Returns:
The string representation of the app.
"""
return f"<App state={self.state.__name__}>"
def add_default_endpoints(self):
"""Add the default endpoints."""
# To test the server.
self.get(str(constants.Endpoint.PING))(_ping)
# To make state changes.
self.post(str(constants.Endpoint.EVENT))(_event(app=self))
def add_cors(self):
"""Add CORS middleware to the app."""
self.api.add_middleware(
cors.CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
)
def get(self, path: str, *args, **kwargs) -> Callable:
"""Register a get request.
Args:
path: The endpoint path to link to the request.
*args: Args to pass to the request.
**kwargs: Kwargs to pass to the request.
Returns:
A decorator to handle the request.
"""
return self.api.get(path, *args, **kwargs)
def post(self, path: str, *args, **kwargs) -> Callable:
"""Register a post request.
Args:
path: The endpoint path to link to the request.
*args: Args to pass to the request.
**kwargs: Kwargs to pass to the request.
Returns:
A decorator to handle the request.
"""
return self.api.post(path, *args, **kwargs)
def preprocess(self, state: State, event: Event) -> Optional[Delta]:
"""Preprocess the event.
This is where middleware can modify the event before it is processed.
Each middleware is called in the order it was added to the app.
If a middleware returns a delta, the event is not processed and the
delta is returned.
Args:
state: The state to preprocess.
event: The event to preprocess.
Returns:
An optional state to return.
"""
for middleware in self.middleware:
out = middleware.preprocess(app=self, state=state, event=event)
if out is not None:
return out
def postprocess(self, state: State, event: Event, delta: Delta) -> Optional[Delta]:
"""Postprocess the event.
This is where middleware can modify the delta after it is processed.
Each middleware is called in the order it was added to the app.
If a middleware returns a delta, the delta is not processed and the
delta is returned.
Args:
state: The state to postprocess.
event: The event to postprocess.
delta: The delta to postprocess.
Returns:
An optional state to return.
"""
for middleware in self.middleware:
out = middleware.postprocess(
app=self, state=state, event=event, delta=delta
)
if out is not None:
return out
def add_page(
self,
component: Union[Component, ComponentCallable],
path: Optional[str] = None,
title: str = constants.DEFAULT_TITLE,
):
"""Add a page to the app.
If the component is a callable, by default the route is the name of the
function. Otherwise, a route must be provided.
Args:
component: The component to display at the page.
path: The path to display the component at.
title: The title of the page.
"""
# If the path is not set, get it from the callable.
if path is None:
assert isinstance(
component, Callable
), "Path must be set if component is not a callable."
path = component.__name__
from pynecone.var import BaseVar
parts = os.path.split(path)
check = re.compile(r"^\[(.+)\]$")
args = []
for part in parts:
match = check.match(part)
if match:
v = BaseVar(
name=match.groups()[0],
type_=str,
state=f"{constants.ROUTER}.query",
)
args.append(v)
# Generate the component if it is a callable.
component = component if isinstance(component, Component) else component(*args)
# Add the title to the component.
compiler_utils.add_title(component, title)
# Format the route.
route = utils.format_route(path)
# Add the page.
self.pages[route] = component
def compile(self, ignore_env: bool = False):
"""Compile the app and output it to the pages folder.
If the pcconfig environment is set to production, the app will
not be compiled.
Args:
ignore_env: Whether to ignore the pcconfig environment.
"""
# Get the env mode.
config = utils.get_config()
if not ignore_env and config.ENV != constants.Env.DEV.value:
print("Skipping compilation in non-dev mode.")
return
# Create the database models.
Model.create_all()
# Create the root document with base styles and fonts.
self.pages[constants.DOCUMENT_ROOT] = compiler_utils.create_document_root(
self.stylesheets
)
self.pages[constants.THEME] = compiler_utils.create_theme(self.style) # type: ignore
# Compile the pages.
for path, component in self.pages.items():
path, code = self.compile_page(path, component)
def compile_page(
self, path: str, component: Component, write: bool = True
) -> Tuple[str, str]:
"""Compile a single page.
Args:
path: The path to compile the page to.
component: The component to compile.
write: Whether to write the page to the pages folder.
Returns:
The path and code of the compiled page.
"""
# Get the path for the output file.
output_path = utils.get_page_path(path)
# Compile the document root.
if path == constants.DOCUMENT_ROOT:
code = compiler.compile_document_root(component)
# Compile the theme.
elif path == constants.THEME:
output_path = utils.get_theme_path()
code = compiler.compile_theme(component) # type: ignore
# Compile all other pages.
else:
# Add the style to the component.
component.add_style(self.style)
code = compiler.compile_component(
component=component,
state=self.state,
)
# Write the page to the pages folder.
if write:
utils.write_page(output_path, code)
return output_path, code
def get_state(self, token: str) -> State:
"""Get the state for a token.
Args:
token: The token to get the state for.
Returns:
The state for the token.
"""
return self.state_manager.get_state(token)
def set_state(self, token: str, state: State):
"""Set the state for a token.
Args:
token: The token to set the state for.
state: The state to set.
"""
self.state_manager.set_state(token, state)
async def _ping() -> str:
"""Test API endpoint.
Returns:
The response.
"""
return "pong"
def _event(app: App) -> Reducer:
"""Create an event reducer to modify the state.
Args:
app: The app to modify the state of.
Returns:
A handler that takes in an event and modifies the state.
"""
async def process(event: Event) -> StateUpdate:
# Get the state for the session.
state = app.get_state(event.token)
# Preprocess the event.
pre = app.preprocess(state, event)
if pre is not None:
return StateUpdate(delta=pre)
# Apply the event to the state.
update = await state.process(event)
app.set_state(event.token, state)
# Postprocess the event.
post = app.postprocess(state, event, update.delta)
if post is not None:
return StateUpdate(delta=post)
# Return the delta.
return update
return process