mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-21 18:18:48 -06:00
feat: adds switch component stories (#6462)
Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com>
This commit is contained in:
132
apps/web/modules/ui/components/switch/stories.tsx
Normal file
132
apps/web/modules/ui/components/switch/stories.tsx
Normal 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.",
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user