mirror of
https://github.com/we-promise/sure.git
synced 2026-05-30 07:49:01 +00:00
Chart had no way to read the value at a specific date — users had to infer Saved amounts from line position relative to the y-axis labels added in the previous commit. - Transparent <rect> overlay covers the plot area + catches pointer. - pointermove uses d3.bisector to snap to the nearest saved series point, draws a dashed crosshair + a saved-line dot + a projection-line dot (linearly interpolated between today and target). - HTML tooltip lives inside the chart root (cleared on next _draw) showing "date / Saved: $X / Projected: $Y". Clamps to viewport so it doesn't overflow the card. - pointerleave hides everything. Pointer events unify mouse + touch — single handler covers both desktop hover and mobile tap-and-drag. No keyboard nav yet; tracked as follow-up (Stimulus controller is the right home but won't ship in this round).
425 lines
15 KiB
JavaScript
425 lines
15 KiB
JavaScript
import { Controller } from "@hotwired/stimulus";
|
|
import * as d3 from "d3";
|
|
|
|
// Projection chart for a goal. Renders:
|
|
// - Saved area + line from goal creation → today (solid)
|
|
// - Dashed projection line from today → target date (yellow if behind,
|
|
// green if on track)
|
|
// - Horizontal dashed target line with label
|
|
// - Today marker (vertical line + dot)
|
|
//
|
|
// Data shape passed via `data-goal-projection-chart-data-value`
|
|
// matches Goal#projection_payload.
|
|
export default class extends Controller {
|
|
static values = { data: Object, ariaLabel: String, ariaDescription: String };
|
|
|
|
connect() {
|
|
this._draw();
|
|
this._resize = this._draw.bind(this);
|
|
window.addEventListener("resize", this._resize);
|
|
// Container may have 0 width on initial connect (Turbo restoration,
|
|
// hidden parent, etc). Re-draw whenever the box settles into a real
|
|
// size.
|
|
if (typeof ResizeObserver !== "undefined") {
|
|
this._observer = new ResizeObserver(() => this._draw());
|
|
this._observer.observe(this.element);
|
|
}
|
|
// Repaint when the user toggles theme so SVG attributes (which bake
|
|
// light/dark hex values at draw time) follow data-theme. Lives here
|
|
// until theme_controller broadcasts a theme:change event upstream.
|
|
if (typeof MutationObserver !== "undefined") {
|
|
this._themeObserver = new MutationObserver((mutations) => {
|
|
if (mutations.some((m) => m.attributeName === "data-theme")) this._draw();
|
|
});
|
|
this._themeObserver.observe(document.documentElement, {
|
|
attributes: true,
|
|
attributeFilter: ["data-theme"],
|
|
});
|
|
}
|
|
}
|
|
|
|
disconnect() {
|
|
window.removeEventListener("resize", this._resize);
|
|
this._observer?.disconnect();
|
|
this._themeObserver?.disconnect();
|
|
}
|
|
|
|
_draw() {
|
|
const root = this.element;
|
|
root.innerHTML = "";
|
|
|
|
const data = this.dataValue || {};
|
|
const width = root.clientWidth || 720;
|
|
const height = root.clientHeight || 240;
|
|
if (width <= 0 || height <= 0) return;
|
|
|
|
const isDark = document.documentElement.getAttribute("data-theme") === "dark";
|
|
const textPrimary = isDark ? "#ffffff" : "#171717";
|
|
const textSecondary = isDark ? "#cfcfcf" : "#737373";
|
|
const borderSubdued = isDark ? "rgba(255,255,255,0.15)" : "rgba(0,0,0,0.10)";
|
|
const containerBg = isDark ? "#0a0a0a" : "#ffffff";
|
|
|
|
// Reserve gutter for y-axis labels when there's room. Mobile (< 320)
|
|
// keeps the tighter left margin and skips the y-axis entirely.
|
|
const yAxisVisible = width - 16 - 24 >= 320;
|
|
const margin = { top: 28, right: 24, bottom: 28, left: yAxisVisible ? 44 : 16 };
|
|
const innerWidth = width - margin.left - margin.right;
|
|
const innerHeight = height - margin.top - margin.bottom;
|
|
|
|
const start = new Date(data.start_date);
|
|
const today = new Date(data.today);
|
|
const target = data.target_date ? new Date(data.target_date) : null;
|
|
const targetAmount = data.target_amount || 0;
|
|
const currentAmount = data.current_amount || 0;
|
|
const avgMonthly = data.avg_monthly || 0;
|
|
|
|
const endDate = target || new Date(today.getTime() + 30 * 24 * 60 * 60 * 1000);
|
|
|
|
const rawSavedSeries = (data.saved_series || []).map((p) => ({ date: new Date(p.date), value: p.value }));
|
|
const firstContribDate = rawSavedSeries[0]?.date;
|
|
const savedSeries = [];
|
|
// Only seed a (start, 0) point when start_date predates the first
|
|
// contribution. Otherwise the line draws a vertical jump up at the
|
|
// chart's left edge.
|
|
if (!firstContribDate || firstContribDate.getTime() > start.getTime()) {
|
|
savedSeries.push({ date: start, value: 0 });
|
|
}
|
|
savedSeries.push(...rawSavedSeries);
|
|
if (savedSeries.length && savedSeries[savedSeries.length - 1].date < today) {
|
|
savedSeries.push({ date: today, value: currentAmount });
|
|
}
|
|
|
|
const projectionEnd = target
|
|
? Math.max(currentAmount, currentAmount + avgMonthly * Math.max(0, this._monthsBetween(today, target)))
|
|
: currentAmount;
|
|
const projectionSeries = target
|
|
? [
|
|
{ date: today, value: currentAmount },
|
|
{ date: target, value: projectionEnd },
|
|
]
|
|
: [];
|
|
|
|
const yMax = Math.max(targetAmount * 1.05, projectionEnd, currentAmount, 1);
|
|
|
|
const x = d3.scaleTime().domain([start, endDate]).range([margin.left, margin.left + innerWidth]);
|
|
const y = d3.scaleLinear().domain([0, yMax]).range([margin.top + innerHeight, margin.top]);
|
|
|
|
const svg = d3
|
|
.select(root)
|
|
.append("svg")
|
|
.attr("width", width)
|
|
.attr("height", height)
|
|
.attr("viewBox", `0 0 ${width} ${height}`)
|
|
.attr("preserveAspectRatio", "none");
|
|
|
|
const titleId = `chart-title-${this._id()}`;
|
|
const descId = `chart-desc-${this._id()}`;
|
|
svg.attr("role", "img").attr("aria-labelledby", titleId).attr("aria-describedby", descId);
|
|
svg.append("title").attr("id", titleId).text(this.ariaLabelValue || "Goal projection");
|
|
svg.append("desc").attr("id", descId).text(this.ariaDescriptionValue || "");
|
|
|
|
const defs = svg.append("defs");
|
|
const gradient = defs
|
|
.append("linearGradient")
|
|
.attr("id", `saved-fill-${this._id()}`)
|
|
.attr("x1", 0).attr("y1", 0).attr("x2", 0).attr("y2", 1);
|
|
gradient.append("stop").attr("offset", "0%").attr("stop-color", textPrimary).attr("stop-opacity", 0.22);
|
|
gradient.append("stop").attr("offset", "100%").attr("stop-color", textPrimary).attr("stop-opacity", 0);
|
|
|
|
if (yAxisVisible) {
|
|
const yTicks = y.ticks(3);
|
|
yTicks.forEach((tickValue) => {
|
|
svg
|
|
.append("line")
|
|
.attr("x1", margin.left)
|
|
.attr("x2", margin.left + innerWidth)
|
|
.attr("y1", y(tickValue))
|
|
.attr("y2", y(tickValue))
|
|
.attr("stroke", borderSubdued)
|
|
.attr("stroke-width", 1);
|
|
svg
|
|
.append("text")
|
|
.attr("x", margin.left - 6)
|
|
.attr("y", y(tickValue) + 3)
|
|
.attr("text-anchor", "end")
|
|
.attr("font-size", 10)
|
|
.attr("fill", textSecondary)
|
|
.text(this._fmtMoneyShort(tickValue, data.currency));
|
|
});
|
|
}
|
|
|
|
if (targetAmount > 0) {
|
|
svg
|
|
.append("line")
|
|
.attr("x1", margin.left)
|
|
.attr("x2", margin.left + innerWidth)
|
|
.attr("y1", y(targetAmount))
|
|
.attr("y2", y(targetAmount))
|
|
.attr("stroke", borderSubdued)
|
|
.attr("stroke-width", 1)
|
|
.attr("stroke-dasharray", "3 3");
|
|
|
|
svg
|
|
.append("text")
|
|
.attr("x", margin.left + innerWidth - 4)
|
|
.attr("y", y(targetAmount) - 6)
|
|
.attr("text-anchor", "end")
|
|
.attr("font-size", 10)
|
|
.attr("fill", textPrimary)
|
|
.text(`Target · ${this._fmtMoney(targetAmount, data.currency)}`);
|
|
}
|
|
|
|
const area = d3
|
|
.area()
|
|
.x((d) => x(d.date))
|
|
.y0(margin.top + innerHeight)
|
|
.y1((d) => y(d.value))
|
|
.curve(d3.curveMonotoneX);
|
|
|
|
const line = d3
|
|
.line()
|
|
.x((d) => x(d.date))
|
|
.y((d) => y(d.value))
|
|
.curve(d3.curveMonotoneX);
|
|
|
|
svg
|
|
.append("path")
|
|
.datum(savedSeries)
|
|
.attr("fill", `url(#saved-fill-${this._id()})`)
|
|
.attr("d", area);
|
|
|
|
svg
|
|
.append("path")
|
|
.datum(savedSeries)
|
|
.attr("fill", "none")
|
|
.attr("stroke", textPrimary)
|
|
.attr("stroke-width", 2)
|
|
.attr("stroke-linejoin", "round")
|
|
.attr("stroke-linecap", "round")
|
|
.attr("d", line);
|
|
|
|
if (projectionSeries.length) {
|
|
const willHit = projectionEnd >= targetAmount;
|
|
const projColor = willHit ? "var(--color-green-600)" : "var(--color-yellow-600)";
|
|
svg
|
|
.append("path")
|
|
.datum(projectionSeries)
|
|
.attr("fill", "none")
|
|
.attr("stroke", projColor)
|
|
.attr("stroke-width", 2)
|
|
.attr("stroke-linecap", "round")
|
|
.attr("stroke-dasharray", "4 4")
|
|
.attr("d", line);
|
|
|
|
svg
|
|
.append("circle")
|
|
.attr("cx", x(target))
|
|
.attr("cy", y(projectionEnd))
|
|
.attr("r", 4)
|
|
.attr("fill", projColor)
|
|
.attr("stroke", containerBg)
|
|
.attr("stroke-width", 2);
|
|
|
|
if (innerWidth >= 320) {
|
|
const labelText = willHit
|
|
? this._fmtMoneyShort(projectionEnd, data.currency)
|
|
: `Short ${this._fmtMoneyShort(targetAmount - projectionEnd, data.currency)}`;
|
|
svg
|
|
.append("text")
|
|
.attr("x", x(target) - 8)
|
|
.attr("y", y(projectionEnd) - 8)
|
|
.attr("text-anchor", "end")
|
|
.attr("font-size", 10)
|
|
.attr("fill", textSecondary)
|
|
.text(labelText);
|
|
}
|
|
}
|
|
|
|
svg
|
|
.append("line")
|
|
.attr("x1", x(today))
|
|
.attr("x2", x(today))
|
|
.attr("y1", margin.top)
|
|
.attr("y2", margin.top + innerHeight)
|
|
.attr("stroke", borderSubdued)
|
|
.attr("stroke-width", 1)
|
|
.attr("stroke-dasharray", "2 4");
|
|
|
|
svg
|
|
.append("circle")
|
|
.attr("cx", x(today))
|
|
.attr("cy", y(currentAmount))
|
|
.attr("r", 4)
|
|
.attr("fill", textPrimary)
|
|
.attr("stroke", containerBg)
|
|
.attr("stroke-width", 2);
|
|
|
|
if (innerWidth >= 320) {
|
|
svg
|
|
.append("text")
|
|
.attr("x", x(today))
|
|
.attr("y", margin.top - 4)
|
|
.attr("text-anchor", "middle")
|
|
.attr("font-size", 10)
|
|
.attr("fill", textSecondary)
|
|
.text("Today");
|
|
}
|
|
|
|
const tickFmt = d3.timeFormat("%b '%y");
|
|
const tickCount = Math.min(5, Math.max(2, Math.round(innerWidth / 80)));
|
|
const ticks = x.ticks(tickCount);
|
|
const tickGroup = svg.append("g");
|
|
tickGroup
|
|
.selectAll("text")
|
|
.data(ticks)
|
|
.enter()
|
|
.append("text")
|
|
.attr("x", (d) => x(d))
|
|
.attr("y", height - 8)
|
|
.attr("text-anchor", "middle")
|
|
.attr("font-size", 10)
|
|
.attr("fill", textSecondary)
|
|
.text((d) => tickFmt(d));
|
|
// De-dupe adjacent equal tick labels (e.g. multiple "May '26" on a
|
|
// short window where d3.ticks oversamples).
|
|
const tickNodes = tickGroup.selectAll("text").nodes();
|
|
for (let i = tickNodes.length - 1; i > 0; i--) {
|
|
if (tickNodes[i].textContent === tickNodes[i - 1].textContent) {
|
|
tickNodes[i].remove();
|
|
}
|
|
}
|
|
|
|
// Hover interactivity — crosshair + dots + tooltip on pointermove.
|
|
// Transparent rect catches pointer events across the plot area.
|
|
const crosshair = svg
|
|
.append("line")
|
|
.attr("y1", margin.top)
|
|
.attr("y2", margin.top + innerHeight)
|
|
.attr("stroke", textSecondary)
|
|
.attr("stroke-width", 1)
|
|
.attr("stroke-dasharray", "2 2")
|
|
.attr("pointer-events", "none")
|
|
.style("display", "none");
|
|
|
|
const hoverSavedDot = svg
|
|
.append("circle")
|
|
.attr("r", 4)
|
|
.attr("fill", textPrimary)
|
|
.attr("stroke", containerBg)
|
|
.attr("stroke-width", 2)
|
|
.attr("pointer-events", "none")
|
|
.style("display", "none");
|
|
|
|
const hoverProjDot = svg
|
|
.append("circle")
|
|
.attr("r", 4)
|
|
.attr("fill", projectionSeries.length && projectionEnd >= targetAmount ? "var(--color-green-600)" : "var(--color-yellow-600)")
|
|
.attr("stroke", containerBg)
|
|
.attr("stroke-width", 2)
|
|
.attr("pointer-events", "none")
|
|
.style("display", "none");
|
|
|
|
if (root.style.position !== "absolute") root.style.position = "relative";
|
|
const tooltip = document.createElement("div");
|
|
tooltip.style.cssText = "position:absolute;pointer-events:none;display:none;background:var(--color-gray-900);color:var(--color-white);font-size:11px;line-height:1.35;padding:6px 8px;border-radius:6px;white-space:nowrap;z-index:5;box-shadow:0 2px 8px rgba(0,0,0,0.15);";
|
|
root.appendChild(tooltip);
|
|
|
|
const overlay = svg
|
|
.append("rect")
|
|
.attr("x", margin.left)
|
|
.attr("y", margin.top)
|
|
.attr("width", innerWidth)
|
|
.attr("height", innerHeight)
|
|
.attr("fill", "transparent")
|
|
.style("cursor", "crosshair");
|
|
|
|
const bisectDate = d3.bisector((d) => d.date).left;
|
|
const dateFmt = d3.timeFormat("%b %d, %Y");
|
|
const todayTs = today.getTime();
|
|
const targetTs = target ? target.getTime() : null;
|
|
|
|
const showAt = (xPos, yPos) => {
|
|
const xVal = x.invert(xPos);
|
|
if (!savedSeries.length) return;
|
|
|
|
const i = bisectDate(savedSeries, xVal);
|
|
const a = savedSeries[Math.max(0, i - 1)];
|
|
const b = savedSeries[Math.min(savedSeries.length - 1, i)];
|
|
const savedPoint = !a ? b : !b ? a : (xVal - a.date < b.date - xVal ? a : b);
|
|
|
|
crosshair.attr("x1", x(savedPoint.date)).attr("x2", x(savedPoint.date)).style("display", null);
|
|
hoverSavedDot.attr("cx", x(savedPoint.date)).attr("cy", y(savedPoint.value)).style("display", null);
|
|
|
|
let projValue = null;
|
|
if (projectionSeries.length && targetTs && xVal.getTime() >= todayTs) {
|
|
const tFrac = (xVal.getTime() - todayTs) / (targetTs - todayTs);
|
|
if (tFrac >= 0 && tFrac <= 1) {
|
|
projValue = currentAmount + tFrac * (projectionEnd - currentAmount);
|
|
hoverProjDot.attr("cx", x(savedPoint.date)).attr("cy", y(projValue)).style("display", null);
|
|
} else {
|
|
hoverProjDot.style("display", "none");
|
|
}
|
|
} else {
|
|
hoverProjDot.style("display", "none");
|
|
}
|
|
|
|
const lines = [
|
|
dateFmt(savedPoint.date),
|
|
`Saved: ${this._fmtMoney(savedPoint.value, data.currency)}`,
|
|
];
|
|
if (projValue !== null) {
|
|
lines.push(`Projected: ${this._fmtMoney(projValue, data.currency)}`);
|
|
}
|
|
tooltip.textContent = lines.join("\n");
|
|
tooltip.style.whiteSpace = "pre";
|
|
tooltip.style.display = "block";
|
|
const tipRect = tooltip.getBoundingClientRect();
|
|
const left = Math.min(width - tipRect.width - 4, Math.max(4, xPos + 12));
|
|
const top = Math.max(4, yPos - tipRect.height - 8);
|
|
tooltip.style.left = `${left}px`;
|
|
tooltip.style.top = `${top}px`;
|
|
};
|
|
|
|
const hide = () => {
|
|
crosshair.style("display", "none");
|
|
hoverSavedDot.style("display", "none");
|
|
hoverProjDot.style("display", "none");
|
|
tooltip.style.display = "none";
|
|
};
|
|
|
|
overlay.on("pointermove", (event) => {
|
|
const [mx, my] = d3.pointer(event);
|
|
showAt(mx, my);
|
|
});
|
|
overlay.on("pointerleave", hide);
|
|
}
|
|
|
|
_monthsBetween(a, b) {
|
|
return (b - a) / (1000 * 60 * 60 * 24 * 30.44);
|
|
}
|
|
|
|
_fmtMoney(amount, currency) {
|
|
const symbol = currency === "EUR" ? "€" : currency === "GBP" ? "£" : "$";
|
|
return `${symbol}${Math.round(amount).toLocaleString()}`;
|
|
}
|
|
|
|
_fmtMoneyShort(amount, currency) {
|
|
const symbol = currency === "EUR" ? "€" : currency === "GBP" ? "£" : "$";
|
|
const abs = Math.abs(amount);
|
|
if (abs >= 1_000_000) {
|
|
return `${symbol}${(amount / 1_000_000).toFixed(1).replace(/\.0$/, "")}M`;
|
|
}
|
|
if (abs >= 1_000) {
|
|
return `${symbol}${(amount / 1_000).toFixed(1).replace(/\.0$/, "")}K`;
|
|
}
|
|
return `${symbol}${Math.round(amount).toLocaleString()}`;
|
|
}
|
|
|
|
_id() {
|
|
if (!this._cachedId) {
|
|
this._cachedId = Math.random().toString(36).slice(2, 8);
|
|
}
|
|
return this._cachedId;
|
|
}
|
|
}
|