d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
Web Frontend / Deploy to Cloudflare (push) Has been cancelled
32 lines
1.6 KiB
TypeScript
32 lines
1.6 KiB
TypeScript
import type { FeedItem } from "@/lib/types";
|
|
import { relativeTime } from "@/lib/github";
|
|
|
|
export function Ticker({ items }: { items: FeedItem[] }) {
|
|
if (!items.length) return null;
|
|
const doubled = [...items, ...items]; // seamless loop
|
|
return (
|
|
<div className="hairline-t hairline-b bg-paper-deep overflow-hidden">
|
|
<div className="mx-auto max-w-[1400px] flex items-stretch">
|
|
<div className="bg-ink text-paper px-4 py-2 flex items-center shrink-0 gap-2">
|
|
<span className="w-1.5 h-1.5 bg-indigo rounded-full inline-block animate-pulse" />
|
|
<span className="font-cjk text-sm font-semibold tracking-wider">实 时</span>
|
|
<span className="font-mono text-[0.55rem] uppercase tracking-widest text-paper-deep/60 ml-1 self-end mb-0.5">LIVE</span>
|
|
</div>
|
|
<div className="flex-1 overflow-hidden relative">
|
|
<div className="ticker-track py-2 font-mono text-[0.78rem]">
|
|
{doubled.map((item, i) => (
|
|
<span key={`${item.url}-${i}`} className="inline-flex items-center gap-2">
|
|
<span className="text-indigo uppercase tracking-wider">{item.kind === "pull" ? "PR" : "ISS"}</span>
|
|
<span className="tabular text-ink-mute">#{item.number}</span>
|
|
<span className="text-ink">{item.title.slice(0, 78)}{item.title.length > 78 ? "…" : ""}</span>
|
|
<span className="text-ink-mute tabular">· {relativeTime(item.updatedAt)}</span>
|
|
<span className="text-paper-line">◆</span>
|
|
</span>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|