aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/templates/page/page-header.stories.tsx
blob: 3af9b47bff7fe5db6588da292f2811c2633579ea (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
import type { ComponentMeta, ComponentStory } from '@storybook/react';
import { Page } from './page';
import { PageHeader } from './page-header';

/**
 * PageHeader - Storybook Meta
 */
export default {
  title: 'Templates/Page/Header',
  component: PageHeader,
  argTypes: {
    meta: {
      control: {
        type: null,
      },
      description: 'Define the page meta.',
      type: {
        name: 'object',
        required: true,
        value: {},
      },
    },
  },
} as ComponentMeta<typeof PageHeader>;

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

/**
 * PageHeader Stories - TitleOnly
 */
export const TitleOnly = Template.bind({});
TitleOnly.args = {
  heading: 'The page title',
};

/**
 * PageHeader Stories - TitleAndIntro
 */
export const TitleAndIntro = Template.bind({});
TitleAndIntro.args = {
  heading: 'The page title',
  intro:
    'Eos similique impedit dolor illo. Rerum voluptates corporis quod et molestiae eum. Ut tenetur repellat hic eum. Doloremque et illum sequi aspernatur.',
};

/**
 * PageHeader Stories - TitleAndMeta
 */
export const TitleAndMeta = Template.bind({});
TitleAndMeta.args = {
  heading: 'The page title',
  meta: {
    author: 'Robin_Schroeder77',
    publicationDate: '2023-11-15',
    updateDate: '2023-11-16',
  },
};

/**
 * PageHeader Stories - All
 */
export const All = Template.bind({});
All.args = {
  heading: 'The page title',
  intro:
    'Eos similique impedit dolor illo. Rerum voluptates corporis quod et molestiae eum. Ut tenetur repellat hic eum. Doloremque et illum sequi aspernatur.',
  meta: {
    author: 'Robin_Schroeder77',
    publicationDate: '2023-11-15',
    updateDate: '2023-11-16',
  },
};