From 9aeb82269d7c74c4566b7ca254782a4dfbd69a6e Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 25 Oct 2023 18:33:22 +0200 Subject: refactor(components): remove SiteHeader and SiteFooter components They do not help to make the layout more readable (on the contrary I think...) so the props drilling is useless. --- .../organisms/layout/site-footer.stories.tsx | 92 ---------------------- 1 file changed, 92 deletions(-) delete mode 100644 src/components/organisms/layout/site-footer.stories.tsx (limited to 'src/components/organisms/layout/site-footer.stories.tsx') diff --git a/src/components/organisms/layout/site-footer.stories.tsx b/src/components/organisms/layout/site-footer.stories.tsx deleted file mode 100644 index 3f244b0..0000000 --- a/src/components/organisms/layout/site-footer.stories.tsx +++ /dev/null @@ -1,92 +0,0 @@ -import type { ComponentMeta, ComponentStory } from '@storybook/react'; -import { Icon } from '../../atoms'; -import { SiteFooter as SiteFooterComponent } from './site-footer'; - -/** - * SiteFooter - Storybook Meta - */ -export default { - title: 'Organisms/Layout', - component: SiteFooterComponent, - argTypes: { - backToTopClassName: { - control: { - type: 'text', - }, - description: 'Set additional classnames to the back to top button.', - table: { - category: 'Styles', - }, - type: { - name: 'string', - required: false, - }, - }, - className: { - control: { - type: 'text', - }, - description: 'Set additional classnames to the footer element.', - table: { - category: 'Styles', - }, - type: { - name: 'string', - required: false, - }, - }, - copyright: { - description: 'The copyright information.', - type: { - name: 'object', - required: true, - value: {}, - }, - }, - navItems: { - description: 'The footer nav items.', - table: { - category: 'Options', - }, - type: { - name: 'object', - required: false, - value: {}, - }, - }, - topId: { - control: { - type: 'text', - }, - description: - 'An element id (without hashtag) used as target by back to top button.', - type: { - name: 'string', - required: true, - }, - }, - }, -} as ComponentMeta; - -const Template: ComponentStory = (args) => ( - -); - -const copyright = { - from: '2017', - owner: 'Lorem ipsum', - to: '2022', -}; - -const navItems = [{ id: 'legal-notice', href: '#', label: 'Legal notice' }]; - -/** - * Layout Stories - SiteFooter - */ -export const SiteFooter = Template.bind({}); -SiteFooter.args = { - copyright, - license: , - navItems, - topId: 'top', -}; -- cgit v1.2.3