Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
events, interactive Visx Gantt + spending-profile chart
Charts are now the primary editor for life events. The Plan-tab body
re-orders to make charts ~80% of viewport real-estate; legacy form
sections are collapsed into a drawer.
Backend:
- alembic 0004: life_event.category enum (essential / discretionary /
not_spending). Defaults to essential so existing rows keep their
full spending impact.
- Simulator gains discretionary_outflows + flex_rules params. Tracks
per-path running ATH, applies the deepest applicable cut to
discretionary outflows when portfolio drops vs ATH (PLab-style flex
spending). Cut amount stays in the portfolio (refund pattern).
- New flex_spending module with FlexRule + applicable_cut +
cuts_per_year (vectorised). Sortable rules; "deepest cut wins" so
users specify cumulative cuts at each tier.
- New /scenarios/{id}/spending-profile endpoint returning per-year
base / essential / discretionary / flex_cut / total breakdown.
- SimulateRequest gains flex_rules + life_event.category roundtrip.
- 8 new tests; 246 total pytest pass; mypy + ruff clean.
Frontend (Visx + ECharts):
- Installed @visx/{scale,shape,group,axis,event,responsive,tooltip}
for native SVG drag interactions.
- New <SpendingProfileChart> — Visx stacked-area of base/essential/
discretionary with red flex-cut overlay, hover tooltip, click-to-
scrub-year.
- New <EventGantt> — interactive Visx Gantt:
* Click empty space → popover create at that year (default
essential spending event)
* Click a bar → inline edit popover (name, kind, range, £/y,
category) with delete button
* Drag bar middle → moves the whole event (year-resolution snap)
* Drag bar edges → resizes year_start / year_end
* All gestures persist via PATCH /life-events/{id}
- New <FlexRulesEditor> — list of {from_ath_pct, cut} tiers, save-on-
change to scenario.config_json.flex_rules.
- Plan-tab redesign: NW fan dominant top with floating stat badges
(Year/Age/NW/Δ NW/Spending/Eff. tax) over the chart; spending-
profile chart middle; Gantt bottom; flex-rules editor; legacy form
sections in a collapsed <details> drawer.
- Frontend typecheck + 7 vitest tests + production build all clean.
185 lines
7 KiB
Python
185 lines
7 KiB
Python
"""Per-year spending breakdown — drives the Visx stacked-area chart on
|
||
the Plan tab.
|
||
|
||
Returns one ``SpendingProfilePoint`` per year of the scenario horizon:
|
||
|
||
base_gbp — scenario-level baseline spending (real GBP)
|
||
essential_gbp — sum of |delta| from active essential life events
|
||
discretionary_gbp — sum of |delta| from active discretionary events
|
||
not_spending_gbp — informational events that have a delta_gbp_per_year
|
||
but are tagged ``not_spending`` (rare, but possible)
|
||
flex_cut_gbp — discretionary £ trimmed by flex rules at p50 portfolio
|
||
drawdown vs running ATH (0 when no rules / no
|
||
drawdown).
|
||
total_gbp — base + essential + discretionary − flex_cut
|
||
|
||
The flex-cut estimate uses the persisted p50 portfolio path (from
|
||
``projection_yearly``) because the user's scenario.config_json may carry
|
||
``flex_rules`` they've configured but not yet re-run a recompute against.
|
||
This gives an honest preview of how the rules would shape spending; the
|
||
exact per-path cut shows up in the next live ``POST /simulate``.
|
||
"""
|
||
from __future__ import annotations
|
||
|
||
from collections.abc import Sequence
|
||
from decimal import Decimal
|
||
|
||
from fastapi import APIRouter, Depends, HTTPException
|
||
from sqlalchemy import select
|
||
from sqlalchemy.ext.asyncio import AsyncSession
|
||
|
||
from fire_planner.api.dependencies import get_session
|
||
from fire_planner.api.schemas import (
|
||
SpendingProfilePoint,
|
||
SpendingProfileResponse,
|
||
)
|
||
from fire_planner.db import LifeEvent, McRun, ProjectionYearly, Scenario
|
||
|
||
router = APIRouter(prefix="/scenarios", tags=["spending-profile"])
|
||
|
||
|
||
def _category_outflow_at(events: Sequence[LifeEvent], year_idx: int,
|
||
category: str) -> Decimal:
|
||
total = Decimal("0")
|
||
for ev in events:
|
||
if not ev.enabled or ev.category != category:
|
||
continue
|
||
if year_idx < ev.year_start:
|
||
continue
|
||
end = ev.year_end if ev.year_end is not None else ev.year_start
|
||
if year_idx > end:
|
||
continue
|
||
delta = Decimal(str(ev.delta_gbp_per_year or 0))
|
||
if delta < 0:
|
||
total += -delta
|
||
if year_idx == ev.year_start and ev.one_time_amount_gbp is not None:
|
||
ot = Decimal(str(ev.one_time_amount_gbp))
|
||
if ot < 0:
|
||
total += -ot
|
||
return total
|
||
|
||
|
||
def _category_inflow_at(events: Sequence[LifeEvent], year_idx: int,
|
||
category: str) -> Decimal:
|
||
"""Positive deltas are inflows — surface them as a negative spending
|
||
contribution so the stacked area sums correctly."""
|
||
total = Decimal("0")
|
||
for ev in events:
|
||
if not ev.enabled or ev.category != category:
|
||
continue
|
||
if year_idx < ev.year_start:
|
||
continue
|
||
end = ev.year_end if ev.year_end is not None else ev.year_start
|
||
if year_idx > end:
|
||
continue
|
||
delta = Decimal(str(ev.delta_gbp_per_year or 0))
|
||
if delta > 0:
|
||
total += delta
|
||
return total
|
||
|
||
|
||
def _flex_rules_for(scenario: Scenario) -> list[dict[str, float]]:
|
||
blob = scenario.config_json or {}
|
||
rules = blob.get("flex_rules") if isinstance(blob, dict) else None
|
||
if not isinstance(rules, list):
|
||
return []
|
||
out: list[dict[str, float]] = []
|
||
for r in rules:
|
||
if not isinstance(r, dict):
|
||
continue
|
||
try:
|
||
out.append({
|
||
"from_ath_pct": float(r.get("from_ath_pct", 0)),
|
||
"cut_discretionary_pct": float(r.get("cut_discretionary_pct", 0)),
|
||
})
|
||
except (TypeError, ValueError):
|
||
continue
|
||
return out
|
||
|
||
|
||
def _flex_cut_at_year(year: ProjectionYearly, ath_so_far_gbp: Decimal,
|
||
rules: list[dict[str, float]],
|
||
discretionary_gbp: Decimal) -> Decimal:
|
||
if not rules or discretionary_gbp <= 0 or ath_so_far_gbp <= 0:
|
||
return Decimal("0")
|
||
p50 = Decimal(str(year.p50_portfolio_gbp))
|
||
drawdown = max(Decimal("0"), Decimal("1") - p50 / ath_so_far_gbp)
|
||
best = Decimal("0")
|
||
for rule in rules:
|
||
thr = Decimal(str(rule["from_ath_pct"]))
|
||
cut = Decimal(str(rule["cut_discretionary_pct"]))
|
||
if drawdown >= thr and cut > best:
|
||
best = cut
|
||
return (discretionary_gbp * best).quantize(Decimal("0.01"))
|
||
|
||
|
||
@router.get("/{scenario_id}/spending-profile",
|
||
response_model=SpendingProfileResponse)
|
||
async def get_spending_profile(
|
||
scenario_id: int,
|
||
session: AsyncSession = Depends(get_session),
|
||
) -> SpendingProfileResponse:
|
||
scen = await session.get(Scenario, scenario_id)
|
||
if scen is None:
|
||
raise HTTPException(status_code=404, detail="Scenario not found")
|
||
|
||
events = list((await session.execute(
|
||
select(LifeEvent).where(LifeEvent.scenario_id == scenario_id))).scalars().all())
|
||
|
||
yearly_rows: list[ProjectionYearly] = []
|
||
run = (await session.execute(
|
||
select(McRun).where(McRun.scenario_id == scenario_id).order_by(
|
||
McRun.run_at.desc()).limit(1))).scalar_one_or_none()
|
||
if run is not None:
|
||
rows = (await session.execute(
|
||
select(ProjectionYearly).where(ProjectionYearly.mc_run_id == run.id).order_by(
|
||
ProjectionYearly.year_idx))).scalars().all()
|
||
yearly_rows = list(rows)
|
||
|
||
rules = _flex_rules_for(scen)
|
||
base = Decimal(str(scen.spending_gbp))
|
||
horizon = scen.horizon_years
|
||
by_year = {row.year_idx: row for row in yearly_rows}
|
||
|
||
points: list[SpendingProfilePoint] = []
|
||
ath = Decimal(str(scen.nw_seed_gbp))
|
||
for year_idx in range(horizon):
|
||
essential = _category_outflow_at(events, year_idx, "essential")
|
||
discretionary = _category_outflow_at(events, year_idx, "discretionary")
|
||
not_spending = _category_outflow_at(events, year_idx, "not_spending")
|
||
|
||
# Income-shaped life events (positive delta) reduce the net spend
|
||
# the user must sustain. We don't subtract them from any single
|
||
# bucket — they net against `base` for the chart's footprint.
|
||
ess_inflow = _category_inflow_at(events, year_idx, "essential")
|
||
disc_inflow = _category_inflow_at(events, year_idx, "discretionary")
|
||
net_base = base - ess_inflow - disc_inflow
|
||
if net_base < 0:
|
||
net_base = Decimal("0")
|
||
|
||
flex_cut = Decimal("0")
|
||
row = by_year.get(year_idx)
|
||
if row is not None:
|
||
ath = max(ath, Decimal(str(row.p50_portfolio_gbp)))
|
||
flex_cut = _flex_cut_at_year(row, ath, rules, discretionary)
|
||
|
||
total = net_base + essential + discretionary - flex_cut
|
||
if total < 0:
|
||
total = Decimal("0")
|
||
|
||
points.append(
|
||
SpendingProfilePoint(
|
||
year_idx=year_idx,
|
||
base_gbp=net_base,
|
||
essential_gbp=essential,
|
||
discretionary_gbp=discretionary,
|
||
not_spending_gbp=not_spending,
|
||
flex_cut_gbp=flex_cut,
|
||
total_gbp=total,
|
||
))
|
||
|
||
return SpendingProfileResponse(
|
||
scenario_id=scenario_id,
|
||
horizon_years=horizon,
|
||
points=points,
|
||
)
|