chore: add more stories (#27403)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
72
web/app/components/base/linked-apps-panel/index.stories.tsx
Normal file
72
web/app/components/base/linked-apps-panel/index.stories.tsx
Normal file
@@ -0,0 +1,72 @@
|
||||
import type { Meta, StoryObj } from '@storybook/nextjs'
|
||||
import LinkedAppsPanel from '.'
|
||||
import type { RelatedApp } from '@/models/datasets'
|
||||
|
||||
const mockRelatedApps: RelatedApp[] = [
|
||||
{
|
||||
id: 'app-cx',
|
||||
name: 'Customer Support Assistant',
|
||||
mode: 'chat',
|
||||
icon_type: 'emoji',
|
||||
icon: '\u{1F4AC}',
|
||||
icon_background: '#EEF2FF',
|
||||
icon_url: '',
|
||||
},
|
||||
{
|
||||
id: 'app-ops',
|
||||
name: 'Ops Workflow Orchestrator',
|
||||
mode: 'workflow',
|
||||
icon_type: 'emoji',
|
||||
icon: '\u{1F6E0}\u{FE0F}',
|
||||
icon_background: '#ECFDF3',
|
||||
icon_url: '',
|
||||
},
|
||||
{
|
||||
id: 'app-research',
|
||||
name: 'Research Synthesizer',
|
||||
mode: 'advanced-chat',
|
||||
icon_type: 'emoji',
|
||||
icon: '\u{1F9E0}',
|
||||
icon_background: '#FDF2FA',
|
||||
icon_url: '',
|
||||
},
|
||||
]
|
||||
|
||||
const meta = {
|
||||
title: 'Base/Feedback/LinkedAppsPanel',
|
||||
component: LinkedAppsPanel,
|
||||
parameters: {
|
||||
layout: 'centered',
|
||||
docs: {
|
||||
description: {
|
||||
component: 'Shows a curated list of related applications, pairing each app icon with quick navigation links.',
|
||||
},
|
||||
},
|
||||
},
|
||||
args: {
|
||||
relatedApps: mockRelatedApps,
|
||||
isMobile: false,
|
||||
},
|
||||
argTypes: {
|
||||
isMobile: {
|
||||
control: 'boolean',
|
||||
},
|
||||
},
|
||||
tags: ['autodocs'],
|
||||
} satisfies Meta<typeof LinkedAppsPanel>
|
||||
|
||||
export default meta
|
||||
type Story = StoryObj<typeof meta>
|
||||
|
||||
export const Desktop: Story = {}
|
||||
|
||||
export const Mobile: Story = {
|
||||
args: {
|
||||
isMobile: true,
|
||||
},
|
||||
parameters: {
|
||||
viewport: {
|
||||
defaultViewport: 'mobile2',
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user