In today's wave of localization of the drive, cross-platform or to narrow the scope of said localization based on Linux or based on the development of the domestic Hongmeng system is the future trend of the wind and waves, we developers can only go with the flow, this essay introduces the development of Python development, the use of Python + nicegui to achieve the development of the system layout interface.
1. Introduction and application requirements of Nicegui
Let's start with a resource for one of the more emerging interface components, nicegui:
Nicegui's official website:/documentation
Github address:/zauberzeug/nicegui
It is a program that can create a BS front-end that runs server-side based, or it can be a stand-alone program, similar to Electron (/)'s stand-alone program. Depending on how it is compiled, different files are generated.
I wrote about it in the accompanying article.Research on building many different system terminal interfaces based on Python backendThe "roughly introduced the use of the component effect, in fact, the main advantage is to be able to use Python cross-platform development and deployment of the ability to run , and combined with nicegui can compile a stand-alone App or desktop program , or based on the server-side BS management system can be completed in one fell swoop , a set of code on-demand release of different UI can be.
In addition friends have a need, want me to do a set of management of each terminal device for its AI module of the central control system terminal, asked to use this nicegui to realize. A small box Orange Pi running ubuntu devices, but also very smooth.
2. System interface and layout and modularized page processing
Based on this demand, we can first do a set of management panel to realize some functionality of the entrance, first of all there is a login interface, and then a layout interface to deal with it.
The next step is to design a layout page for the main frame, as shown below.
If the main framework is the page management of the module, then all that is left is for us to design different pages according to different needs, just place them in the directory and add the required menus as needed.
For example, on our entry page, we can add the module's routing processing as shown below.
# Home Display @("/") def index_page() -> None: with ("Homepage"): () login.create_page() # login page # Handled using APIRouter routing, one route per module independently # Reference: /documentation/page#modularize_with_apirouter app.include_router() app.include_router()
In this way we will Home page, Login page routing, other page routing are handled together, we can also optimize the routing in a separate file such as to achieve unified management of page routing.
# from nicegui import app, ui import as example import as home import as customer import as login # Handled using APIRouter routing, one route per module independently # Reference: /documentation/page#modularize_with_apirouter def init_routes(): """Initialize the routing of the system""" app.include_router() # Home Display app.include_router() # login page app.include_router() # example page app.include_router() # client page # ............ Other pages
After the routing information is handled uniformly, then the code can be optimized as shown below.
from nicegui import app, ui, language import router as router from auth_middleware import AuthMiddleware router.init_routes() # Initializing Routes app.add_middleware(AuthMiddleware) # Customized middleware to handle login authentication app.add_static_files("/public", "public") # Adding a static file directory # Start the run and set the global language configuration to Chinese ( title="Enterprise Informatization Platform-Guangzhou Aqidi Software Technology Co.", language="zh-CN", storage_secret="THIS_NEEDS_TO_BE_CHANGED", )
Routing can be handled by calling init_routes directly.
Test a simple form query page processing as shown below.
You can open or collapse row definition information.
Mainly through and slots to achieve a variety of form processing effects.
# tabular table = ( columns=columns, rows=rows, title="Client List", pagination=10, row_key="name", selection="single", on_pagination_change=lambda e: (), )
Folding information we show by the following Slot processing.
table.add_slot( "body", r""" <q-tr :props="props"> <q-td auto-width> <q-btn size="sm" color="accent" round dense @click=" = !" :icon=" ? 'remove' : 'add'" /> </q-td> <q-td v-for="col in " :key="" :props="props"> {{ }} </q-td> </q-tr> <q-tr v-show="" :props="props"> <q-td colspan="100%"> <div class="text-left" > <div class="text-primary line-clamp-1 text-base tracking-wide" v-for="col in " :key="">{{}}: {{}}</div> </div> </q-td> </q-tr> """, )
We can also use nicegui_tabulator third-party component to enrich the table handling effects.
Githhub address:/CrystalWindSnake/nicegui-tabulator
Case Code:
from nicegui_tabulator import tabulator, use_theme from nicegui import ui # use the theme for all clients # use_theme("bootstrap4") tabledata = [ {"id": 1, "name": "Oli Bob", "age": "12", "col": "red", "dob": ""}, {"id": 2, "name": "Mary May", "age": "1", "col": "blue", "dob": "14/05/1982"} ] table_config = { "height": 205, "layout": "fitDataFill", "pagination": "local", "paginationSize": 10, "movableColumns": True, "resizableRows": True, "data": tabledata, "columns": [ {"title": "Name", "field": "name", "width": 150, "headerFilter": "input"}, {"title": "Age", "field": "age", "hozAlign": "left", "formatter": "progress"}, {"title": "Favourite Color", "field": "col"}, { "title": "Date Of Birth", "field": "dob", "sorter": "date", "hozAlign": "center", }, ], } table = tabulator(table_config).on_event("rowClick", lambda e: (e))
The interface effect is as follows:
Depending on the need, we can integrate more relevant effects under the interface, so that it can run on various applications across platforms, which is very convenient.