aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/site-footer.stories.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-10-25 18:33:22 +0200
committerArmand Philippot <git@armandphilippot.com>2023-11-11 18:15:27 +0100
commit9aeb82269d7c74c4566b7ca254782a4dfbd69a6e (patch)
treee2ab930204cbcf20cebaa6125ea022f050d973af /src/components/organisms/layout/site-footer.stories.tsx
parentc21a137e1991af1331fe5768fc6bac15ea9230b1 (diff)
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.
Diffstat (limited to 'src/components/organisms/layout/site-footer.stories.tsx')
-rw-r--r--src/components/organisms/layout/site-footer.stories.tsx92
1 files changed, 0 insertions, 92 deletions
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<typeof SiteFooterComponent>;
-
-const Template: ComponentStory<typeof SiteFooterComponent> = (args) => (
- <SiteFooterComponent {...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: <Icon shape="cc-by-sa" />,
- navItems,
- topId: 'top',
-};