The folder now equals the layer, as CLAUDE.md decision 2 requires. 33 directories move by git mv (25 flat, plus upload/'s 8 subfolders split across all three layers). 28 distinct @shared/ui/* specifiers rewrite across 73 files, longest-first. Five relative imports inside upload/ become @shared/ui aliases because their sibling now lives in a different layer; two stay relative because both ends stay in the same layer. Four .mdx docs get their seven broken story imports fixed; atomic-design.mdx's page-shell import is untouched, because layout/ does not move. No component, template, story title, or layer-tag comment changes. That is RD-28's job. Verified against the ticket's acceptance commands: the 26 flat directories become exactly 3 layer folders with the counts the ticket names, only three @shared/ui/* prefixes remain (atoms, molecules, organisms), the .mdx import count holds at 7, and the relative-import count inside ui/ drops from 7 to 2 as decision 4 requires. The @shared/ui/ occurrence count moves from 200 to 205: decision 4 mandates turning 5 of those 7 relative imports into @shared/ui/* aliases, which decision 3's "200 before, 200 after" check does not account for. The 5-occurrence gap is exactly the 5 conversions decision 4 names, not a lost or duplicated specifier. npm run ci --full passes: lint, typecheck, dep:check, format, tokens, seam, both apps' + both libraries' tests, both apps' localized build, audit, backend tests, all three generated-artifact drift checks, and both Storybook instances' build + axe-core a11y suite (67+45 suites, 198+112 tests, all green). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
import { Component, computed, input, output } from '@angular/core';
|
|
import { AlertComponent } from '@shared/ui/atoms/alert/alert.component';
|
|
import { Diagnostic } from '@brief/domain/placeholders';
|
|
|
|
/** Molecule: lists all letter diagnostics grouped by severity. Errors block
|
|
save/send; warnings (deprecated, unresolved-at-send) are surfaced but allowed.
|
|
Fed by a `computed()` over the letter content — never stored. */
|
|
@Component({
|
|
selector: 'app-diagnostics-panel',
|
|
imports: [AlertComponent],
|
|
styles: [
|
|
`
|
|
:host {
|
|
display: block;
|
|
}
|
|
ul {
|
|
margin: 0;
|
|
padding-inline-start: 1.1rem;
|
|
display: grid;
|
|
gap: 0.15rem;
|
|
}
|
|
button {
|
|
background: none;
|
|
border: 0;
|
|
padding: 0;
|
|
color: var(--rhc-color-foreground-link);
|
|
cursor: pointer;
|
|
text-align: start;
|
|
text-decoration: underline;
|
|
}
|
|
`,
|
|
],
|
|
template: `
|
|
@if (errors().length) {
|
|
<app-alert type="error">
|
|
<strong>{{ errorsTitle() }}</strong>
|
|
<ul>
|
|
@for (d of errors(); track $index) {
|
|
<li>
|
|
<button type="button" (click)="locate.emit(d)">{{ d.message }}</button>
|
|
</li>
|
|
}
|
|
</ul>
|
|
</app-alert>
|
|
}
|
|
@if (warnings().length) {
|
|
<app-alert type="warning">
|
|
<strong>{{ warningsTitle() }}</strong>
|
|
<ul>
|
|
@for (d of warnings(); track $index) {
|
|
<li>
|
|
<button type="button" (click)="locate.emit(d)">{{ d.message }}</button>
|
|
</li>
|
|
}
|
|
</ul>
|
|
</app-alert>
|
|
}
|
|
@if (!errors().length && !warnings().length) {
|
|
<app-alert type="ok">{{ cleanText() }}</app-alert>
|
|
}
|
|
`,
|
|
})
|
|
export class DiagnosticsPanelComponent {
|
|
diagnostics = input<readonly Diagnostic[]>([]);
|
|
locate = output<Diagnostic>();
|
|
|
|
errorsTitle = input($localize`:@@brief.diag.errors:Op te lossen voor indienen/versturen:`);
|
|
warningsTitle = input($localize`:@@brief.diag.warnings:Aandachtspunten:`);
|
|
cleanText = input($localize`:@@brief.diag.clean:Geen problemen gevonden in de velden.`);
|
|
|
|
protected errors = computed(() => this.diagnostics().filter((d) => d.severity === 'error'));
|
|
protected warnings = computed(() => this.diagnostics().filter((d) => d.severity === 'warning'));
|
|
}
|