diff options
Diffstat (limited to 'src/components/templates/page/page-layout.stories.tsx')
| -rw-r--r-- | src/components/templates/page/page-layout.stories.tsx | 387 |
1 files changed, 387 insertions, 0 deletions
diff --git a/src/components/templates/page/page-layout.stories.tsx b/src/components/templates/page/page-layout.stories.tsx new file mode 100644 index 0000000..06c6c24 --- /dev/null +++ b/src/components/templates/page/page-layout.stories.tsx @@ -0,0 +1,387 @@ +import ButtonLink from '@components/atoms/buttons/button-link'; +import Heading from '@components/atoms/headings/heading'; +import Link from '@components/atoms/links/link'; +import { comments } from '@components/organisms/layout/comments-list.fixture'; +import PostsList from '@components/organisms/layout/posts-list'; +import { posts } from '@components/organisms/layout/posts-list.fixture'; +import LinksListWidget from '@components/organisms/widgets/links-list-widget'; +import Sharing from '@components/organisms/widgets/sharing'; +import { ComponentMeta, ComponentStory } from '@storybook/react'; +import { LayoutBase } from '../layout/layout.stories'; +import PageLayoutComponent from './page-layout'; + +/** + * PageLayout - Storybook Meta + */ +export default { + title: 'Templates/Page', + component: PageLayoutComponent, + args: { + allowComments: false, + breadcrumbSchema: [], + }, + argTypes: { + allowComments: { + control: { + type: 'boolean', + }, + description: 'Determine if the comment form is displayed.', + table: { + category: 'Options', + defaultValue: { summary: false }, + }, + type: { + name: 'boolean', + required: false, + }, + }, + bodyAttributes: { + description: 'Set additional HTML attributes to the main content body.', + table: { + category: 'Options', + }, + type: { + name: 'object', + required: false, + value: {}, + }, + }, + bodyClassName: { + control: { + type: 'text', + }, + description: 'Set additional classnames to the main content body.', + table: { + category: 'Styles', + }, + type: { + name: 'string', + required: false, + }, + }, + breadcrumb: { + description: 'The breadcrumb items.', + type: { + name: 'object', + required: true, + value: {}, + }, + }, + breadcrumbSchema: { + control: { + type: null, + }, + description: 'The JSON schema for breadcrumb items.', + type: { + name: 'object', + required: true, + value: {}, + }, + }, + children: { + control: { + type: 'text', + }, + description: 'The page content.', + type: { + name: 'string', + required: true, + }, + }, + comments: { + description: 'The page comments.', + table: { + category: 'Options', + }, + type: { + name: 'object', + required: false, + value: {}, + }, + }, + footerMeta: { + description: 'The metadata to display in the page footer.', + table: { + category: 'Options', + }, + type: { + name: 'object', + required: false, + value: {}, + }, + }, + headerMeta: { + description: 'The metadata to display in the page header.', + table: { + category: 'Options', + }, + type: { + name: 'object', + required: false, + value: {}, + }, + }, + id: { + control: { + type: 'number', + }, + description: 'The page id.', + type: { + name: 'number', + required: false, + }, + }, + intro: { + control: { + type: 'text', + }, + description: 'The page introduction.', + table: { + category: 'Options', + }, + type: { + name: 'string', + required: false, + }, + }, + title: { + control: { + type: 'text', + }, + description: 'The page title.', + type: { + name: 'string', + required: true, + }, + }, + widgets: { + control: { + type: null, + }, + description: 'An array of widgets to put inside the last sidebar.', + type: { + name: 'object', + required: false, + value: {}, + }, + }, + withToC: { + control: { + type: 'boolean', + }, + description: 'Determine if the Table of Contents should be in the page.', + table: { + category: 'Options', + defaultValue: { summary: false }, + }, + type: { + name: 'boolean', + required: false, + }, + }, + }, + decorators: [ + (Story, context) => ( + <LayoutBase + useGrid={true} + withExtraPadding={!context.args.allowComments && !context.args.comments} + {...LayoutBase.args} + > + <Story /> + </LayoutBase> + ), + ], + parameters: { + layout: 'fullscreen', + }, +} as ComponentMeta<typeof PageLayoutComponent>; + +const Template: ComponentStory<typeof PageLayoutComponent> = (args) => ( + <PageLayoutComponent {...args} /> +); + +const pageTitle = 'Incidunt ad earum'; +const pageIntro = + 'Recusandae mollitia enim quo omnis rerum enim corporis ratione quidem. Pariatur omnis quas est ut ut numquam totam. Sunt sapiente nostrum aut sunt provident perspiciatis magni illum. Quidem nihil velit quasi fugit minima sint.'; +const pageBreadcrumb = [ + { id: 'home', url: '#', name: 'Home' }, + { id: 'page', url: '#', name: pageTitle }, +]; + +/** + * Page Layout Stories - Single Page + */ +export const SinglePage = Template.bind({}); +SinglePage.args = { + breadcrumb: pageBreadcrumb, + title: pageTitle, + intro: pageIntro, + children: ( + <> + <Heading level={2}>Impedit commodi rerum</Heading> + <p> + Omnis vel earum cupiditate delectus reprehenderit perferendis distinctio + omnis. Laudantium rem tempore eligendi porro officia est dolorum + assumenda. Corrupti tempore quia ab. Quidem est inventore. Autem + nesciunt sed rerum praesentium. + </p> + <p> + Illo nostrum inventore tenetur quo repellendus autem nisi nostrum + dolore. Et velit assumenda. Veniam harum officia et. Blanditiis et et + qui cum. Rerum illum quo doloribus neque non velit. Unde iusto et eaque + a ut. + </p> + <Heading level={2}>Et omnis ducimus</Heading> + <p> + Dolor quidem quas perferendis in nam molestiae. Accusamus quidem + accusantium quaerat est praesentium accusamus ab dolorem. Beatae illum + totam et corrupti assumenda corporis aut illo animi. + </p> + <p> + Ad rem soluta. Est tenetur consequatur sequi voluptates autem. Molestiae + in neque dignissimos. Dolorum numquam quos quam voluptas atque facilis + et. Accusantium fuga architecto excepturi consequatur libero est. + </p> + </> + ), + widgets: [ + <Sharing + key="sidebar2-widget1" + data={{ excerpt: pageIntro, title: pageTitle, url: '#' }} + media={[ + 'diaspora', + 'email', + 'facebook', + 'journal-du-hacker', + 'linkedin', + 'twitter', + ]} + level={2} + expanded={true} + />, + ], + withToC: true, +}; + +const postBreadcrumb = [ + { id: 'home', url: '#', name: 'Home' }, + { id: 'blog', url: '#', name: 'Blog' }, + { id: 'post', url: '#', name: pageTitle }, +]; + +/** + * Page Layout Stories - Post + */ +export const Post = Template.bind({}); +Post.args = { + breadcrumb: postBreadcrumb, + title: pageTitle, + intro: pageIntro, + headerMeta: { + publication: { date: '2020-03-14' }, + thematics: [ + <Link key="cat1" href="#"> + Cat 1 + </Link>, + <Link key="cat2" href="#"> + Cat 2 + </Link>, + ], + }, + footerMeta: { + custom: { + label: 'Read more about:', + value: <ButtonLink target="#">Topic 1</ButtonLink>, + }, + }, + children: ( + <> + <Heading level={2}>Impedit commodi rerum</Heading> + <p> + Omnis vel earum cupiditate delectus reprehenderit perferendis distinctio + omnis. Laudantium rem tempore eligendi porro officia est dolorum + assumenda. Corrupti tempore quia ab. Quidem est inventore. Autem + nesciunt sed rerum praesentium. + </p> + <p> + Illo nostrum inventore tenetur quo repellendus autem nisi nostrum + dolore. Et velit assumenda. Veniam harum officia et. Blanditiis et et + qui cum. Rerum illum quo doloribus neque non velit. Unde iusto et eaque + a ut. + </p> + <Heading level={2}>Et omnis ducimus</Heading> + <p> + Dolor quidem quas perferendis in nam molestiae. Accusamus quidem + accusantium quaerat est praesentium accusamus ab dolorem. Beatae illum + totam et corrupti assumenda corporis aut illo animi. + </p> + <p> + Ad rem soluta. Est tenetur consequatur sequi voluptates autem. Molestiae + in neque dignissimos. Dolorum numquam quos quam voluptas atque facilis + et. Accusantium fuga architecto excepturi consequatur libero est. + </p> + </> + ), + widgets: [ + <Sharing + key="sidebar2-widget1" + data={{ excerpt: pageIntro, title: pageTitle, url: '#' }} + media={[ + 'diaspora', + 'email', + 'facebook', + 'journal-du-hacker', + 'linkedin', + 'twitter', + ]} + level={2} + expanded={true} + />, + ], + withToC: true, + comments: comments, + allowComments: true, +}; + +const postsListBreadcrumb = [ + { id: 'home', url: '#', name: 'Home' }, + { id: 'blog', url: '#', name: 'Blog' }, +]; + +const blogCategories = [ + { name: 'Cat 1', url: '#' }, + { + name: 'Cat 2', + url: '#', + }, + { name: 'Cat 3', url: '#' }, + { name: 'Cat 4', url: '#' }, +]; + +/** + * Page Layout Stories - Posts list + */ +export const Blog = Template.bind({}); +Blog.args = { + breadcrumb: postsListBreadcrumb, + title: 'Blog', + headerMeta: { total: posts.length }, + children: ( + <> + <PostsList + posts={posts} + byYear={true} + total={posts.length} + searchPage="#" + /> + </> + ), + widgets: [ + <LinksListWidget + key="sidebar-widget1" + items={blogCategories} + title="Categories" + level={2} + />, + ], +}; |
