CI / changes (pull_request) Successful in 17s
CI / lint (pull_request) Failing after 56s
CI / frontend (pull_request) Successful in 2m36s
CI / storybook-a11y (pull_request) Failing after 3m19s
CI / backend (pull_request) Failing after 1m55s
CI / api-client-drift (pull_request) Canceled after 0s
CI / e2e (pull_request) Canceled after 40s
CI / semgrep (pull_request) Canceled after 24s
Adds POST /beoordeling/{id}/besluit: a Besluit enum (Goedkeuren/Afwijzen/
MeerInfoOpvragen) backed by new Aanvraag.BesluitStatus/BesluitToelichting
columns, gated by the same BeoordelingRules.CanDecide the read side's
canBesluiten flag already uses (409 on an illegal transition, 400 on a
missing required toelichting). Mappers.ToStatusDto gains the "a recorded
decision wins" branch. FE: besluit.machine.ts + besluit-form organism
(same form idiom as change-request-form), wired into the beoordeling page
behind the server's canBesluiten flag.
Completes WP-65 (65a + 65b) — verified end-to-end against a running
backend (werkvoorraad -> beoordeling -> besluit -> status reflected back).
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
17 lines
765 B
TypeScript
17 lines
765 B
TypeScript
import { inject } from '@angular/core';
|
|
import { Result } from '@shared/kernel/fp';
|
|
import { Valid } from '@behandeling/domain/besluit.machine';
|
|
import { runSubmit, SUBMIT_FAILED } from '@shared/application/submit';
|
|
import { BesluitAdapter } from '@behandeling/infrastructure/besluit.adapter';
|
|
|
|
/**
|
|
* Command factory: binds the besluit adapter in an injection context and returns the
|
|
* submit function the decision form calls. Same field-initializer shape as
|
|
* `createStore` — the UI holds an application command, never the network client.
|
|
*/
|
|
export function createSubmitBesluit() {
|
|
const adapter = inject(BesluitAdapter);
|
|
return (id: string, data: Valid): Promise<Result<string, void>> =>
|
|
runSubmit(() => adapter.besluit(id, data), SUBMIT_FAILED);
|
|
}
|