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>
106 lines
4.1 KiB
TypeScript
106 lines
4.1 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 PostRow from '@/components/dashboard/PostCards'
|
||
import PageHint from '@/components/ui/PageHint'
|
||
|
||
const LIVE_SOURCES = new Set([
|
||
'truth',
|
||
'btc_bottom_reversal',
|
||
'funding_reversal',
|
||
'kol_divergence',
|
||
])
|
||
|
||
/**
|
||
* Archive — legacy / test signals (rsi_reversal, sma_reclaim, breakout,
|
||
* test, phase1…). NOT a live system. Kept only so old data is inspectable.
|
||
*/
|
||
export default function ArchivePage() {
|
||
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[]>([])
|
||
const [loading, setLoading] = useState(true)
|
||
const [loadErr, setLoadErr] = useState('')
|
||
const [src, setSrc] = useState<string>('all')
|
||
|
||
useEffect(() => {
|
||
getPosts(500, 1)
|
||
.then(p => { setPosts(p); setLoadErr('') })
|
||
.catch(e => setLoadErr(e instanceof Error ? e.message : (isZh ? '历史归档加载失败' : 'Failed to load archive')))
|
||
.finally(() => setLoading(false))
|
||
}, [isZh])
|
||
|
||
// Archive = legacy / test data only. Exclude every live signal source so
|
||
// active modules don't leak in here as users explore old experiments. Keep
|
||
// this set in sync with sources emitted by app/services/scanners/*.
|
||
const archivePosts = useMemo(
|
||
() => posts.filter(p => !LIVE_SOURCES.has(p.source || '')),
|
||
[posts],
|
||
)
|
||
const sources = useMemo(() => {
|
||
const m: Record<string, number> = {}
|
||
for (const p of archivePosts) m[p.source || '?'] = (m[p.source || '?'] || 0) + 1
|
||
return Object.entries(m).sort((a, b) => b[1] - a[1])
|
||
}, [archivePosts])
|
||
const filtered = useMemo(
|
||
() => src === 'all' ? archivePosts : archivePosts.filter(p => p.source === src),
|
||
[archivePosts, src],
|
||
)
|
||
|
||
return (
|
||
<div className="page">
|
||
<div className="page-head">
|
||
<div>
|
||
<h1 className="page-title">Archive</h1>
|
||
<PageHint count={`${archivePosts.length} legacy posts`}>
|
||
Historical fires from old scanner experiments
|
||
(rsi_reversal, sma_reclaim, breakout, test/phase1). Kept only for
|
||
inspection — the bot doesn't act on these any more.
|
||
</PageHint>
|
||
</div>
|
||
</div>
|
||
|
||
<div style={{ display: 'flex', gap: 6, flexWrap: 'wrap', marginBottom: 12 }}>
|
||
{[['all', archivePosts.length] as [string, number], ...sources].map(([s, n]) => (
|
||
<button
|
||
key={s}
|
||
onClick={() => setSrc(s)}
|
||
style={{
|
||
padding: '4px 10px', borderRadius: 6, border: '1px solid var(--line)',
|
||
background: src === s ? 'var(--ink)' : 'transparent',
|
||
color: src === s ? 'var(--bg)' : 'var(--ink-3)',
|
||
fontSize: 11, cursor: 'pointer', fontWeight: src === s ? 600 : 400,
|
||
}}
|
||
>
|
||
{s} <span style={{ opacity: 0.6 }}>{n}</span>
|
||
</button>
|
||
))}
|
||
</div>
|
||
|
||
{loading && <div style={{ textAlign: 'center', padding: 60, color: 'var(--ink-3)' }}>{isZh ? '加载中…' : 'Loading…'}</div>}
|
||
{!loading && loadErr && (
|
||
<div className="card" style={{ padding: 24, textAlign: 'center', color: 'var(--down)' }}>
|
||
⚠️ {isZh ? `无法加载归档:${loadErr}` : `Couldn’t load archive — ${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)' }}>
|
||
{isZh ? '没有可显示的历史信号。' : 'No archived signals.'}
|
||
</div>
|
||
)}
|
||
{!loading && filtered.length > 0 && (
|
||
<div className="post-stream">
|
||
{filtered.map(p => <PostRow key={p.id} post={p} />)}
|
||
</div>
|
||
)}
|
||
</div>
|
||
)
|
||
}
|