-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
Switch
component & story (#1512)
* feat: initialize shadcn/ui switch component * cleanup: remove `* as React` imports * feat: add proper styling & storybook
- Loading branch information
1 parent
d413bc7
commit 33ab545
Showing
8 changed files
with
138 additions
and
48 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { Meta, StoryObj } from "@storybook/react" | ||
import { Label } from "./Label" | ||
import { Switch, SwitchProps } from "./Switch" | ||
|
||
const SwitchExample = (props: SwitchProps) => ( | ||
<div className="flex items-center space-x-2"> | ||
<Switch id="demo-switch" {...props} /> | ||
<Label htmlFor="demo-switch">Demo switch</Label> | ||
</div> | ||
) | ||
|
||
const meta: Meta<typeof SwitchExample> = { | ||
title: "Design system/Switch", | ||
component: SwitchExample, | ||
} | ||
|
||
export default meta | ||
|
||
type Story = StoryObj<typeof SwitchExample> | ||
|
||
export const Default: Story = { | ||
args: { | ||
disabled: false, | ||
}, | ||
argTypes: { | ||
disabled: { | ||
type: "boolean", | ||
control: "boolean", | ||
}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
"use client" | ||
|
||
import { cn } from "@/lib/utils" | ||
import * as SwitchPrimitives from "@radix-ui/react-switch" | ||
import { ComponentPropsWithoutRef, ElementRef, forwardRef } from "react" | ||
|
||
export interface SwitchProps | ||
extends ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> {} | ||
|
||
const Switch = forwardRef<ElementRef<typeof SwitchPrimitives.Root>, SwitchProps>( | ||
({ className, ...props }, ref) => ( | ||
<SwitchPrimitives.Root | ||
className={cn( | ||
"inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-secondary [&~label]:disabled:cursor-not-allowed [&~label]:disabled:opacity-50", | ||
className | ||
)} | ||
{...props} | ||
ref={ref} | ||
> | ||
<SwitchPrimitives.Thumb | ||
className={cn( | ||
"pointer-events-none block h-4 w-4 rounded-full bg-white shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0" | ||
)} | ||
/> | ||
</SwitchPrimitives.Root> | ||
) | ||
) | ||
Switch.displayName = SwitchPrimitives.Root.displayName | ||
|
||
export { Switch } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters