From 0c557f44b59d90900d6a2052a9d97c0266d8feb1 Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Tue, 19 May 2026 00:38:13 -0700 Subject: feat: add ValuationOverviewCard to overview right column (multiples) Co-Authored-By: Claude Sonnet 4.6 --- .../components/prism/ValuationOverviewCard.tsx | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 frontend/components/prism/ValuationOverviewCard.tsx (limited to 'frontend/components/prism/ValuationOverviewCard.tsx') diff --git a/frontend/components/prism/ValuationOverviewCard.tsx b/frontend/components/prism/ValuationOverviewCard.tsx new file mode 100644 index 0000000..f85e443 --- /dev/null +++ b/frontend/components/prism/ValuationOverviewCard.tsx @@ -0,0 +1,41 @@ +import type { TickerOverview } from "@/types/api"; +import { fmtCurrency, fmtLarge, fmtNumber } from "@/lib/format"; + +type Props = { + overview: TickerOverview; +}; + +export function ValuationOverviewCard({ overview }: Props) { + const rows = [ + { label: "Market Cap", value: fmtLarge(overview.stats.market_cap), missing: overview.stats.market_cap == null }, + { label: "P/E TTM", value: overview.stats.trailing_pe == null ? "-" : `${fmtNumber(overview.stats.trailing_pe)}x`, missing: overview.stats.trailing_pe == null }, + { label: "EPS TTM", value: fmtCurrency(overview.stats.trailing_eps), missing: overview.stats.trailing_eps == null }, + { label: "P/B", value: overview.ratios.price_to_book == null ? "-" : `${fmtNumber(overview.ratios.price_to_book)}x`, missing: overview.ratios.price_to_book == null }, + { label: "P/S", value: overview.ratios.price_to_sales == null ? "-" : `${fmtNumber(overview.ratios.price_to_sales)}x`, missing: overview.ratios.price_to_sales == null }, + { label: "EV/Sales", value: overview.ratios.ev_to_sales == null ? "-" : `${fmtNumber(overview.ratios.ev_to_sales)}x`, missing: overview.ratios.ev_to_sales == null }, + { label: "EV/EBITDA", value: overview.ratios.ev_to_ebitda == null ? "-" : `${fmtNumber(overview.ratios.ev_to_ebitda)}x`, missing: overview.ratios.ev_to_ebitda == null }, + ]; + + const visible = rows.filter((r) => !r.missing); + + return ( +
+
+
+
Valuation
+

Valuation

+
+
+ {visible.length > 0 && ( +
+ {visible.map((row) => ( +
+ {row.label} + {row.value} +
+ ))} +
+ )} +
+ ); +} -- cgit v1.3-2-g0d8e