import { Meta, StoryObj } from '@storybook/react'; import { Icon } from '@wordpress/components'; import { envelope, receipt, backup } from '@wordpress/icons'; import { SummaryButtonBadgeProps } from './types'; import SummaryButton from './index'; // Define field options for the controls. const badgeOptions: Record< string, SummaryButtonBadgeProps[] > = { 'Three Badges': [ { text: 'Active', intent: 'success' }, { text: 'Auto-renew on', intent: 'info' }, { text: 'Primary', intent: 'default' }, ], 'Two Badges': [ { text: 'Needs attention', intent: 'warning' }, { text: 'Auto-renew off', intent: 'error' }, ], 'One Badge': [ { text: 'Coming soon', intent: 'info' } ], 'No Badges': [], }; const meta: Meta< typeof SummaryButton > = { title: 'SummaryButton', component: SummaryButton, argTypes: { decoration: { control: 'select', options: [ 'envelope', 'receipt', 'backup', 'image' ], mapping: { envelope: , receipt: , backup: , image: , }, }, badges: { control: 'select', options: Object.keys( badgeOptions ), mapping: badgeOptions, description: 'Pre-defined badge sets to display', }, }, parameters: { actions: { argTypesRegex: '^on.*' }, }, }; export default meta; type Story = StoryObj< typeof SummaryButton >; export const Default: Story = { args: { title: 'Domain Settings', description: 'Manage your domain settings, DNS, email, and more.', badges: badgeOptions[ 'Two Badges' ], }, }; export const LowDensity: Story = { args: { title: 'Domain Settings', description: 'Manage your domain settings, DNS, email, and more.', strapline: 'Some settings require attention', density: 'low', decoration: , badges: badgeOptions[ 'Three Badges' ], }, }; export const MediumDensity: Story = { args: { title: 'Email Configuration', description: 'Setup email forwarding for your domain.', density: 'medium', decoration: , badges: badgeOptions[ 'Two Badges' ], }, };