-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathinterface-pillar.html
More file actions
114 lines (108 loc) · 4.05 KB
/
Copy pathinterface-pillar.html
File metadata and controls
114 lines (108 loc) · 4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Builder — Interface pillar</title>
<link rel="stylesheet" href="shell.css">
</head>
<body>
<!-- Interface pillar [built]: the app's surfaces on the same renderer the end user gets.
Left rail = the app's REAL navigation tree (not a by-type list). React page
"Start Here" selected -> source + live preview; a component selected -> props.
data-build="shell" = built in the builder (composition/chrome)
data-reuse="<comp>" = existing Studio/objectui component, dropped in unchanged -->
<div class="builder">
<!-- ===== top bar (built) ===== -->
<div class="topbar" data-build="shell">
<span class="app">app ▾</span>
<nav class="pilltabs">
<a href="#">Data</a>
<a href="#">Automation</a>
<a class="active" href="#">Interface</a>
<a href="#">Access</a>
</nav>
<div class="right">
<span>⚙</span>
<span>Save draft</span>
<button class="btn-publish">Publish</button>
</div>
</div>
<div class="body">
<!-- ===== left rail: the app's real navigation tree (built) ===== -->
<aside class="rail" data-build="shell">
<div class="label">SHOWCASE · NAV</div>
<div class="group">Workspace</div>
<ul>
<li class="active">Start Here</li>
<li>My Work</li>
<li>Approvals</li>
</ul>
<div class="group">Data model</div>
<ul>
<li>Projects <span class="kind">object</span></li>
<li>Tasks <span class="kind">object</span></li>
</ul>
<div class="group">Analytics</div>
<ul>
<li>Delivery Ops <span class="kind">dashboard</span></li>
<li>Hours by Status <span class="kind">report</span></li>
</ul>
</aside>
<!-- ===== main: source + live preview (react/html pages) ===== -->
<main class="main">
<div class="toolbar" data-build="shell">
<span>👁 preview = runtime</span>
<span>page · showcase_start_here</span>
</div>
<div class="workarea">
<div class="reuse" data-reuse="SchemaRenderer" style="height:100%">
<div class="split">
<div class="code"><flex dir="col" gap={8}>
<div style={{ fontWeight: 600,
textTransform: "uppercase" }}>
ObjectStack Showcase
</div>
<div style={{ fontSize: 32,
fontWeight: 700 }}>
Pick the right page
authoring model
</div>
<card> Decision tree … </card>
</flex></div>
<div class="preview">
<div class="eyebrow">OBJECTSTACK SHOWCASE</div>
<h2>Pick the right page authoring model</h2>
<div class="card">Every page has two axes — its <b>type</b> (home · record · list · app) and its <b>kind</b> (how you author it).</div>
<div class="card">Decision tree · full/slotted → html → react</div>
</div>
</div>
<span class="reuse-tag">source + preview = SchemaRenderer (reused)</span>
</div>
</div>
</main>
<!-- ===== right inspector: component props = reused form ===== -->
<aside class="inspector" data-build="shell">
<div class="eyebrow">COMPONENT</div>
<h3>flex › div</h3>
<hr>
<div class="reuse form" data-reuse="component-props">
<div class="flabel">Font size</div>
<div class="field">32</div>
<div class="flabel">Font weight</div>
<div class="field">700 ▾</div>
<div class="flabel">Color</div>
<div class="field">foreground ▾</div>
<div class="flabel">Max width</div>
<div class="field">680</div>
<span class="reuse-tag">component props (reused)</span>
</div>
</aside>
</div>
<!-- ===== legend ===== -->
<div class="legend">
<span><span class="sw built"></span>solid = shell / composition (built in the builder)</span>
<span><span class="sw reused"></span>dashed = existing Studio component (reused, not rebuilt)</span>
</div>
</div>
</body>
</html>