From 0f936ec0e7606cb79434d94096b6e113a7ce78eb Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 15 Dec 2023 18:35:16 +0100 Subject: refactor(stories): migrate stories to CSF3 format --- src/components/templates/layout/layout.stories.ts | 17 +++ src/components/templates/layout/layout.stories.tsx | 117 --------------------- 2 files changed, 17 insertions(+), 117 deletions(-) create mode 100644 src/components/templates/layout/layout.stories.ts delete mode 100644 src/components/templates/layout/layout.stories.tsx (limited to 'src/components/templates/layout') diff --git a/src/components/templates/layout/layout.stories.ts b/src/components/templates/layout/layout.stories.ts new file mode 100644 index 0000000..262da0b --- /dev/null +++ b/src/components/templates/layout/layout.stories.ts @@ -0,0 +1,17 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { Layout } from './layout'; + +const meta = { + component: Layout, + title: 'Templates/Layout', +} satisfies Meta; + +export default meta; + +type Story = StoryObj; + +export const Default: Story = { + args: { + children: 'The contents.', + }, +}; diff --git a/src/components/templates/layout/layout.stories.tsx b/src/components/templates/layout/layout.stories.tsx deleted file mode 100644 index 6d55f34..0000000 --- a/src/components/templates/layout/layout.stories.tsx +++ /dev/null @@ -1,117 +0,0 @@ -import type { ComponentMeta, ComponentStory } from '@storybook/react'; -import { Layout as LayoutComponent } from './layout'; - -/** - * Layout - Storybook Meta - */ -export default { - title: 'Templates/LayoutBase', - component: LayoutComponent, - args: { - breadcrumbSchema: [], - isHome: false, - }, - argTypes: { - children: { - control: { - type: 'text', - }, - description: 'The article content.', - type: { - name: 'string', - required: true, - }, - }, - breadcrumbSchema: { - control: { - type: 'null', - }, - description: 'The JSON schema for breadcrumb items.', - type: { - name: 'object', - required: true, - value: {}, - }, - }, - isHome: { - control: { - type: 'boolean', - }, - description: 'Determine if it is the homepage.', - table: { - category: 'Options', - defaultValue: { summary: false }, - }, - type: { - name: 'boolean', - required: false, - }, - }, - className: { - control: { - type: 'text', - }, - description: 'Set additional classnames to the article element.', - table: { - category: 'Styles', - }, - type: { - name: 'string', - required: false, - }, - }, - useGrid: { - control: { - type: 'boolean', - }, - description: 'Use the grid layout.', - table: { - category: 'Options', - }, - type: { - name: 'boolean', - required: false, - }, - }, - withExtraPadding: { - control: { - type: 'boolean', - }, - description: 'Set additional padding at the bottom of the page.', - table: { - category: 'Options', - }, - type: { - name: 'boolean', - required: false, - }, - }, - }, - decorators: [ - (Story) => ( -
- -
- ), - ], - parameters: { - layout: 'fullscreen', - }, -} as ComponentMeta; - -const Template: ComponentStory = (args) => ( - -); - -/** - * Layout Stories - Default - */ -export const LayoutBase = Template.bind({}); -- cgit v1.2.3