veza/apps/web/src/components/ui/Tooltip.stories.tsx
senke de12f5036c fix(web): resolve all 568 TypeScript errors — tsc --noEmit now passes with zero errors
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>
2026-02-13 00:32:08 +01:00

76 lines
2.1 KiB
TypeScript

import type { Meta, StoryObj } from '@storybook/react';
import { Tooltip } from './tooltip';
import { Button } from './button';
import { Plus } from 'lucide-react';
const meta: Meta = {
title: 'UI/Tooltip',
component: Tooltip,
tags: ['autodocs'],
argTypes: {
position: {
control: 'select',
options: ['top', 'bottom', 'left', 'right'],
},
trigger: {
control: 'select',
options: ['hover', 'click', 'focus'],
},
delay: { control: 'number' },
showArrow: { control: 'boolean' },
disabled: { control: 'boolean' },
},
args: {
content: 'Add to library',
position: 'top',
delay: 200,
}
};
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
render: (args) => (
<div className="p-12 flex justify-center">
<Tooltip content="Add to library" {...args}>
<Button variant="outline" size="icon">
<Plus className="h-4 w-4" />
</Button>
</Tooltip>
</div>
),
};
export const Positions: Story = {
render: () => (
<div className="flex gap-8 justify-center items-center min-h-layout-story">
<Tooltip content="Left" position="left">
<Button variant="outline">Left</Button>
</Tooltip>
<Tooltip content="Top" position="top">
<Button variant="outline">Top</Button>
</Tooltip>
<Tooltip content="Bottom" position="bottom">
<Button variant="outline">Bottom</Button>
</Tooltip>
<Tooltip content="Right" position="right">
<Button variant="outline">Right</Button>
</Tooltip>
</div>
),
};
export const ManualTrigger: Story = {
args: {
trigger: 'click',
content: 'Clicked!',
},
render: (args) => (
<div className="p-12 flex justify-center">
<Tooltip content="Clicked!" {...args}>
<Button>Click me</Button>
</Tooltip>
</div>
),
};