|
@@ -10,10 +10,10 @@ if True:
|
|
|
|
|
|
import os
|
|
|
from pathlib import Path
|
|
|
-from typing import Optional
|
|
|
+from typing import Awaitable, Callable, Optional
|
|
|
|
|
|
from fastapi import Request
|
|
|
-from fastapi.responses import FileResponse, RedirectResponse
|
|
|
+from fastapi.responses import FileResponse, RedirectResponse, Response
|
|
|
from starlette.middleware.sessions import SessionMiddleware
|
|
|
|
|
|
import prometheus
|
|
@@ -29,24 +29,25 @@ from website.style import example_link, features, heading, link_target, section_
|
|
|
prometheus.start_monitor(app)
|
|
|
|
|
|
# session middleware is required for demo in documentation and prometheus
|
|
|
-app.add_middleware(SessionMiddleware, secret_key='NiceGUI is awesome!')
|
|
|
+app.add_middleware(SessionMiddleware, secret_key=os.environ.get('NICEGUI_SECRET_KEY', ''))
|
|
|
|
|
|
app.add_static_files('/favicon', str(Path(__file__).parent / 'website' / 'favicon'))
|
|
|
app.add_static_files('/fonts', str(Path(__file__).parent / 'website' / 'fonts'))
|
|
|
|
|
|
|
|
|
@app.get('/logo.png')
|
|
|
-def logo():
|
|
|
+def logo() -> FileResponse:
|
|
|
return FileResponse(svg.PATH / 'logo.png', media_type='image/png')
|
|
|
|
|
|
|
|
|
@app.get('/logo_square.png')
|
|
|
-def logo():
|
|
|
+def logo_square() -> FileResponse:
|
|
|
return FileResponse(svg.PATH / 'logo_square.png', media_type='image/png')
|
|
|
|
|
|
|
|
|
@app.middleware('http')
|
|
|
-async def redirect_reference_to_documentation(request: Request, call_next):
|
|
|
+async def redirect_reference_to_documentation(request: Request,
|
|
|
+ call_next: Callable[[Request], Awaitable[Response]]) -> Response:
|
|
|
if request.url.path == '/reference':
|
|
|
return RedirectResponse('/documentation')
|
|
|
return await call_next(request)
|
|
@@ -75,19 +76,20 @@ def add_header(menu: Optional[ui.left_drawer] = None) -> None:
|
|
|
.classes('items-center duration-200 p-0 px-4 no-wrap') \
|
|
|
.style('box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)'):
|
|
|
if menu:
|
|
|
- ui.button(on_click=menu.toggle).props('flat color=white icon=menu round') \
|
|
|
- .classes('max-[405px]:hidden lg:hidden')
|
|
|
+ ui.button(on_click=menu.toggle).props('flat color=white icon=menu round').classes('lg:hidden')
|
|
|
with ui.link(target=index_page).classes('row gap-4 items-center no-wrap mr-auto'):
|
|
|
svg.face().classes('w-8 stroke-white stroke-2')
|
|
|
svg.word().classes('w-24')
|
|
|
with ui.row().classes('max-lg:hidden'):
|
|
|
for title, target in menu_items.items():
|
|
|
ui.link(title, target).classes(replace='text-lg text-white')
|
|
|
- with ui.link(target='https://discord.gg/TEpFeAaF4f'):
|
|
|
+ with ui.link(target='https://discord.gg/TEpFeAaF4f').classes('max-[435px]:hidden').tooltip('Discord'):
|
|
|
svg.discord().classes('fill-white scale-125 m-1')
|
|
|
- with ui.link(target='https://github.com/zauberzeug/nicegui/'):
|
|
|
+ with ui.link(target='https://www.reddit.com/r/nicegui/').classes('max-[385px]:hidden').tooltip('Reddit'):
|
|
|
+ svg.reddit().classes('fill-white scale-125 m-1')
|
|
|
+ with ui.link(target='https://github.com/zauberzeug/nicegui/').tooltip('GitHub'):
|
|
|
svg.github().classes('fill-white scale-125 m-1')
|
|
|
- add_star().classes('max-[460px]:hidden')
|
|
|
+ add_star().classes('max-[480px]:hidden')
|
|
|
with ui.row().classes('lg:hidden'):
|
|
|
with ui.button().props('flat color=white icon=more_vert round'):
|
|
|
with ui.menu().classes('bg-primary text-white text-lg').props(remove='no-parent-event'):
|
|
@@ -96,7 +98,7 @@ def add_header(menu: Optional[ui.left_drawer] = None) -> None:
|
|
|
|
|
|
|
|
|
@ui.page('/')
|
|
|
-async def index_page(client: Client):
|
|
|
+async def index_page(client: Client) -> None:
|
|
|
client.content.classes('p-0 gap-0')
|
|
|
add_head_html()
|
|
|
add_header()
|
|
@@ -119,17 +121,21 @@ async def index_page(client: Client):
|
|
|
with ui.column().classes('text-white max-w-4xl'):
|
|
|
heading('Interact with Python through buttons, dialogs, 3D scenes, plots and much more.')
|
|
|
with ui.column().classes('gap-2 bold-links arrow-links text-lg'):
|
|
|
- ui.markdown(
|
|
|
- 'NiceGUI handles all the web development details for you. '
|
|
|
- 'So you can focus on writing Python code. '
|
|
|
- 'Anything from short scripts and dashboards to full robotics projects, IoT solutions, '
|
|
|
- 'smart home automations and machine learning projects can benefit from having all code in one place.'
|
|
|
- )
|
|
|
- ui.markdown(
|
|
|
- 'Available as '
|
|
|
- '[PyPI package](https://pypi.org/project/nicegui/), '
|
|
|
- '[Docker image](https://hub.docker.com/r/zauberzeug/nicegui) and on '
|
|
|
- '[GitHub](https://github.com/zauberzeug/nicegui).')
|
|
|
+ ui.markdown('''
|
|
|
+ NiceGUI manages web development details, letting you focus on Python code for diverse applications,
|
|
|
+ including robotics, IoT solutions, smart home automation, and machine learning.
|
|
|
+ Designed to work smoothly with connected peripherals like webcams and GPIO pins in IoT setups,
|
|
|
+ NiceGUI streamlines the management of all your code in one place.
|
|
|
+ <br><br>
|
|
|
+ With a gentle learning curve, NiceGUI is user-friendly for beginners
|
|
|
+ and offers advanced customization for experienced users,
|
|
|
+ ensuring simplicity for basic tasks and feasibility for complex projects.
|
|
|
+ <br><br><br>
|
|
|
+ Available as
|
|
|
+ [PyPI package](https://pypi.org/project/nicegui/),
|
|
|
+ [Docker image](https://hub.docker.com/r/zauberzeug/nicegui) and on
|
|
|
+ [GitHub](https://github.com/zauberzeug/nicegui).
|
|
|
+ ''')
|
|
|
example_card.create()
|
|
|
|
|
|
with ui.column().classes('w-full text-lg p-8 lg:p-16 max-w-[1600px] mx-auto'):
|
|
@@ -187,12 +193,12 @@ async def index_page(client: Client):
|
|
|
features('swap_horiz', 'Interaction', [
|
|
|
'buttons, switches, sliders, inputs, ...',
|
|
|
'notifications, dialogs and menus',
|
|
|
- 'keyboard input',
|
|
|
- 'on-screen joystick',
|
|
|
+ 'interactive images with SVG overlays',
|
|
|
+ 'web pages and native window apps',
|
|
|
])
|
|
|
features('space_dashboard', 'Layout', [
|
|
|
'navigation bars, tabs, panels, ...',
|
|
|
- 'grouping with rows, columns and cards',
|
|
|
+ 'grouping with rows, columns, grids and cards',
|
|
|
'HTML and Markdown elements',
|
|
|
'flex layout by default',
|
|
|
])
|
|
@@ -209,8 +215,8 @@ async def index_page(client: Client):
|
|
|
'[Tailwind CSS](https://tailwindcss.com/) auto-completion',
|
|
|
])
|
|
|
features('source', 'Coding', [
|
|
|
- 'live-cycle events',
|
|
|
- 'implicit reload on code change',
|
|
|
+ 'routing for multiple pages',
|
|
|
+ 'auto-reload on code change',
|
|
|
'straight-forward data binding',
|
|
|
'Jupyter notebook compatibility',
|
|
|
])
|
|
@@ -264,6 +270,7 @@ async def index_page(client: Client):
|
|
|
example_link('Local File Picker', 'demonstrates a dialog for selecting files locally on the server')
|
|
|
example_link('Search as you type', 'using public API of thecocktaildb.com to search for cocktails')
|
|
|
example_link('Menu and Tabs', 'uses Quasar to create foldable menu and tabs inside a header bar')
|
|
|
+ example_link('Todo list', 'shows a simple todo list with checkboxes and text input')
|
|
|
example_link('Trello Cards', 'shows Trello-like cards that can be dragged and dropped into columns')
|
|
|
example_link('Slots', 'shows how to use scoped slots to customize Quasar elements')
|
|
|
example_link('Table and slots', 'shows how to use component slots in a table')
|
|
@@ -312,7 +319,7 @@ async def index_page(client: Client):
|
|
|
|
|
|
|
|
|
@ui.page('/documentation')
|
|
|
-def documentation_page():
|
|
|
+def documentation_page() -> None:
|
|
|
add_head_html()
|
|
|
menu = side_menu()
|
|
|
add_header(menu)
|
|
@@ -327,7 +334,7 @@ def documentation_page():
|
|
|
|
|
|
|
|
|
@ui.page('/documentation/{name}')
|
|
|
-def documentation_page_more(name: str):
|
|
|
+async def documentation_page_more(name: str, client: Client) -> None:
|
|
|
if not hasattr(ui, name):
|
|
|
name = name.replace('_', '') # NOTE: "AG Grid" leads to anchor name "ag_grid", but class is `ui.aggrid`
|
|
|
module = importlib.import_module(f'website.more_documentation.{name}_documentation')
|
|
@@ -355,6 +362,7 @@ def documentation_page_more(name: str):
|
|
|
ui.markdown('**Reference**').classes('mt-4')
|
|
|
ui.markdown('## Reference').classes('mt-16')
|
|
|
generate_class_doc(api)
|
|
|
-
|
|
|
+ await client.connected()
|
|
|
+ await ui.run_javascript(f'document.title = "{name} • NiceGUI";', respond=False)
|
|
|
|
|
|
ui.run(uvicorn_reload_includes='*.py, *.css, *.html')
|