Files
plane/packages/propel/src/card/card.stories.tsx
chuan bba4bb40c8
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
feat: init
2025-11-11 01:56:44 +08:00

212 lines
5.9 KiB
TypeScript

import type { Meta, StoryObj } from "@storybook/react-vite";
import { Card, ECardVariant, ECardSpacing, ECardDirection } from "./card";
const meta = {
title: "Components/Card",
component: Card,
parameters: {
layout: "centered",
},
tags: ["autodocs"],
args: {
children: (
<>
<h3 className="text-lg font-semibold">Card Title</h3>
<p className="text-sm text-gray-600">This is a default card with shadow and large spacing.</p>
</>
),
},
} satisfies Meta<typeof Card>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {};
export const WithShadow: Story = {
args: {
variant: ECardVariant.WITH_SHADOW,
children: (
<>
<h3 className="text-lg font-semibold">Card with Shadow</h3>
<p className="text-sm text-gray-600">Hover over this card to see the shadow effect.</p>
</>
),
},
};
export const WithoutShadow: Story = {
args: {
variant: ECardVariant.WITHOUT_SHADOW,
children: (
<>
<h3 className="text-lg font-semibold">Card without Shadow</h3>
<p className="text-sm text-gray-600">This card has no shadow effect on hover.</p>
</>
),
},
};
export const SmallSpacing: Story = {
args: {
spacing: ECardSpacing.SM,
children: (
<>
<h3 className="text-lg font-semibold">Small Spacing</h3>
<p className="text-sm text-gray-600">This card uses small spacing (p-4).</p>
</>
),
},
};
export const LargeSpacing: Story = {
args: {
spacing: ECardSpacing.LG,
children: (
<>
<h3 className="text-lg font-semibold">Large Spacing</h3>
<p className="text-sm text-gray-600">This card uses large spacing (p-6).</p>
</>
),
},
};
export const ColumnDirection: Story = {
args: {
direction: ECardDirection.COLUMN,
children: (
<>
<h3 className="text-lg font-semibold">Column Direction</h3>
<p className="text-sm text-gray-600">Content is arranged vertically.</p>
<button className="rounded bg-blue-500 px-4 py-2 text-white">Action</button>
</>
),
},
};
export const RowDirection: Story = {
args: {
direction: ECardDirection.ROW,
children: (
<>
<div className="flex-shrink-0">
<div className="h-12 w-12 rounded bg-blue-500" />
</div>
<div className="flex-1">
<h3 className="text-lg font-semibold">Row Direction</h3>
<p className="text-sm text-gray-600">Content is arranged horizontally.</p>
</div>
</>
),
},
};
export const ProductCard: Story = {
args: {
variant: ECardVariant.WITH_SHADOW,
spacing: ECardSpacing.LG,
direction: ECardDirection.COLUMN,
children: (
<>
<div className="h-48 w-full rounded bg-gray-200" />
<h3 className="text-xl font-bold">Product Name</h3>
<p className="text-sm text-gray-600">A brief description of the product goes here.</p>
<div className="flex items-center justify-between">
<span className="text-lg font-semibold">$99.99</span>
<button className="rounded bg-blue-500 px-4 py-2 text-white hover:bg-blue-600">Add to Cart</button>
</div>
</>
),
},
};
export const UserCard: Story = {
args: {
variant: ECardVariant.WITH_SHADOW,
spacing: ECardSpacing.LG,
direction: ECardDirection.ROW,
children: (
<>
<div className="h-16 w-16 flex-shrink-0 rounded-full bg-blue-500" />
<div className="flex-1">
<h3 className="text-lg font-semibold">John Doe</h3>
<p className="text-sm text-gray-600">Software Engineer</p>
<p className="text-xs text-gray-500">john.doe@example.com</p>
</div>
</>
),
},
};
export const NotificationCard: Story = {
args: {
variant: ECardVariant.WITHOUT_SHADOW,
spacing: ECardSpacing.SM,
direction: ECardDirection.COLUMN,
children: (
<>
<div className="flex items-start justify-between">
<h4 className="font-semibold">New Message</h4>
<span className="text-xs text-gray-500">2m ago</span>
</div>
<p className="text-sm text-gray-600">You have received a new message from Alice.</p>
</>
),
},
};
export const AllVariants: Story = {
render() {
return (
<div className="space-y-4">
<Card variant={ECardVariant.WITH_SHADOW}>
<h3 className="font-semibold">With Shadow</h3>
<p className="text-sm text-gray-600">Hover to see the shadow effect</p>
</Card>
<Card variant={ECardVariant.WITHOUT_SHADOW}>
<h3 className="font-semibold">Without Shadow</h3>
<p className="text-sm text-gray-600">No shadow on hover</p>
</Card>
</div>
);
},
};
export const AllSpacings: Story = {
render() {
return (
<div className="space-y-4">
<Card spacing={ECardSpacing.SM}>
<h3 className="font-semibold">Small Spacing (p-4)</h3>
<p className="text-sm text-gray-600">Compact padding</p>
</Card>
<Card spacing={ECardSpacing.LG}>
<h3 className="font-semibold">Large Spacing (p-6)</h3>
<p className="text-sm text-gray-600">More generous padding</p>
</Card>
</div>
);
},
};
export const AllDirections: Story = {
render() {
return (
<div className="space-y-4">
<Card direction={ECardDirection.COLUMN}>
<h3 className="font-semibold">Column Direction</h3>
<p className="text-sm text-gray-600">Vertical layout</p>
<button className="w-fit rounded bg-blue-500 px-4 py-2 text-white">Button</button>
</Card>
<Card direction={ECardDirection.ROW}>
<div className="h-12 w-12 flex-shrink-0 rounded bg-blue-500" />
<div>
<h3 className="font-semibold">Row Direction</h3>
<p className="text-sm text-gray-600">Horizontal layout</p>
</div>
</Card>
</div>
);
},
};