-
Notifications
You must be signed in to change notification settings - Fork 988
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): implemented switch component
- Loading branch information
Showing
4 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
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,34 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
|
||
import { Switch } from './Switch'; | ||
|
||
const meta: Meta<typeof Switch> = { | ||
title: 'Components/Switch', | ||
component: Switch, | ||
tags: ['v2'], | ||
argTypes: {} | ||
}; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof Switch>; | ||
|
||
// More on writing stories with args: https://storybook.js.org/docs/7.0/react/writing-stories/args | ||
export const Simple: Story = { | ||
args: { | ||
children: 'Dark mode' | ||
} | ||
}; | ||
|
||
export const Disabled: Story = { | ||
args: { | ||
children: 'Dark mode', | ||
isDisabled: true | ||
} | ||
}; | ||
|
||
export const Required: Story = { | ||
args: { | ||
children: 'Dark mode', | ||
isRequired: true | ||
} | ||
}; |
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,42 @@ | ||
import { ReactNode } from 'react'; | ||
import * as SwitchPrimitive from '@radix-ui/react-switch'; | ||
import { twMerge } from 'tailwind-merge'; | ||
|
||
export type SwitchProps = Omit<SwitchPrimitive.SwitchProps, 'checked' | 'disabled' | 'required'> & { | ||
children: ReactNode; | ||
id: string; | ||
isChecked?: boolean; | ||
isRequired?: boolean; | ||
isDisabled?: boolean; | ||
}; | ||
|
||
export const Switch = ({ | ||
children, | ||
id, | ||
className, | ||
isChecked, | ||
isDisabled, | ||
isRequired, | ||
...props | ||
}: SwitchProps): JSX.Element => ( | ||
<div className="flex items-center text-bunker-300"> | ||
<label className="text-sm" htmlFor={id}> | ||
{children} | ||
{isRequired && <span className="pl-1 text-red">*</span>} | ||
</label> | ||
<SwitchPrimitive.Root | ||
{...props} | ||
required={isRequired} | ||
checked={isChecked} | ||
disabled={isDisabled} | ||
className={twMerge( | ||
'h-5 ml-3 transition-all rounded-full w-9 bg-bunker-300 data-[state=checked]:bg-bunker-200', | ||
isDisabled && 'bg-bunker-400 hover:bg-bunker-400', | ||
className | ||
)} | ||
id={id} | ||
> | ||
<SwitchPrimitive.Thumb className="w-4 h-4 border-none will-change-transform rounded-full shadow bg-black block transition-all translate-x-0.5 data-[state=checked]:translate-x-[18px]" /> | ||
</SwitchPrimitive.Root> | ||
</div> | ||
); |
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,2 @@ | ||
export type { SwitchProps } from './Switch'; | ||
export { Switch } from './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