feat: bind public vestibules to domain login gates

This commit is contained in:
冰朔 2026-08-10 05:59:17 +08:00
commit b24d5b5452
6 changed files with 147 additions and 22 deletions

View file

@ -1,4 +1,4 @@
import { useCallback, useEffect, useMemo, useState, type CSSProperties, type PointerEvent as ReactPointerEvent } from 'react';
import { useCallback, useEffect, useMemo, useRef, useState, type CSSProperties, type PointerEvent as ReactPointerEvent } from 'react';
import { api, DocTreeNode, DocContent, type ChannelState, type ModuleManifest } from './api';
import { DocTree } from './components/DocTree';
import { Editor } from './components/Editor';
@ -13,6 +13,7 @@ import { ModuleLibrarySheet } from './components/ModuleLibrarySheet';
import { cleanDisplayText } from './presentation';
import { WorldEntry } from './components/WorldEntry';
import { DomainConnectionSheet } from './components/DomainConnectionSheet';
import { createDomainEntryTarget, type DomainEntryTarget, type DomainNodeType } from './domain-entry-state';
import type { DomainRouteId } from './public-domain-directory';
type View = 'editor' | 'history';
@ -84,6 +85,7 @@ export default function App() {
const [activeModule, setActiveModule] = useState<ModuleId>('knowledge');
const [storageSheetOpen, setStorageSheetOpen] = useState(false);
const [domainConnectionOpen, setDomainConnectionOpen] = useState(false);
const [domainEntryTarget, setDomainEntryTarget] = useState<DomainEntryTarget | null>(null);
const [storageSheetInitialMode, setStorageSheetInitialMode] = useState<'local' | 'server' | undefined>();
const [serverSession, setServerSession] = useState<ServerSession>({ authenticated: false, nodeId: '' });
const [serverProfiles, setServerProfiles] = useState<ServerProfile[]>([]);
@ -101,6 +103,7 @@ export default function App() {
const [lastChannelReceipt, setLastChannelReceipt] = useState('');
const [worldEntered, setWorldEntered] = useState(false);
const [domainAccess, setDomainAccess] = useState<DomainAccessStatus>({ blockers: [], runtimeReady: false, stage: 'checking' });
const domainAccessRequest = useRef(0);
const storageMode = repositoryStatus?.remote ? 'server' : 'local';
const storageLabel = storageMode === 'server' ? '服务器已托管' : '仅本机';
@ -176,19 +179,35 @@ export default function App() {
}
}, []);
const refreshDomainAccess = useCallback(async () => {
const refreshDomainAccess = useCallback(async (domainId = 'DOM-FIFTH-0001') => {
const request = ++domainAccessRequest.current;
const server = (window as any).hololake?.server;
if (!server?.domainAccess) {
setDomainAccess({ blockers: ['desktop_runtime_required'], runtimeReady: false, stage: 'login-required' });
if (request === domainAccessRequest.current) setDomainAccess({ blockers: ['desktop_runtime_required'], domainId, runtimeReady: false, stage: 'login-required' });
return;
}
try {
setDomainAccess(await server.domainAccess('DOM-FIFTH-0001'));
const result = await server.domainAccess(domainId);
if (request === domainAccessRequest.current) setDomainAccess(result);
} catch {
setDomainAccess({ blockers: ['domain_access_probe_failed'], runtimeReady: false, stage: 'login-required' });
if (request === domainAccessRequest.current) setDomainAccess({ blockers: ['domain_access_probe_failed'], domainId, runtimeReady: false, stage: 'login-required' });
}
}, []);
const openDomainConnection = useCallback((routeId: DomainRouteId | null) => {
const target = routeId ? createDomainEntryTarget(routeId) : null;
setDomainEntryTarget(target);
setDomainConnectionOpen(true);
if (target) {
setDomainAccess({ blockers: [], domainId: target.domain.stableDomainId, runtimeReady: false, stage: 'checking' });
void refreshDomainAccess(target.domain.stableDomainId);
}
}, [refreshDomainAccess]);
const selectDomainNodeType = useCallback((nodeType: DomainNodeType) => {
setDomainEntryTarget(current => current ? createDomainEntryTarget(current.domain.routeId, nodeType) : null);
}, []);
const refreshChannel = useCallback(async () => {
try {
const [channel, registry] = await Promise.all([api.getChannel(), api.getModules()]);
@ -393,9 +412,7 @@ export default function App() {
setActiveModule('knowledge');
setWorldEntered(true);
}}
onOpenConnection={() => {
setDomainConnectionOpen(true);
}}
onOpenConnection={openDomainConnection}
/>
)}
<div
@ -581,10 +598,13 @@ export default function App() {
/>
<DomainConnectionSheet
access={domainAccess}
target={domainEntryTarget}
open={domainConnectionOpen}
onClose={() => setDomainConnectionOpen(false)}
onSelectTarget={routeId => openDomainConnection(routeId)}
onSelectNodeType={selectDomainNodeType}
onEnterRuntime={() => {
if (!domainAccess.runtimeReady) return;
if (!domainEntryTarget || domainEntryTarget.domain.routeId !== 'fifth' || !domainAccess.runtimeReady || domainAccess.domainId !== domainEntryTarget.domain.stableDomainId) return;
setActiveRoute('fifth');
setActiveModule('knowledge');
setWorldEntered(true);

View file

@ -1,17 +1,23 @@
import { Cloud, Laptop, ShieldCheck, X } from 'lucide-react';
import { projectDomainConnectionSteps, projectDomainTrustSource, type DomainAccessProjection } from '../domain-connection';
import { canEnterSelectedDomainRuntime, projectDomainRuntimeBoundary, type DomainEntryTarget, type DomainNodeType } from '../domain-entry-state';
import { publicDomainDirectory, type DomainRouteId } from '../public-domain-directory';
interface Props {
access: DomainAccessProjection;
target: DomainEntryTarget | null;
open: boolean;
onClose: () => void;
onSelectTarget: (routeId: DomainRouteId) => void;
onSelectNodeType: (nodeType: DomainNodeType) => void;
onEnterRuntime: () => void;
onOpenCodeChannel: () => void;
}
export function DomainConnectionSheet({ access, open, onClose, onEnterRuntime, onOpenCodeChannel }: Props) {
export function DomainConnectionSheet({ access, target, open, onClose, onSelectTarget, onSelectNodeType, onEnterRuntime, onOpenCodeChannel }: Props) {
if (!open) return null;
const steps = projectDomainConnectionSteps(access);
const canEnter = canEnterSelectedDomainRuntime(target, access);
return (
<div className="storage-sheet-backdrop" role="presentation" onMouseDown={event => {
@ -20,18 +26,22 @@ export function DomainConnectionSheet({ access, open, onClose, onEnterRuntime, o
<section className="storage-sheet domain-connection-sheet" role="dialog" aria-modal="true" aria-labelledby="domain-connection-title">
<header className="storage-sheet-header">
<div>
<small>DOM-FIFTH-0001</small>
<h2 id="domain-connection-title"> · </h2>
<small>{target?.domain.stableDomainId ?? 'SELECT-DOMAIN'}</small>
<h2 id="domain-connection-title">{target ? `接入${target.domain.displayName}` : '选择要接入的域'}</h2>
</div>
<button className="icon-button" onClick={onClose} aria-label="关闭域接入状态"><X aria-hidden="true" /></button>
</header>
<p className="domain-connection-lead">线</p>
<div className="domain-target-picker" aria-label="选择目标域">
{publicDomainDirectory.map(domain => <button key={domain.routeId} type="button" data-selected={target?.domain.routeId === domain.routeId} onClick={() => onSelectTarget(domain.routeId)}><span>{domain.directoryNumber}</span>{domain.displayName}</button>)}
</div>
{!target ? <p className="domain-connection-boundary">{projectDomainRuntimeBoundary(target, access)}</p> : <>
<p className="domain-connection-boundary">{projectDomainTrustSource(access)}</p>
<div className="domain-node-modes" aria-label="支持的节点类型">
<article><Laptop aria-hidden="true" /><span><strong></strong><small>使</small></span></article>
<article><Cloud aria-hidden="true" /><span><strong></strong><small>线</small></span></article>
<button type="button" data-selected={target.nodeType === 'local-terminal'} onClick={() => onSelectNodeType('local-terminal')}><Laptop aria-hidden="true" /><span><strong></strong><small>使</small></span></button>
<button type="button" data-selected={target.nodeType === 'cloud-resident'} onClick={() => onSelectNodeType('cloud-resident')}><Cloud aria-hidden="true" /><span><strong></strong><small>线</small></span></button>
</div>
<ol className="domain-connection-steps">
@ -44,14 +54,15 @@ export function DomainConnectionSheet({ access, open, onClose, onEnterRuntime, o
))}
</ol>
<p className="domain-connection-boundary"></p>
<p className="domain-connection-boundary">{projectDomainRuntimeBoundary(target, access)} </p>
</>}
<footer className="storage-sheet-footer">
<button className="secondary-button" onClick={onOpenCodeChannel}></button>
<button className="secondary-button" onClick={onOpenCodeChannel} disabled={!target}></button>
<span />
<button className="secondary-button" onClick={onClose}></button>
<button className="primary-button" onClick={onEnterRuntime} disabled={!access.runtimeReady}>
{access.runtimeReady ? '进入第五域运行体' : '等待可信域接入'}
<button className="primary-button" onClick={onEnterRuntime} disabled={!canEnter}>
{canEnter ? '进入第五域运行体' : target ? '等待可信域接入' : '请先选择域'}
</button>
</footer>
</section>

View file

@ -6,7 +6,7 @@ interface Props {
access: { blockers: string[]; runtimeReady: boolean; stage: 'checking' | 'login-required' | 'identity-verified' | 'runtime-ready' };
onEnterFifthRuntime: () => void;
onEnterLocalWorkspace: () => void;
onOpenConnection: () => void;
onOpenConnection: (routeId: DomainRouteId | null) => void;
}
export function WorldEntry({ access, onEnterFifthRuntime, onEnterLocalWorkspace, onOpenConnection }: Props) {
@ -55,7 +55,7 @@ export function WorldEntry({ access, onEnterFifthRuntime, onEnterLocalWorkspace,
<div><dt><DoorOpen aria-hidden="true" /><span></span></dt><dd>{access.stage === 'runtime-ready' ? '节点、域清单、会话能力与连接回执已验证' : access.stage === 'identity-verified' ? '账户与节点已验证 · 尚缺域清单、会话能力和连接回执' : access.stage === 'checking' ? '正在核对真实接入证据' : '公开门厅可查看 · 尚未登录或接入节点'}</dd></div>
</dl>
<div className="fifth-actions">
<button className="fifth-primary" type="button" onClick={access.runtimeReady ? onEnterFifthRuntime : onOpenConnection}><LogIn aria-hidden="true" />{access.runtimeReady ? '进入第五域运行体' : '登录或接入节点'}</button>
<button className="fifth-primary" type="button" onClick={access.runtimeReady ? onEnterFifthRuntime : () => onOpenConnection('fifth')}><LogIn aria-hidden="true" />{access.runtimeReady ? '进入第五域运行体' : '登录或接入节点'}</button>
<button type="button" onClick={onEnterLocalWorkspace}><DoorOpen aria-hidden="true" /></button>
<button type="button" onClick={() => setStage('lighthouse')}><Landmark aria-hidden="true" /></button>
</div>
@ -82,7 +82,7 @@ export function WorldEntry({ access, onEnterFifthRuntime, onEnterLocalWorkspace,
<button className="public-primary" type="button" onClick={() => setStage(stage === 'directory' ? 'lighthouse' : 'directory')}>
{stage === 'directory' ? '返回公共灯塔' : '查看五域'}
</button>
<button type="button" onClick={onOpenConnection}></button>
<button type="button" onClick={() => onOpenConnection(selectedDomain)}></button>
</div>
</section>
@ -106,6 +106,7 @@ export function WorldEntry({ access, onEnterFifthRuntime, onEnterLocalWorkspace,
<strong>{selectedVestibule.stableDomainId}</strong>
<span>{selectedVestibule.themeLabel}</span>
<small> · </small>
<button type="button" onClick={() => onOpenConnection(selectedVestibule.routeId)}></button>
</aside>
)}

View file

@ -0,0 +1,30 @@
import assert from 'node:assert/strict';
import test from 'node:test';
import { canEnterSelectedDomainRuntime, createDomainEntryTarget, projectDomainRuntimeBoundary } from './domain-entry-state.js';
const ready = (domainId: string) => ({ blockers: [], domainId, runtimeReady: true, stage: 'runtime-ready' as const });
test('a generic login request does not silently target the Fifth Domain', () => {
assert.equal(canEnterSelectedDomainRuntime(null, ready('DOM-FIFTH-0001')), false);
assert.match(projectDomainRuntimeBoundary(null, ready('DOM-FIFTH-0001')), /先选择目标域/);
});
test('the selected stable domain id must match the returned access evidence', () => {
const fifth = createDomainEntryTarget('fifth', 'cloud-resident');
assert.equal(canEnterSelectedDomainRuntime(fifth, ready('DOMAIN-MAIN')), false);
assert.match(projectDomainRuntimeBoundary(fifth, ready('DOMAIN-MAIN')), /另一个域/);
});
test('enterprise vestibules cannot reuse the Fifth Domain renderer', () => {
const main = createDomainEntryTarget('main');
assert.equal(main.domain.stableDomainId, 'DOMAIN-MAIN');
assert.equal(main.nodeType, 'local-terminal');
assert.equal(canEnterSelectedDomainRuntime(main, ready('DOMAIN-MAIN')), false);
assert.match(projectDomainRuntimeBoundary(main, ready('DOMAIN-MAIN')), /独立运行端点与主题包尚未登记/);
});
test('the Fifth Domain opens only with matching runtime-ready evidence', () => {
const fifth = createDomainEntryTarget('fifth', 'cloud-resident');
assert.equal(canEnterSelectedDomainRuntime(fifth, ready('DOM-FIFTH-0001')), true);
assert.match(projectDomainRuntimeBoundary(fifth, ready('DOM-FIFTH-0001')), /已经匹配/);
});

View file

@ -0,0 +1,36 @@
import { getPublicDomainVestibule, type DomainRouteId, type PublicDomainVestibule } from './public-domain-directory.js';
import type { DomainAccessProjection } from './domain-connection.js';
export type DomainNodeType = 'local-terminal' | 'cloud-resident';
export interface DomainEntryTarget {
domain: PublicDomainVestibule;
nodeType: DomainNodeType;
}
export function createDomainEntryTarget(routeId: DomainRouteId, nodeType: DomainNodeType = 'local-terminal'): DomainEntryTarget {
const domain = getPublicDomainVestibule(routeId);
if (!domain.supportedNodeTypes.includes(nodeType)) throw new Error('DOMAIN_NODE_TYPE_NOT_SUPPORTED');
return Object.freeze({ domain, nodeType });
}
export function canEnterSelectedDomainRuntime(target: DomainEntryTarget | null, access: DomainAccessProjection): boolean {
if (!target || !access.runtimeReady) return false;
if (access.domainId !== target.domain.stableDomainId) return false;
// The present desktop bundle contains only the Fifth Domain renderer. The four
// enterprise domains must provide their own signed runtime package and endpoint.
return target.domain.routeId === 'fifth';
}
export function projectDomainRuntimeBoundary(target: DomainEntryTarget | null, access: DomainAccessProjection): string {
if (!target) return '请先选择目标域;系统不会把通用登录请求默认路由到第五域。';
if (access.domainId && access.domainId !== target.domain.stableDomainId) {
return '回读证据属于另一个域;当前入口保持关闭。';
}
if (target.domain.routeId !== 'fifth') {
return `${target.domain.displayName}的独立运行端点与主题包尚未登记;当前只能查看公开门厅。`;
}
return access.runtimeReady
? '第五域运行端点、签名清单、会话能力与在线回执已经匹配。'
: '第五域入口保持关闭,直到四项真实接入证据全部匹配。';
}

View file

@ -3142,6 +3142,28 @@ select:focus-visible {
line-height: 1.65;
}
.domain-target-picker {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 6px;
padding: 14px 20px 0;
}
.domain-target-picker button {
display: grid;
gap: 4px;
min-height: 52px;
padding: 8px 6px;
border: 1px solid var(--lake-border-soft);
border-radius: 9px;
background: rgba(7, 17, 29, .62);
color: var(--lake-text-soft);
font-size: 9px;
}
.domain-target-picker button span { color: var(--lake-muted); }
.domain-target-picker button[data-selected="true"] { border-color: var(--lake-accent); background: var(--lake-accent-soft); color: var(--lake-text); }
.domain-node-modes {
display: grid;
grid-template-columns: 1fr 1fr;
@ -3149,15 +3171,19 @@ select:focus-visible {
padding: 16px 20px;
}
.domain-node-modes article {
.domain-node-modes button {
display: flex;
gap: 11px;
padding: 13px;
border: 1px solid var(--lake-border-soft);
border-radius: 11px;
background: rgba(7, 17, 29, .62);
color: var(--lake-text);
text-align: left;
}
.domain-node-modes button[data-selected="true"] { border-color: var(--lake-accent); background: var(--lake-accent-soft); }
.domain-node-modes svg {
width: 19px;
color: var(--lake-accent);
@ -3224,6 +3250,7 @@ select:focus-visible {
}
@media (max-width: 660px) {
.domain-target-picker { grid-template-columns: 1fr 1fr; }
.domain-node-modes { grid-template-columns: 1fr; }
.domain-connection-sheet .storage-sheet-footer { flex-wrap: wrap; }
}