f34ae9eb00
Module rename across page H1, navbar tab, URL (/en/btc → /en/macro), all metadata/JSON-LD, sitemap, llms.txt, opengraph image, and SystemControl copy. Old /btc route fully removed. New components/btc/MacroPanel.tsx polls /api/macro/snapshot and lays out the 8 indicators in four sections (Valuation / Bottom trigger reference / Market structure / Sentiment & flows / Positioning) with tone-coloured values, current-band threshold chips, and a single CoinGlass / source chart link per card. Composite -100..+100 needle pulses on score change. Also fixes the pinned bottom-reversal alert on the homepage, which still linked to the now-404 /en/btc — now routes to /en/macro. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
188 lines
7.5 KiB
TypeScript
188 lines
7.5 KiB
TypeScript
'use client'
|
||
|
||
import { useState, useEffect, useMemo } from 'react'
|
||
import { useLocale } from 'next-intl'
|
||
import type { TrumpPost } from '@/types'
|
||
import { getPosts } from '@/lib/api'
|
||
import { swrFetch } from '@/lib/cache'
|
||
import PostRow from '@/components/dashboard/PostCards'
|
||
import SystemControl from '@/components/signals/SystemControl'
|
||
import PageHint from '@/components/ui/PageHint'
|
||
import InfoTip from '@/components/ui/InfoTip'
|
||
|
||
/**
|
||
* System 1 — Trump (event-driven scalp). Its own dedicated page.
|
||
* Shows ONLY source === 'truth'. No scanner panel (that's System 2).
|
||
*/
|
||
|
||
const SENTIMENTS = ['all', 'bullish', 'bearish', 'neutral'] as const
|
||
type SentimentFilter = (typeof SENTIMENTS)[number]
|
||
type SignalFilter = 'all' | 'actionable' | 'buy' | 'short'
|
||
|
||
interface TrumpSignalPageProps {
|
||
initialPosts?: TrumpPost[] | null
|
||
}
|
||
|
||
export default function TrumpSignalPage({ initialPosts = null }: TrumpSignalPageProps) {
|
||
const locale = useLocale()
|
||
const isZh = false // i18n shelved — Chinese branches kept as dead code for future revival; see messages/zh.json
|
||
const [posts, setPosts] = useState<TrumpPost[]>(initialPosts ?? [])
|
||
const [loading, setLoading] = useState(initialPosts === null)
|
||
const [loadErr, setLoadErr] = useState('')
|
||
const [sentFilter, setSentFilter] = useState<SentimentFilter>('all')
|
||
const [sigFilter, setSigFilter] = useState<SignalFilter>('all')
|
||
|
||
useEffect(() => {
|
||
swrFetch(
|
||
'posts-500',
|
||
3 * 60_000, // 3 min TTL
|
||
() => getPosts(500, 1),
|
||
fresh => setPosts(fresh), // background revalidation callback
|
||
)
|
||
.then(p => { setPosts(p); setLoadErr('') })
|
||
.catch(e => setLoadErr(e instanceof Error ? e.message : (isZh ? '帖子加载失败' : 'Failed to load posts')))
|
||
.finally(() => setLoading(false))
|
||
}, [isZh])
|
||
|
||
const trumpPosts = useMemo(
|
||
() => posts.filter(p => (p.source || '') === 'truth'),
|
||
[posts],
|
||
)
|
||
const filtered = useMemo(() => trumpPosts.filter(p => {
|
||
if (sentFilter !== 'all' && p.sentiment !== sentFilter) return false
|
||
if (sigFilter === 'actionable' && p.signal !== 'buy' && p.signal !== 'short') return false
|
||
if (sigFilter === 'buy' && p.signal !== 'buy') return false
|
||
if (sigFilter === 'short' && p.signal !== 'short') return false
|
||
return true
|
||
}), [trumpPosts, sentFilter, sigFilter])
|
||
|
||
const sigCounts = useMemo(() => ({
|
||
all: trumpPosts.length,
|
||
actionable: trumpPosts.filter(p => p.signal === 'buy' || p.signal === 'short').length,
|
||
buy: trumpPosts.filter(p => p.signal === 'buy').length,
|
||
short: trumpPosts.filter(p => p.signal === 'short').length,
|
||
}), [trumpPosts])
|
||
|
||
const signalLabels: Record<SignalFilter, string> = {
|
||
all: isZh ? '全部' : 'All',
|
||
actionable: isZh ? '可执行' : 'Actionable',
|
||
buy: isZh ? '做多' : 'Buy',
|
||
short: isZh ? '做空' : 'Short',
|
||
}
|
||
|
||
const sentimentLabels: Record<SentimentFilter, string> = {
|
||
all: isZh ? '全部' : 'All',
|
||
bullish: isZh ? '看多' : 'Bullish',
|
||
bearish: isZh ? '看空' : 'Bearish',
|
||
neutral: isZh ? '中性' : 'Neutral',
|
||
}
|
||
|
||
return (
|
||
<div className="page">
|
||
<div className="page-head">
|
||
<div>
|
||
<h1 className="page-title">{isZh ? '① Trump 信号' : '① Trump Signal'}</h1>
|
||
<PageHint count={`${sigCounts.actionable} actionable / ${trumpPosts.length} posts`}>
|
||
Watches Trump's Truth Social posts in real time, AI-scores each one,
|
||
and only fires a trade when the conviction is high enough to move price.
|
||
</PageHint>
|
||
</div>
|
||
<span className="chip"><span className="live-dot" />Live</span>
|
||
</div>
|
||
|
||
<SystemControl system="trump" />
|
||
|
||
<div style={{
|
||
display: 'flex', justifyContent: 'space-between', alignItems: 'center',
|
||
gap: 12, margin: '16px 0 12px', flexWrap: 'wrap',
|
||
}}>
|
||
<div className="nav-tabs" style={{ background: 'var(--bg-sunk)' }}>
|
||
{([
|
||
{ key: 'all', hint: 'Every post the scraper has captured.' },
|
||
{ key: 'actionable', hint: 'Only posts the AI flagged as BUY or SHORT.' },
|
||
{ key: 'buy', hint: 'Posts where the AI verdict is long BTC.' },
|
||
{ key: 'short', hint: 'Posts where the AI verdict is short BTC.' },
|
||
] as const).map(f => (
|
||
<button
|
||
key={f.key}
|
||
className={`nav-tab ${sigFilter === f.key ? 'active' : ''}`}
|
||
onClick={() => setSigFilter(f.key)}
|
||
>
|
||
{f.key === 'actionable' ? '🔥 ' : ''}
|
||
{signalLabels[f.key]}
|
||
<span style={{ color: 'var(--ink-4)', marginLeft: 4 }}>{sigCounts[f.key]}</span>
|
||
</button>
|
||
))}
|
||
</div>
|
||
<div style={{ display: 'flex', gap: 6, flexWrap: 'wrap', alignItems: 'center' }}>
|
||
<span style={{ fontSize: 11, color: 'var(--ink-4)', marginRight: 4 }}>
|
||
Sentiment
|
||
<InfoTip
|
||
text="Filters by the post's overall tone. Sentiment ≠ trade signal — a bearish post can still be a BUY if the market reads it as priced-in."
|
||
placement="left"
|
||
/>
|
||
</span>
|
||
{SENTIMENTS.map(f => (
|
||
<button
|
||
key={f}
|
||
onClick={() => setSentFilter(f)}
|
||
style={{
|
||
padding: '4px 10px', borderRadius: 6, border: '1px solid var(--line)',
|
||
background: sentFilter === f ? 'var(--ink)' : 'transparent',
|
||
color: sentFilter === f ? 'var(--bg)' : 'var(--ink-3)',
|
||
fontSize: 11, cursor: 'pointer', fontWeight: sentFilter === f ? 600 : 400,
|
||
}}
|
||
>
|
||
{sentimentLabels[f]}
|
||
</button>
|
||
))}
|
||
</div>
|
||
</div>
|
||
|
||
{loading && <TrumpSkeleton />}
|
||
{!loading && loadErr && (
|
||
<div className="card" style={{ padding: 24, textAlign: 'center', color: 'var(--down)' }}>
|
||
⚠️ {`Couldn’t load signals — ${loadErr}`}
|
||
<div style={{ marginTop: 10 }}>
|
||
<button className="btn ghost" style={{ fontSize: 12, padding: '6px 14px' }}
|
||
onClick={() => location.reload()}>{isZh ? '重试' : 'Retry'}</button>
|
||
</div>
|
||
</div>
|
||
)}
|
||
{!loading && !loadErr && filtered.length === 0 && (
|
||
<div className="card" style={{ padding: 48, textAlign: 'center', color: 'var(--ink-3)' }}>
|
||
No Trump signals match the current filter.
|
||
</div>
|
||
)}
|
||
{!loading && filtered.length > 0 && (
|
||
<div className="post-stream">
|
||
{filtered.map(p => <PostRow key={p.id} post={p} />)}
|
||
</div>
|
||
)}
|
||
</div>
|
||
)
|
||
}
|
||
|
||
function TrumpSkeleton() {
|
||
return (
|
||
<div className="post-stream" style={{ marginTop: 8 }}>
|
||
{Array.from({ length: 6 }).map((_, i) => (
|
||
<div key={i} className="skeleton-card" style={{ marginBottom: 8 }}>
|
||
<div style={{ display: 'flex', gap: 8, alignItems: 'center' }}>
|
||
<div className="skeleton sk-line sk-w-q" />
|
||
<div className="skeleton sk-line" style={{ width: 60 }} />
|
||
</div>
|
||
<div className="skeleton sk-title sk-w-3q" />
|
||
<div className="skeleton sk-line sk-w-full" />
|
||
<div className="skeleton sk-line sk-w-half" />
|
||
<div style={{ display: 'flex', gap: 8, marginTop: 4 }}>
|
||
<div className="skeleton sk-line-sm" style={{ width: 56 }} />
|
||
<div className="skeleton sk-line-sm" style={{ width: 80 }} />
|
||
<div className="skeleton sk-line-sm" style={{ width: 64 }} />
|
||
</div>
|
||
</div>
|
||
))}
|
||
</div>
|
||
)
|
||
}
|