fix: stop overstating subsystem runtime evidence

This commit is contained in:
冰朔 2026-08-04 21:18:48 +08:00
commit ccee303355
3 changed files with 21 additions and 19 deletions

View file

@ -5,7 +5,6 @@ type FifthDomainSystemId = 'pufferfish' | 'eternal-lake-heart'
type FifthDomainSystemsProps = {
detail?: 'overview' | 'pufferfish'
evidenceMode?: 'receipt' | 'visual-preview'
onEnterEternalLake: () => void
onEnterPufferfish: () => void
}
@ -19,7 +18,6 @@ const PUFFERFISH_FACTS = {
export function FifthDomainSystems({
detail = 'overview',
evidenceMode = 'receipt',
onEnterEternalLake,
onEnterPufferfish,
}: FifthDomainSystemsProps) {
@ -28,9 +26,8 @@ export function FifthDomainSystems({
)
const pufferfishSelected = selected === 'pufferfish'
const eternalLakeSelected = selected === 'eternal-lake-heart'
const isVisualPreview = evidenceMode === 'visual-preview'
const evidenceLabel = isVisualPreview ? '本地拓扑预览' : '真实接入'
const nodeState = isVisualPreview ? '未实时核验' : '在线回执'
const evidenceLabel = '本地拓扑预览'
const nodeState = '未实时核验'
return (
<section className="fifth-systems" data-detail={detail}>
@ -73,7 +70,7 @@ export function FifthDomainSystems({
<span></span>
<strong> Ubuntu</strong>
<code>{PUFFERFISH_FACTS.node}</code>
<small><i />{isVisualPreview ? '本地登记' : '登记回执'}</small>
<small><i /></small>
</div>
</div>
<div className="system-path__persona">
@ -150,9 +147,7 @@ export function FifthDomainSystems({
)}
</>}
<footer>
{isVisualPreview
? '本页仅展示本地登记拓扑,不能证明节点在线或人格体已恢复。'
: '拓扑信息来自本地登记;在线状态仅以当前会话回执为准。'}
线
</footer>
</aside>
</div>