Documentation / @zerotal/monitor / MonitorLayout
Class: MonitorLayout
Defined in: monitor/src/ui/MonitorLayout.tsx:34
Base class for Flow page layouts — persistent shell UI wrapped around page content.
Remarks
A layout wraps page content with shell UI (nav, sidebars, footers) that outlives page
navigation. On flow:navigate, pages that share the same layout class only swap their
[data-flow-root] content; the layout shell stays mounted and is never re-rendered or
re-sent over the socket. Attach one with static layout = AppLayout on a Component
(or override Component.layout for the JSX-native form).
Example
export class AppLayout extends Layout {
static head = `<link rel="stylesheet" href="/app.css">`;
render(slot: HtmlNode) {
return (
<div>
<nav>
<a href="/dashboard" flow:navigate>Dashboard</a>
</nav>
<main>{slot}</main>
</div>
);
}
}
export class DashboardPage extends Component {
static layout = AppLayout;
}
Extends
Constructors
Constructor
new MonitorLayout():
MonitorLayout
Returns
MonitorLayout
Inherited from
Accessors
head
Get Signature
get
statichead():string
Defined in: monitor/src/ui/MonitorLayout.tsx:35
Extra HTML injected into <head> (stylesheets, fonts, global meta tags).
Returns
string
Extra HTML injected into <head> (stylesheets, fonts, global meta tags).
Overrides
Methods
render()
render(
slot):HtmlNode
Defined in: monitor/src/ui/MonitorLayout.tsx:39
Render the layout shell around a page.
Parameters
slot
the page's pre-rendered [data-flow-root] component node. Place it with
{slot} in JSX — its HTML is emitted verbatim without escaping.
Returns
the shell markup wrapping slot.