123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- from __future__ import annotations
- import asyncio
- import inspect
- import time
- from pathlib import Path
- from typing import TYPE_CHECKING, Any, Callable, Optional, Union
- from fastapi import Request, Response
- from . import background_tasks, binding, core, helpers
- from .client import Client
- from .favicon import create_favicon_route
- from .language import Language
- if TYPE_CHECKING:
- from .api_router import APIRouter
- class page:
- def __init__(self,
- path: str, *,
- title: Optional[str] = None,
- viewport: Optional[str] = None,
- favicon: Optional[Union[str, Path]] = None,
- dark: Optional[bool] = ..., # type: ignore
- language: Language = ..., # type: ignore
- response_timeout: float = 3.0,
- reconnect_timeout: Optional[float] = None,
- api_router: Optional[APIRouter] = None,
- **kwargs: Any,
- ) -> None:
- """Page
- This decorator marks a function to be a page builder.
- Each user accessing the given route will see a new instance of the page.
- This means it is private to the user and not shared with others
- (as it is done `when placing elements outside of a page decorator <https://nicegui.io/documentation#auto-index_page>`_).
- :param path: route of the new page (path must start with '/')
- :param title: optional page title
- :param viewport: optional viewport meta tag content
- :param favicon: optional relative filepath or absolute URL to a favicon (default: `None`, NiceGUI icon will be used)
- :param dark: whether to use Quasar's dark mode (defaults to `dark` argument of `run` command)
- :param language: language of the page (defaults to `language` argument of `run` command)
- :param response_timeout: maximum time for the decorated function to build the page (default: 3.0 seconds)
- :param reconnect_timeout: maximum time the server waits for the browser to reconnect (default: 0.0 seconds)
- :param api_router: APIRouter instance to use, can be left `None` to use the default
- :param kwargs: additional keyword arguments passed to FastAPI's @app.get method
- """
- self._path = path
- self.title = title
- self.viewport = viewport
- self.favicon = favicon
- self.dark = dark
- self.language = language
- self.response_timeout = response_timeout
- self.kwargs = kwargs
- self.api_router = api_router or core.app.router
- self.reconnect_timeout = reconnect_timeout
- create_favicon_route(self.path, favicon)
- @property
- def path(self) -> str:
- """The path of the page including the APIRouter's prefix."""
- return self.api_router.prefix + self._path
- def resolve_title(self) -> str:
- """Return the title of the page."""
- return self.title if self.title is not None else core.app.config.title
- def resolve_viewport(self) -> str:
- """Return the viewport of the page."""
- return self.viewport if self.viewport is not None else core.app.config.viewport
- def resolve_dark(self) -> Optional[bool]:
- """Return whether the page should use dark mode."""
- return self.dark if self.dark is not ... else core.app.config.dark
- def resolve_language(self) -> Optional[str]:
- """Return the language of the page."""
- return self.language if self.language is not ... else core.app.config.language
- def __call__(self, func: Callable[..., Any]) -> Callable[..., Any]:
- core.app.remove_route(self.path) # NOTE make sure only the latest route definition is used
- parameters_of_decorated_func = list(inspect.signature(func).parameters.keys())
- async def decorated(*dec_args, **dec_kwargs) -> Response:
- request = dec_kwargs['request']
- # NOTE cleaning up the keyword args so the signature is consistent with "func" again
- dec_kwargs = {k: v for k, v in dec_kwargs.items() if k in parameters_of_decorated_func}
- with Client(self) as client:
- if any(p.name == 'client' for p in inspect.signature(func).parameters.values()):
- dec_kwargs['client'] = client
- result = func(*dec_args, **dec_kwargs)
- if helpers.is_coroutine_function(func):
- async def wait_for_result() -> None:
- with client:
- return await result
- task = background_tasks.create(wait_for_result())
- deadline = time.time() + self.response_timeout
- while task and not client.is_waiting_for_connection and not task.done():
- if time.time() > deadline:
- raise TimeoutError(f'Response not ready after {self.response_timeout} seconds')
- await asyncio.sleep(0.1)
- result = task.result() if task.done() else None
- if isinstance(result, Response): # NOTE if setup returns a response, we don't need to render the page
- return result
- binding._refresh_step() # pylint: disable=protected-access
- return client.build_response(request)
- parameters = [p for p in inspect.signature(func).parameters.values() if p.name != 'client']
- # NOTE adding request as a parameter so we can pass it to the client in the decorated function
- if 'request' not in {p.name for p in parameters}:
- request = inspect.Parameter('request', inspect.Parameter.POSITIONAL_OR_KEYWORD, annotation=Request)
- parameters.insert(0, request)
- decorated.__signature__ = inspect.Signature(parameters) # type: ignore
- if 'include_in_schema' not in self.kwargs:
- self.kwargs['include_in_schema'] = core.app.config.endpoint_documentation in {'page', 'all'}
- self.api_router.get(self._path, **self.kwargs)(decorated)
- Client.page_routes[func] = self.path
- return func
|