All files / react-base/src/components/ui button.stories.tsx

0% Statements 0/201
100% Branches 1/1
100% Functions 1/1
0% Lines 0/201

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
import type { Meta, StoryObj } from "@storybook/react";
import { Plus, Search, Trash2 } from "lucide-react";
import { Button } from "./button";
 
const meta = {
  title: "Design System/Button",
  component: Button,
  tags: ["autodocs"],
  parameters: {
    docs: {
      description: {
        component:
          'Action primitive with variants and sizes. Use `size="icon"` for icon-only buttons and always set `aria-label` for accessibility.',
      },
    },
  },
  argTypes: {
    variant: {
      control: "select",
      options: ["default", "brand", "destructive", "outline"],
    },
    size: {
      control: "select",
      options: ["default", "sm", "icon"],
    },
    disabled: { control: "boolean" },
  },
} satisfies Meta<typeof Button>;
 
export default meta;
type Story = StoryObj<typeof meta>;
 
export const Primary: Story = {
  args: {
    children: "Primary",
    variant: "default",
  },
  parameters: {
    docs: {
      source: {
        code: `<Button>Primary</Button>`,
      },
    },
  },
};
 
export const Brand: Story = {
  args: {
    children: "Brand",
    variant: "brand",
  },
  parameters: {
    docs: {
      source: {
        code: `<Button variant="brand">Brand</Button>`,
      },
    },
  },
};
 
export const Outline: Story = {
  args: {
    children: "Outline",
    variant: "outline",
  },
  parameters: {
    docs: {
      source: {
        code: `<Button variant="outline">Outline</Button>`,
      },
    },
  },
};
 
export const Destructive: Story = {
  args: {
    children: "Delete",
    variant: "destructive",
  },
  parameters: {
    docs: {
      source: {
        code: `<Button variant="destructive">Delete</Button>`,
      },
    },
  },
};
 
export const Small: Story = {
  args: {
    children: "Small",
    size: "sm",
  },
  parameters: {
    docs: {
      source: {
        code: `<Button size="sm">Small</Button>`,
      },
    },
  },
};
 
export const Disabled: Story = {
  args: {
    children: "Disabled",
    disabled: true,
  },
  parameters: {
    docs: {
      source: {
        code: `<Button disabled>Disabled</Button>`,
      },
    },
  },
};
 
export const WithIcon: Story = {
  parameters: {
    docs: {
      description: {
        story: "Text button with a leading icon. Icons use `h-4 w-4` inside default/sm sizes.",
      },
      source: {
        code: `import { Plus } from "lucide-react";
import { Button } from "@/components/ui/button";
 
<Button>
  <Plus className="h-4 w-4" />
  Add user
</Button>`,
      },
    },
  },
  render: () => (
    <Button>
      <Plus className="h-4 w-4" />
      Add user
    </Button>
  ),
};
 
export const IconButton: Story = {
  parameters: {
    docs: {
      description: {
        story: "Square icon-only button. Use `size=\"icon\"` and an `aria-label`.",
      },
      source: {
        code: `import { Search } from "lucide-react";
import { Button } from "@/components/ui/button";
 
<Button variant="outline" size="icon" aria-label="Search">
  <Search className="h-4 w-4" />
</Button>`,
      },
    },
  },
  render: () => (
    <Button variant="outline" size="icon" aria-label="Search">
      <Search className="h-4 w-4" />
    </Button>
  ),
};
 
export const IconButtonPrimary: Story = {
  parameters: {
    docs: {
      source: {
        code: `import { Plus } from "lucide-react";
import { Button } from "@/components/ui/button";
 
<Button size="icon" aria-label="Add item">
  <Plus className="h-4 w-4" />
</Button>`,
      },
    },
  },
  render: () => (
    <Button size="icon" aria-label="Add item">
      <Plus className="h-4 w-4" />
    </Button>
  ),
};
 
export const IconButtonDestructive: Story = {
  parameters: {
    docs: {
      source: {
        code: `import { Trash2 } from "lucide-react";
import { Button } from "@/components/ui/button";
 
<Button variant="destructive" size="icon" aria-label="Delete item">
  <Trash2 className="h-4 w-4" />
</Button>`,
      },
    },
  },
  render: () => (
    <Button variant="destructive" size="icon" aria-label="Delete item">
      <Trash2 className="h-4 w-4" />
    </Button>
  ),
};
 
export const IconButtonGroup: Story = {
  parameters: {
    docs: {
      description: {
        story: "Common toolbar pattern — a row of icon buttons with labels for screen readers.",
      },
      source: {
        code: `import { Plus, Search, Trash2 } from "lucide-react";
import { Button } from "@/components/ui/button";
 
<div className="flex items-center gap-2">
  <Button variant="outline" size="icon" aria-label="Search">
    <Search className="h-4 w-4" />
  </Button>
  <Button size="icon" aria-label="Add">
    <Plus className="h-4 w-4" />
  </Button>
  <Button variant="destructive" size="icon" aria-label="Delete">
    <Trash2 className="h-4 w-4" />
  </Button>
</div>`,
      },
    },
  },
  render: () => (
    <div className="flex items-center gap-2">
      <Button variant="outline" size="icon" aria-label="Search">
        <Search className="h-4 w-4" />
      </Button>
      <Button size="icon" aria-label="Add">
        <Plus className="h-4 w-4" />
      </Button>
      <Button variant="destructive" size="icon" aria-label="Delete">
        <Trash2 className="h-4 w-4" />
      </Button>
    </div>
  ),
};
 
export const AllVariants: Story = {
  parameters: {
    docs: {
      source: {
        code: `<div className="flex flex-wrap items-center gap-3">
  <Button>Primary</Button>
  <Button variant="brand">Brand</Button>
  <Button variant="outline">Outline</Button>
  <Button variant="destructive">Destructive</Button>
  <Button size="sm">Small</Button>
</div>`,
      },
    },
  },
  render: () => (
    <div className="flex flex-wrap items-center gap-3">
      <Button>Primary</Button>
      <Button variant="brand">Brand</Button>
      <Button variant="outline">Outline</Button>
      <Button variant="destructive">Destructive</Button>
      <Button size="sm">Small</Button>
    </div>
  ),
};