-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: font weight added * fix: change color hex * fix: change color again * fix: text-ut-burntorange * fix: importance (tailwind wise) * feat: switch button initial test * feat: look at how this switch goes back and forth very mindful very demure * fix: story * feat: using type now * chore: fix lint * feat: button custom function prop * fix: styling * chore: fix lint error and add JSDoc --------- Co-authored-by: doprz <[email protected]>
- Loading branch information
Showing
2 changed files
with
67 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,20 @@ | ||
import type { Meta, StoryObj } from '@storybook/react'; | ||
import SwitchButton from '@views/components/common/SwitchButton'; | ||
|
||
const meta = { | ||
title: 'Components/Common/SwitchButton', | ||
component: SwitchButton, | ||
tags: ['autodocs'], | ||
parameters: { | ||
layout: 'centered', | ||
}, | ||
} satisfies Meta<typeof SwitchButton>; | ||
|
||
export default meta; | ||
type Story = StoryObj<typeof meta>; | ||
|
||
export const Default: Story = { | ||
args: { | ||
isChecked: 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,47 @@ | ||
import { Switch } from '@headlessui/react'; | ||
import React, { useEffect, useState } from 'react'; | ||
|
||
type ToggleSwitchProps = { | ||
isChecked?: boolean; | ||
onChange?: (checked: boolean) => void; | ||
}; | ||
|
||
/** | ||
* A custom switch button component. | ||
* | ||
* @component | ||
* @param {Object} props - The component props. | ||
* @param {boolean} [props.isChecked=true] - The initial checked state of the switch button. | ||
* @param {Function} props.onChange - The callback function to be called when the switch button is toggled. | ||
* @returns {JSX.Element} The rendered SwitchButton component. | ||
*/ | ||
const SwitchButton = ({ isChecked = true, onChange }: ToggleSwitchProps): JSX.Element => { | ||
const [enabled, setEnabled] = useState(isChecked); | ||
|
||
useEffect(() => { | ||
setEnabled(isChecked); | ||
}, [isChecked]); | ||
|
||
const handleChange = (checked: boolean) => { | ||
setEnabled(checked); | ||
if (onChange) { | ||
onChange(checked); | ||
} | ||
}; | ||
|
||
return ( | ||
<Switch | ||
checked={enabled} | ||
onChange={handleChange} | ||
className={`${enabled ? 'bg-[#579D42]' : 'bg-gray-400'} | ||
relative inline-flex items-center h-8 w-13 rounded-full transition-colors ease-in-out duration-200`} | ||
> | ||
<span | ||
className={`${enabled ? 'translate-x-6' : 'translate-x-1'} | ||
inline-block w-6 h-6 transform bg-white rounded-full transition-transform ease-in-out duration-200`} | ||
/> | ||
</Switch> | ||
); | ||
}; | ||
|
||
export default SwitchButton; |