Retitle all 49 stories into a sidebar that makes the DDD seam visible: Foundations (curriculum) -> Design System (Atoms/Molecules/Organisms/ Templates/Devtools, everything in shared/ui + shared/layout) -> Domein (Registratie/Herregistratie/Auth/Brief, everything in a context's ui/). Pin the order via storySort. Add layers.mdx explaining the split and linking the enforcing eslint rules; document the story-title convention in CLAUDE.md. Fix a stale "status banner" reference in atomic-design.mdx left over from WP-13's upload-status-banner deletion. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
32 lines
1.3 KiB
TypeScript
32 lines
1.3 KiB
TypeScript
import type { Meta, StoryObj } from '@storybook/angular';
|
|
import { applicationConfig, moduleMetadata } from '@storybook/angular';
|
|
import { provideRouter } from '@angular/router';
|
|
import { ChoiceListComponent } from './choice-list.component';
|
|
import { ChoiceLinkComponent } from '@shared/ui/choice-link/choice-link.component';
|
|
|
|
const meta: Meta<ChoiceListComponent> = {
|
|
title: 'Design System/Molecules/Choice List',
|
|
component: ChoiceListComponent,
|
|
decorators: [
|
|
applicationConfig({ providers: [provideRouter([])] }),
|
|
moduleMetadata({ imports: [ChoiceLinkComponent] }),
|
|
],
|
|
render: (args) => ({
|
|
props: args,
|
|
template: `
|
|
<app-choice-list [heading]="heading">
|
|
<app-choice-link heading="Ik heb een Nederlands diploma" instructions="U kunt direct uw registratie aanvragen." to="/registreren" />
|
|
<app-choice-link heading="Ik heb een buitenlands diploma" instructions="Uw diploma moet eerst officieel erkend worden." clickable="true" />
|
|
</app-choice-list>`,
|
|
}),
|
|
parameters: {
|
|
// Structural: app-choice-link's host sits between the <ul> and its <li> —
|
|
// fixed by the WP-11 markup rework. See docs/backlog/WP-11-markup-fidelity.md.
|
|
a11y: { disable: true },
|
|
},
|
|
};
|
|
export default meta;
|
|
type Story = StoryObj<ChoiceListComponent>;
|
|
|
|
export const Default: Story = { args: { heading: 'Maak een keuze' } };
|