aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/switch/switch.stories.tsx
blob: a88e6ab116a44c63dc4f3130b50ed8b7c76b3f2f (plain)
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
import type { ComponentMeta, ComponentStory } 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(
    (e) => {
      setSelection(e.target.value);
    },
    []
  );

  return (
    <SwitchComponent {...args} onSwitch={handleChange} 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,
};