Major categories fixed: - TS6133 (188): Remove unused imports (React, icons, types) and variables - TS2322 (222): Fix type mismatches in stories (satisfies Meta -> const meta: Meta), add nullish coalescing for optional values, fix component prop types - TS2345 (43): Fix argument type mismatches with proper null checks and type narrowing - TS2741 (21): Add missing required properties to mock/story data - TS2339 (19): Fix property access on incorrect types, add type guards - TS2353 (13): Remove extra properties from object literals or extend interfaces - TS2352 (11): Fix type conversion chains - TS2307 (9): Fix import paths and module references - Other (42): Fix implicit any, possibly undefined, export declarations Vite build and tsc --noEmit both pass cleanly. Co-authored-by: Cursor <cursoragent@cursor.com>
60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
|
|
import {
|
|
OptimizedImage,
|
|
OptimizedImageSkeleton,
|
|
} from '@/components/ui/optimized-image';
|
|
|
|
const meta: Meta = {
|
|
title: 'UI/OptimizedImage',
|
|
component: OptimizedImage,
|
|
tags: ['autodocs'],
|
|
argTypes: {
|
|
width: { control: 'number' },
|
|
height: { control: 'number' },
|
|
priority: { control: 'boolean' },
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = {
|
|
args: {
|
|
src: 'https://images.unsplash.com/photo-1707343843437-caacff5cfa74',
|
|
alt: 'Example Image',
|
|
width: 600,
|
|
height: 400,
|
|
className: 'rounded-lg object-cover',
|
|
},
|
|
};
|
|
|
|
export const WithPlaceholder: Story = {
|
|
args: {
|
|
src: 'https://images.unsplash.com/photo-1682687220063-4742bd7fd538',
|
|
alt: 'Loading Image',
|
|
width: 600,
|
|
height: 400,
|
|
className: 'rounded-lg object-cover',
|
|
placeholder: <span className="text-foreground">Loading...</span>,
|
|
},
|
|
};
|
|
|
|
export const ErrorState: Story = {
|
|
args: {
|
|
src: 'https://invalid-url.com/image.jpg',
|
|
alt: 'Broken Image',
|
|
width: 600,
|
|
height: 400,
|
|
className: 'rounded-lg bg-red-100',
|
|
},
|
|
};
|
|
|
|
export const Loading: Story = {
|
|
render: () => (
|
|
<OptimizedImageSkeleton
|
|
width={600}
|
|
height={400}
|
|
className="min-h-layout-story"
|
|
/>
|
|
),
|
|
};
|