aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/headings/heading.stories.tsx
blob: 0e3885ddaea9e3971532e413b7282e6e93f41fd1 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import { ComponentMeta, ComponentStory } from '@storybook/react';
import Heading from './heading';

/**
 * Heading - Storybook Meta
 */
export default {
  title: 'Atoms/Typography/Headings',
  component: Heading,
  args: {
    alignment: 'left',
    isFake: false,
    withMargin: true,
  },
  argTypes: {
    alignment: {
      control: {
        type: 'select',
      },
      description: 'The title alignment.',
      options: ['center', 'left'],
      table: {
        category: 'Options',
        defaultValue: { summary: 'left' },
      },
      type: {
        name: 'string',
        required: false,
      },
    },
    className: {
      control: {
        type: 'text',
      },
      description: 'Set additional classnames.',
      table: {
        category: 'Styles',
      },
      type: {
        name: 'string',
        required: false,
      },
    },
    children: {
      description: 'Heading body.',
      type: {
        name: 'string',
        required: true,
      },
    },
    id: {
      control: {
        type: 'text',
      },
      description: 'An unique id.',
      type: {
        name: 'string',
        required: false,
      },
    },
    isFake: {
      control: {
        type: 'boolean',
      },
      description: 'Use an heading element or only its styles.',
      table: {
        category: 'Options',
        defaultValue: { summary: false },
      },
      type: {
        name: 'boolean',
        required: false,
      },
    },
    level: {
      control: {
        type: 'number',
        min: 1,
        max: 6,
      },
      description: 'Heading level.',
      type: {
        name: 'number',
        required: true,
      },
    },
    withMargin: {
      control: {
        type: 'boolean',
      },
      description: 'Adds margin.',
      table: {
        category: 'Options',
        defaultValue: { summary: true },
      },
      type: {
        name: 'boolean',
        required: false,
      },
    },
  },
} as ComponentMeta<typeof Heading>;

const Template: ComponentStory<typeof Heading> = (args) => (
  <Heading {...args} />
);

/**
 * Heading Story - h1
 */
export const H1 = Template.bind({});
H1.args = {
  children: 'Your title',
  level: 1,
};

/**
 * Heading Story - h2
 */
export const H2 = Template.bind({});
H2.args = {
  children: 'Your title',
  level: 2,
};

/**
 * Heading Story - h3
 */
export const H3 = Template.bind({});
H3.args = {
  children: 'Your title',
  level: 3,
};

/**
 * Heading Story - h4
 */
export const H4 = Template.bind({});
H4.args = {
  children: 'Your title',
  level: 4,
};

/**
 * Heading Story - h5
 */
export const H5 = Template.bind({});
H5.args = {
  children: 'Your title',
  level: 5,
};

/**
 * Heading Story - h6
 */
export const H6 = Template.bind({});
H6.args = {
  children: 'Your title',
  level: 6,
};