aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/radio-group/radio-group.stories.tsx
blob: 8e77c6e50f47cfba8e664676ff0f10ac6d23f25e (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import { ComponentMeta, ComponentStory } from '@storybook/react';
import { Legend } from '../../../atoms';
import { RadioGroup as RadioGroupComponent } from './radio-group';
import { getOptions, initialChoice } from './radio-group.fixture';
import { ChangeEventHandler, useCallback, useState } from 'react';

/**
 * RadioGroup - Storybook Meta
 */
export default {
  title: 'Molecules/Forms',
  component: RadioGroupComponent,
  args: {},
  argTypes: {
    onChange: {
      control: {
        type: null,
      },
      description: 'A callback function to handle selected option change.',
      table: {
        category: 'Events',
      },
      type: {
        name: 'function',
        required: false,
      },
    },
    options: {
      description: 'An array of radio option object.',
      type: {
        name: 'object',
        required: true,
        value: {},
      },
    },
    value: {
      control: {
        type: 'text',
      },
      description: 'The default selected option id.',
      type: {
        name: 'string',
        required: true,
      },
    },
  },
} as ComponentMeta<typeof RadioGroupComponent>;

const Template: ComponentStory<typeof RadioGroupComponent> = ({
  value,
  ...args
}) => {
  const [selection, setSelection] = useState(value);

  const handleChange: ChangeEventHandler<HTMLInputElement> = useCallback(
    (e) => {
      setSelection(e.target.value);
    },
    []
  );

  return (
    <RadioGroupComponent {...args} onSwitch={handleChange} value={selection} />
  );
};

/**
 * Radio Group Story
 */
export const RadioGroup = Template.bind({});
RadioGroup.args = {
  legend: <Legend>Options:</Legend>,
  options: getOptions('group1'),
  value: initialChoice,
};