import type { Meta, StoryObj } from '@storybook/react-vite' import { ApplicationHeader } from './ApplicationHeader' const meta = { title: 'Components/ApplicationHeader', component: ApplicationHeader, tags: ['autodocs'], parameters: { layout: 'fullscreen' }, } satisfies Meta export default meta type Story = StoryObj export const Default: Story = { args: { name: 'Sailwind Component Library', userInitials: 'PL', objectType: 'app', }, } export const WithDesignerControls: Story = { args: { name: 'My Interface', userInitials: 'JD', objectType: 'interface', showDesignerControls: true, previewEnabled: false, showStoriesView: false, onPreviewToggle: (enabled: boolean) => console.log('Preview:', enabled), onStoryToggle: () => console.log('Stories toggled'), onBackClick: () => console.log('Back clicked'), }, } export const RecordType: Story = { args: { name: 'Customer Records', userInitials: 'AB', objectType: 'record-type', }, } export const ExpressionRule: Story = { args: { name: 'calculateTotal', userInitials: 'CD', objectType: 'expression-rule', }, } export const PreviewEnabled: Story = { args: { name: 'My Interface', userInitials: 'JD', objectType: 'interface', showDesignerControls: true, previewEnabled: true, showStoriesView: false, onPreviewToggle: (enabled: boolean) => console.log('Preview:', enabled), onStoryToggle: () => console.log('Stories toggled'), onBackClick: () => console.log('Back clicked'), }, } export const StoriesViewActive: Story = { args: { name: 'My Interface', userInitials: 'JD', objectType: 'interface', showDesignerControls: true, previewEnabled: false, showStoriesView: true, onPreviewToggle: (enabled: boolean) => console.log('Preview:', enabled), onStoryToggle: () => console.log('Stories toggled'), onBackClick: () => console.log('Back clicked'), }, } export const AdminConsole: Story = { args: { name: 'Appian Administration Console', userInitials: 'AD', iconSrc: 'images/icon-cog.svg', additionalButtons: [ { label: 'Export', style: 'OUTLINE', size: 'SMALL', color: 'ACCENT', onClick: () => console.log('Export clicked'), }, { label: 'Import', style: 'OUTLINE', size: 'SMALL', color: 'ACCENT', onClick: () => console.log('Import clicked'), }, ], }, } export const DarkBackground: Story = { args: { name: 'My Application', userInitials: 'PL', objectType: 'app', backgroundColor: '#1e3a5f', }, } export const BrandedBackground: Story = { args: { name: 'Customer Portal', userInitials: 'JD', objectType: 'app', backgroundColor: '#7c3aed', }, } export const LightCustomBackground: Story = { args: { name: 'Analytics Dashboard', userInitials: 'AB', objectType: 'interface', backgroundColor: '#f0fdf4', }, } export const PaletteTokenBackground: Story = { args: { name: 'HR Portal', userInitials: 'KM', objectType: 'app', backgroundColor: 'TEAL_700', }, }