feat: adds switch component stories (#6462)

Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com>
This commit is contained in:
Piyush Gupta
2025-08-26 11:45:03 +05:30
committed by GitHub
parent 8a5e9f38d7
commit a8c8e6f83f

View File

@@ -0,0 +1,132 @@
import { Meta, StoryObj } from "@storybook/react-vite";
import { Label } from "../label";
import { Switch } from "./index";
const meta: Meta<typeof Switch> = {
title: "UI/Switch",
component: Switch,
tags: ["autodocs"],
parameters: {
layout: "centered",
controls: { sort: "alpha", exclude: [] },
docs: {
description: {
component:
"The **Switch** component provides a toggle control for binary states. It's built on Radix UI and supports all standard switch interactions with customizable styling.",
},
},
},
argTypes: {
checked: {
control: "boolean",
description: "Controlled checked state of the switch",
table: {
category: "Behavior",
type: { summary: "boolean" },
defaultValue: { summary: "false" },
},
order: 1,
},
disabled: {
control: "boolean",
description: "Disables the switch interaction",
table: {
category: "Behavior",
type: { summary: "boolean" },
defaultValue: { summary: "false" },
},
order: 3,
},
className: {
control: "text",
description: "Additional CSS classes",
table: {
category: "Appearance",
type: { summary: "string" },
},
order: 1,
},
},
};
export default meta;
type Story = StoryObj<typeof Switch>;
export const Default: Story = {
render: (args) => <Switch {...args} />,
parameters: {
docs: {
description: {
story: "Default switch.",
},
},
},
};
export const DefaultWithLabel: Story = {
args: {
id: "switch-with-label",
},
render: (args) => (
<div className="flex items-center space-x-2">
<Switch {...args} />
<Label htmlFor="switch-with-label" className="cursor-pointer">
Switch Text
</Label>
</div>
),
parameters: {
docs: {
description: {
story:
"Switch with label accompanying it. The label is clickable and properly associated with the switch by the id attribute.",
},
},
},
};
export const Disabled: Story = {
args: {
id: "disabled-switch",
disabled: true,
},
render: (args) => (
<div className="flex items-center space-x-2">
<Switch {...args} />
<Label htmlFor="disabled-switch" className="cursor-pointer">
Switch Text
</Label>
</div>
),
parameters: {
docs: {
description: {
story: "Switch in disabled state. Both the switch and label appear dimmed and are non-interactive.",
},
},
},
};
export const RightAligned: Story = {
args: {
id: "right-aligned",
},
render: (args) => (
<div className="flex w-80 justify-between rounded-lg border p-4">
<div className="flex flex-col">
<Label htmlFor="right-aligned" className="cursor-pointer font-medium">
Switch Text
</Label>
<p className="text-sm text-slate-500">This is a switch description.</p>
</div>
<Switch {...args} />
</div>
),
parameters: {
docs: {
description: {
story: "Right-aligned switch with label and description, ideal for settings with additional context.",
},
},
},
};