Add registratie wizard, BFF dashboard-view, contracts/value-objects, and architecture docs

Checkpoint of in-progress work: the registration wizard (address prefill,
DUO diploma lookup, policy questions), decision-DTO contracts, parse-don't-
validate value objects, infrastructure adapters, plus CLAUDE.md and the
architecture/ADR docs.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-26 17:23:52 +02:00
parent 8a8a2f0f29
commit 64385999eb
58 changed files with 7271 additions and 556 deletions

View File

@@ -4,11 +4,11 @@ import { AlertComponent } from '@shared/ui/alert/alert.component';
import { ASYNC } from '@shared/ui/async/async.component';
import { map } from '@shared/application/remote-data';
import { BigProfileStore } from '@registratie/application/big-profile.store';
import { isHerregistratieEligible } from '@registratie/domain/registration.policy';
import { HerregistratieWizardComponent } from '@herregistratie/ui/herregistratie-wizard/herregistratie-wizard.component';
/** A whole new page built from existing building blocks. Eligibility is a pure
domain rule (registration.policy) read from the shared profile state. */
/** A whole new page built from existing building blocks. Eligibility is a
SERVER-computed decision read from the aggregated view — the frontend renders
it, it does not recompute the rule. */
@Component({
selector: 'app-herregistratie-page',
imports: [PageShellComponent, AlertComponent, ...ASYNC, HerregistratieWizardComponent],
@@ -35,8 +35,9 @@ import { HerregistratieWizardComponent } from '@herregistratie/ui/herregistratie
})
export class HerregistratiePage {
private store = inject(BigProfileStore);
// Derive a boolean RemoteData from the combined profile via map (pure).
// The eligibility decision comes from the server (decisions block), not a
// client-side rule. The UI just reads the boolean.
protected eligibility = computed(() =>
map(this.store.profile(), (p) => isHerregistratieEligible(p.registration, new Date())),
map(this.store.decisions(), (d) => d.eligibleForHerregistratie),
);
}