aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/switch
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-12-15 18:35:16 +0100
committerArmand Philippot <git@armandphilippot.com>2023-12-15 18:49:49 +0100
commit0f936ec0e7606cb79434d94096b6e113a7ce78eb (patch)
tree465ec7f66ac9459be6a18ac046e10357814c7b92 /src/components/molecules/forms/switch
parent4e4d2eb25365be861e19f9756cf334ba2faa6911 (diff)
refactor(stories): migrate stories to CSF3 format
Diffstat (limited to 'src/components/molecules/forms/switch')
-rw-r--r--src/components/molecules/forms/switch/switch.stories.tsx99
1 files changed, 63 insertions, 36 deletions
diff --git a/src/components/molecules/forms/switch/switch.stories.tsx b/src/components/molecules/forms/switch/switch.stories.tsx
index a88e6ab..9a59b83 100644
--- a/src/components/molecules/forms/switch/switch.stories.tsx
+++ b/src/components/molecules/forms/switch/switch.stories.tsx
@@ -1,25 +1,14 @@
-import type { ComponentMeta, ComponentStory } from '@storybook/react';
+import type { Meta, StoryObj } from '@storybook/react';
import { type ChangeEventHandler, useCallback, useState } from 'react';
-import { Legend } from '../../../atoms';
-import { Switch as SwitchComponent, type SwitchOption } from './switch';
-
-/**
- * Switch - Storybook Meta
- */
-export default {
- title: 'Molecules/Forms',
- component: SwitchComponent,
- args: {},
- argTypes: {},
-} as ComponentMeta<typeof SwitchComponent>;
-
-const Template: ComponentStory<typeof SwitchComponent> = ({
- value,
- ...args
-}) => {
- const [selection, setSelection] = useState(value);
-
- const handleChange: ChangeEventHandler<HTMLInputElement> = useCallback(
+import { Icon } from '../../../atoms';
+import { Switch, type SwitchProps } from './switch';
+
+type ControlledSwitchProps = Omit<SwitchProps, 'onSwitch' | 'selectedItem'>;
+
+const ControlledSwitch = ({ items, ...props }: ControlledSwitchProps) => {
+ const [selection, setSelection] = useState(items[0].value);
+
+ const handleSwitch: ChangeEventHandler<HTMLInputElement> = useCallback(
(e) => {
setSelection(e.target.value);
},
@@ -27,22 +16,60 @@ const Template: ComponentStory<typeof SwitchComponent> = ({
);
return (
- <SwitchComponent {...args} onSwitch={handleChange} value={selection} />
+ <Switch
+ {...props}
+ items={items}
+ onSwitch={handleSwitch}
+ value={selection}
+ />
);
};
-const items: [SwitchOption, SwitchOption] = [
- { id: 'option-1', label: 'Choice 1', value: 'option-1' },
- { id: 'option-2', label: 'Choice 2', value: 'option-2' },
-];
-
-/**
- * Radio Group Story
- */
-export const Switch = Template.bind({});
-Switch.args = {
- items,
- legend: <Legend>Choose the best option:</Legend>,
- name: 'example',
- value: items[0].value,
+const meta = {
+ title: 'Molecules/Forms/Switch',
+ component: Switch,
+ render: ControlledSwitch,
+} satisfies Meta<typeof Switch>;
+
+export default meta;
+
+type Story = StoryObj<typeof ControlledSwitch>;
+
+export const Example: Story = {
+ args: {
+ items: [
+ { id: 'item-1', label: 'Item 1', value: 'item-1' },
+ { id: 'item-2', label: 'Item 2', value: 'item-2' },
+ ],
+ name: 'example',
+ },
+};
+
+export const Disabled: Story = {
+ args: {
+ isDisabled: true,
+ items: [
+ { id: 'disabled-item-1', label: 'Item 1', value: 'item-1' },
+ { id: 'disabled-item-2', label: 'Item 2', value: 'item-2' },
+ ],
+ name: 'disabled',
+ },
+};
+
+export const Icons: Story = {
+ args: {
+ items: [
+ {
+ id: 'light-theme',
+ label: <Icon aria-label="Light theme" shape="sun" size="xs" />,
+ value: 'light-theme',
+ },
+ {
+ id: 'dark-theme',
+ label: <Icon aria-label="Dark theme" shape="moon" size="xs" />,
+ value: 'dark-theme',
+ },
+ ],
+ name: 'theme',
+ },
};