import { useAppStore } from "../stores/app-store"; export function PreviewBox() { const text = useAppStore((s) => s.previewText); const active = useAppStore((s) => s.previewActive); const weakNetwork = useAppStore((s) => s.weakNetwork); const recording = useAppStore((s) => s.recording); const hasText = text.length > 0; const placeholder = weakNetwork && recording ? "网络波动中,音频缓冲后发送…" : "按住说话…"; return (

{hasText ? text : placeholder}

); }