File size: 8,364 Bytes
ea270a7 | 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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | import { useState, useEffect, useRef } from 'react';
const SPACE_SLUG = 'maritime-routing';
const SPACE_NAME = 'Maritime Routing Agent';
const VERTICAL_LABEL = 'Maritime · Atelier Space';
const ACCENT = '#7ab8d9';
const A11OY_ATELIER_URL = '/a11oy/atelier/s/maritime-routing';
const A11OY_EMBED_TARGET = window.location.origin;
interface EmbedMessage {
type: string;
spaceSlug?: string;
tenantId?: string;
ready?: boolean;
phase?: string;
line?: string;
proofRef?: string;
done?: boolean;
error?: string;
}
type RunMode = 'governed' | 'demo-preview' | null;
export function AtelierSpaceEmbed({ compact = false }: { compact?: boolean }) {
const [lines, setLines] = useState<string[]>([]);
const [running, setRunning] = useState(false);
const [done, setDone] = useState(false);
const [connected, setConnected] = useState(false);
const [runMode, setRunMode] = useState<RunMode>(null);
const iframeRef = useRef<HTMLIFrameElement>(null);
const bottomRef = useRef<HTMLDivElement>(null);
const connectedRef = useRef(false);
useEffect(() => {
bottomRef.current?.scrollIntoView({ behavior: 'smooth' });
}, [lines]);
useEffect(() => {
function handleMessage(e: MessageEvent) {
if (e.origin !== A11OY_EMBED_TARGET) return;
const data = e.data as EmbedMessage;
if (!data?.type) return;
if (data.type === 'a11oy-space-ack' && data.spaceSlug === SPACE_SLUG) {
setConnected(true);
connectedRef.current = true;
}
if (data.type === 'a11oy-space-line' && data.line) {
setRunMode('governed');
setLines(prev => [...prev, data.line!]);
}
if (data.type === 'a11oy-space-done') {
setRunning(false);
setDone(true);
if (data.proofRef) {
setLines(prev => [...prev, `✓ Proof ref: ${data.proofRef}`]);
}
if (data.error) {
setLines(prev => [...prev, `⚠ ${data.error}`]);
}
}
}
window.addEventListener('message', handleMessage);
return () => window.removeEventListener('message', handleMessage);
}, []);
useEffect(() => {
const iframe = iframeRef.current;
if (!iframe) return;
function onLoad() {
iframe!.contentWindow?.postMessage(
{ type: 'a11oy-space-handshake', spaceSlug: SPACE_SLUG },
A11OY_EMBED_TARGET
);
}
iframe.addEventListener('load', onLoad);
return () => iframe.removeEventListener('load', onLoad);
}, []);
function run() {
setLines([]);
setDone(false);
setRunning(true);
setRunMode(null);
setConnected(false);
connectedRef.current = false;
const iframe = iframeRef.current;
if (iframe?.contentWindow) {
iframe.contentWindow.postMessage(
{ type: 'a11oy-space-handshake', spaceSlug: SPACE_SLUG },
A11OY_EMBED_TARGET
);
iframe.contentWindow.postMessage(
{ type: 'a11oy-space-run', spaceSlug: SPACE_SLUG },
A11OY_EMBED_TARGET
);
}
const fallbackOutputs = [
'⟳ Connecting to AIS feed…',
'✓ Vessel data received — VLCC Everest',
'⟳ Calculating ETA deviation…',
'⚠ ETA +31h delay detected at Port Rotterdam',
'⟳ Running port standby cost model…',
'✓ Standby cost: $2.4M/day',
'⟳ Evaluating 3 alternative routes…',
'✓ Route via Port Antwerp: saves $1.2M demurrage',
'⟳ Generating proof packet…',
'✓ Proof: sha256:c9f2e5b8a1d3e6f9c4b7…\n\nRecommendation: Reroute to Port Antwerp. Connect A11oy runtime for governed execution.',
];
setTimeout(() => {
if (!connectedRef.current) {
setRunMode('demo-preview');
setLines(prev => [...prev, '⚠ A11oy Atelier runtime unavailable — showing demo preview']);
let i = 0;
const iv = setInterval(() => {
if (i < fallbackOutputs.length) { setLines(p => [...p, fallbackOutputs[i]]); i++; }
else { clearInterval(iv); setRunning(false); setDone(true); }
}, 370);
}
}, 1200);
}
return (
<div style={{
background: '#0a0a0a',
border: '1px solid rgba(255,255,255,0.08)',
borderRadius: 10,
overflow: 'hidden',
fontFamily: 'var(--font-sans, Inter, sans-serif)',
borderTop: `2px solid ${ACCENT}`,
position: 'relative',
}}>
<iframe
ref={iframeRef}
src={`/a11oy/embed/${SPACE_SLUG}?tenant=szl`}
style={{ display: 'none' }}
title="A11oy Atelier Embed Channel"
/>
<div style={{
padding: compact ? '0.625rem 0.875rem' : '0.875rem 1.125rem',
borderBottom: '1px solid rgba(255,255,255,0.08)',
display: 'flex', alignItems: 'center', gap: '0.75rem',
background: 'rgba(255,255,255,0.01)',
}}>
<div style={{ flex: 1 }}>
<div style={{ fontSize: '0.875rem', fontWeight: 600, color: '#f5f5f5', letterSpacing: '-0.01em' }}>
{SPACE_NAME}
</div>
{!compact && (
<div style={{ fontSize: '0.5625rem', fontFamily: 'ui-monospace,monospace', color: ACCENT, textTransform: 'uppercase', letterSpacing: '0.1em', marginTop: '0.125rem' }}>
{VERTICAL_LABEL}
</div>
)}
</div>
<div style={{ display: 'flex', alignItems: 'center', gap: '0.5rem' }}>
<span style={{
width: 6, height: 6, borderRadius: '50%',
background: runMode === 'demo-preview' ? '#fbbf24' : ACCENT,
boxShadow: `0 0 5px ${runMode === 'demo-preview' ? '#fbbf24' : ACCENT}`,
}} />
<span style={{ fontSize: '0.5rem', fontFamily: 'ui-monospace,monospace', color: '#5e5e5e' }}>
{runMode === 'demo-preview' ? 'Demo Preview' : 'Governed'}
</span>
</div>
<a
href={A11OY_ATELIER_URL}
style={{ fontSize: '0.5rem', fontFamily: 'ui-monospace,monospace', color: '#5e5e5e', textDecoration: 'none', padding: '0.2rem 0.375rem', borderRadius: 3, border: '1px solid rgba(255,255,255,0.08)' }}
>
↗ Open
</a>
</div>
<div style={{ background: 'rgba(0,0,0,0.3)', minHeight: compact ? 120 : 200, maxHeight: compact ? 160 : 260, overflowY: 'auto', padding: '0.875rem', fontFamily: 'ui-monospace,monospace', fontSize: '0.6875rem', lineHeight: 1.7 }}>
{lines.length === 0 && !running && (
<div style={{ color: '#5e5e5e', textAlign: 'center', paddingTop: compact ? '1.25rem' : '2rem' }}>
Click Run to execute the {SPACE_NAME} in the governed runtime.
</div>
)}
{lines.map((l, i) => (
<div key={i} style={{
color: l.startsWith('[DEMO]') ? '#fbbf24' : l.startsWith('✓') ? '#c9b787' : l.startsWith('⚠') ? '#8a8a8a' : l.startsWith('⟳') ? '#5e5e5e' : '#f5f5f5',
whiteSpace: 'pre-line',
}}>
{l}
</div>
))}
{running && <span style={{ color: '#c9b787' }}>▌</span>}
<div ref={bottomRef} />
</div>
<div style={{ padding: '0.625rem 0.875rem', borderTop: '1px solid rgba(255,255,255,0.08)', display: 'flex', gap: '0.5rem', alignItems: 'center', background: 'rgba(255,255,255,0.01)' }}>
<button onClick={run} disabled={running}
style={{ padding: '0.375rem 0.875rem', borderRadius: 5, fontSize: '0.6875rem', fontWeight: 500, cursor: running ? 'not-allowed' : 'pointer', background: 'rgba(201,183,135,0.1)', border: '1px solid rgba(201,183,135,0.25)', color: '#c9b787', opacity: running ? 0.5 : 1 }}>
{running ? '⟳ Running…' : '▶ Run'}
</button>
{done && (
<span style={{ fontSize: '0.5625rem', fontFamily: 'ui-monospace,monospace', color: runMode === 'demo-preview' ? '#fbbf24' : '#c9b787' }}>
{runMode === 'demo-preview' ? '⚠ Demo preview — connect runtime for proof' : '✓ Proof generated'}
</span>
)}
<div style={{ marginLeft: 'auto', display: 'flex', alignItems: 'center', gap: '0.375rem' }}>
<span style={{ fontSize: '0.5rem', fontFamily: 'ui-monospace,monospace', color: '#5e5e5e' }}>Powered by</span>
<span style={{ fontSize: '0.5rem', fontFamily: 'ui-monospace,monospace', color: '#c9b787', fontWeight: 600 }}>A11oy Atelier</span>
</div>
</div>
</div>
);
}
|