Files
stock_chart_site/web/components/PriceTargets.tsx
claude-owner a4a4a7f98c feat(targets): price target/stop simulator with chart overlay lines
- New lib/targets.ts: per-code localStorage (key `targets:<code>`) with
  read/write/clear; rejects non-positive/non-finite values.
- New PriceTargets sidebar panel: 목표가/손절가 inputs, live %-from-current
  preview (rose=up, sky=down), save/clear actions.
- StockChart accepts optional `targets` prop and draws dashed horizontal
  price lines on the candle series (rose=target, sky=stop) with axis labels.
- Page loads saved targets on mount/code-change and re-renders chart on save.

Also fixes view-counter dedupe caveat from reviewer: split into
wasRecordedToday() + markRecorded(); the page now marks localStorage only
after POST /api/views succeeds, so a failed POST stays retryable on the
next visit instead of being silently swallowed for the day.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-29 00:01:43 +09:00

155 lines
5.0 KiB
TypeScript

"use client";
// 목표가 / 손절가 시뮬레이터 (Toss "내 목표가" read-only 클론).
// - 현재가 기준 변동률 미리 계산해서 표시
// - 저장 시 localStorage 에만 — 차트 오버레이는 부모 page 가 같은 상태를 읽어 StockChart 에 전달
// - 알림은 별도 AlertsPanel 담당, 여기는 시각화 + 손익 프리뷰만
import { useEffect, useMemo, useState } from "react";
import { readTargets, writeTargets, type Targets } from "../lib/targets";
type Props = {
code: string;
current: number | null;
// 저장/해제 시 부모에 변경을 전달 — 차트에 즉시 반영하도록.
onChange?: (t: Targets) => void;
};
function parseNum(s: string): number | null {
const cleaned = s.replace(/,/g, "").trim();
if (!cleaned) return null;
const n = Number(cleaned);
return Number.isFinite(n) && n > 0 ? n : null;
}
function pct(price: number | null, current: number | null): number | null {
if (price == null || current == null || current <= 0) return null;
return ((price - current) / current) * 100;
}
export function PriceTargets({ code, current, onChange }: Props) {
const [target, setTarget] = useState("");
const [stop, setStop] = useState("");
const [saved, setSaved] = useState<Targets>({});
// 종목 바뀌면 새로 로드. 입력창도 저장값으로 초기화.
useEffect(() => {
const t = readTargets(code);
setSaved(t);
setTarget(t.target != null ? String(t.target) : "");
setStop(t.stop != null ? String(t.stop) : "");
}, [code]);
const targetN = useMemo(() => parseNum(target), [target]);
const stopN = useMemo(() => parseNum(stop), [stop]);
const targetPct = pct(targetN, current);
const stopPct = pct(stopN, current);
const dirty =
(targetN ?? null) !== (saved.target ?? null) ||
(stopN ?? null) !== (saved.stop ?? null);
const save = () => {
const next: Targets = { target: targetN, stop: stopN };
writeTargets(code, next);
setSaved(next);
onChange?.(next);
};
const clear = () => {
setTarget("");
setStop("");
const next: Targets = {};
writeTargets(code, next);
setSaved(next);
onChange?.(next);
};
const fmtPct = (p: number | null): string =>
p == null ? "" : `${p >= 0 ? "+" : ""}${p.toFixed(2)}%`;
const pctCls = (p: number | null): string =>
p == null ? "text-zinc-500" : p >= 0 ? "text-rose-400" : "text-sky-400";
return (
<div className="rounded-lg border border-zinc-800 bg-zinc-900/40 p-3">
<div className="mb-2 flex items-baseline justify-between">
<h3 className="text-xs font-semibold text-zinc-300"> </h3>
<span className="text-[10px] text-zinc-500"> · </span>
</div>
<div className="space-y-2">
<Row
label="목표가"
color="bg-rose-400/80"
value={target}
onChange={setTarget}
deltaText={fmtPct(targetPct)}
deltaCls={pctCls(targetPct)}
/>
<Row
label="손절가"
color="bg-sky-400/80"
value={stop}
onChange={setStop}
deltaText={fmtPct(stopPct)}
deltaCls={pctCls(stopPct)}
/>
</div>
<div className="mt-2 flex items-center gap-2">
<button
type="button"
onClick={save}
disabled={!dirty}
className="flex-1 rounded-md border border-zinc-700 bg-zinc-800/80 px-2 py-1 text-[11px] text-zinc-100 transition hover:border-zinc-500 disabled:cursor-not-allowed disabled:opacity-40"
>
</button>
<button
type="button"
onClick={clear}
disabled={saved.target == null && saved.stop == null && !target && !stop}
className="rounded-md border border-zinc-800 px-2 py-1 text-[11px] text-zinc-400 transition hover:border-zinc-600 hover:text-zinc-200 disabled:cursor-not-allowed disabled:opacity-40"
>
</button>
</div>
{current == null && (
<div className="mt-1 text-[10px] text-zinc-500"> </div>
)}
</div>
);
}
function Row({
label,
color,
value,
onChange,
deltaText,
deltaCls,
}: {
label: string;
color: string;
value: string;
onChange: (s: string) => void;
deltaText: string;
deltaCls: string;
}) {
return (
<label className="flex items-center gap-2 text-[11px]">
<span className={`inline-block h-2 w-2 rounded-sm ${color}`} aria-hidden />
<span className="w-12 shrink-0 text-zinc-400">{label}</span>
<input
type="text"
inputMode="numeric"
autoComplete="off"
value={value}
onChange={(e) => onChange(e.target.value)}
placeholder="0"
className="min-w-0 flex-1 rounded border border-zinc-800 bg-zinc-950/50 px-2 py-1 text-right tabular-nums text-zinc-100 outline-none focus:border-zinc-600"
/>
<span className={`w-16 shrink-0 text-right tabular-nums ${deltaCls}`}>
{deltaText}
</span>
</label>
);
}